/*
Theme Name: Apex Landing Page
Theme URI: 
Author: Antigravity
Author URI: 
Description: Apex Premium SaaS Landing Page Theme
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.0
Text Domain: apex
*/

/* ════════════════════════════════════════════════════════════════════════════
   APEX PREMIUM SAAS LANDING PAGE CSS
   ════════════════════════════════════════════════════════════════════════════ */

:root {
    --bg-base: #030509; /* Very deep dark blue/black */
    --bg-surface: #0a0d14;
    --bg-panel: rgba(255, 255, 255, 0.02);
    
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.12);
    
    --accent-primary: #F59E0B; /* Amber/Gold */
    --accent-primary-hover: #D97706;
    --accent-secondary: #6366F1; /* Indigo */
    
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    --success: #10B981;
    --danger: #EF4444;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 40px;
}

h1, h2, h3, h4, .display-title, .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography Utilities ── */
.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 50%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.animated-gradient {
    background: linear-gradient(to right, #FFFFFF, var(--accent-primary), #FFFFFF);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* ── Glassmorphism ── */
.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ── Announcement Bar ── */
.announcement-bar {
    position: fixed;
    top: 0; left: 0; width: 100%; z-index: 1001;
    background: linear-gradient(90deg, #451a03, #78350f, #451a03);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    padding: 10px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}
@keyframes gradientMove { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

.announcement-content {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif;
}
.pulse-indicator {
    width: 8px; height: 8px; background: #10B981; border-radius: 50%;
    box-shadow: 0 0 12px #10B981; animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.countdown { font-family: 'Space Mono', monospace; background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; color: var(--accent-primary); }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 40px; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0; transition: var(--transition-smooth);
}
.glass-nav {
    background: rgba(3, 5, 9, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.03em; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition-smooth); }
.nav-links a:hover { color: var(--text-primary); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 100px; font-weight: 600; font-size: 14px;
    text-decoration: none; cursor: pointer; transition: var(--transition-smooth);
    border: none; outline: none; position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--text-primary); color: var(--bg-base);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}
.btn-secondary {
    background: rgba(255,255,255,0.05); color: var(--text-primary); border: 1px solid var(--border-subtle);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.btn-glow {
    background: linear-gradient(135deg, var(--accent-primary), #D97706);
    color: #fff; border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-sheen {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg); animation: sheen 4s infinite;
}
@keyframes sheen { 0% { left: -100%; } 20%, 100% { left: 200%; } }
.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Hero Section ── */
.hero { position: relative; padding: 180px 0 120px; overflow: hidden; min-height: 100vh; display:flex; align-items:center; }
.hero-bg-effects { position: absolute; top:0; left:0; width:100%; height:100%; z-index:-1; overflow:hidden; }
.grid-bg {
    position: absolute; width: 200%; height: 200%; top:-50%; left:-50%;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
}
@keyframes gridMove { 0%{transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);} 100%{transform: perspective(500px) rotateX(60deg) translateY(40px) translateZ(-200px);} }

.glow-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
.orb-primary { top: 10%; right: 10%; width: 500px; height: 500px; background: var(--accent-primary); }
.orb-secondary { bottom: -10%; left: 10%; width: 600px; height: 600px; background: var(--accent-secondary); opacity: 0.2; }

.hero-container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; max-width: 600px; }
.hero-visual { flex: 1; position: relative; perspective: 1000px; }

@media(max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 800px; display: flex; flex-direction: column; align-items: center; }
    .hero-visual { width: 100%; margin-top: 60px; }
}

.badge-wrapper { margin-bottom: 24px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--accent-primary); }
.display-title { font-size: clamp(48px, 5vw, 64px); margin-bottom: 24px; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; max-width: 540px; }
.hero-subtitle strong { color: var(--text-primary); }

.hero-cta-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
@media(max-width: 1024px) { .hero-cta-group { align-items: center; } }
.guarantee-text { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }

.social-proof { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.avatar-group { display: flex; align-items: center; }
.avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg-base); margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.avatar-more { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-surface); border: 1px solid var(--border-subtle); font-size: 10px; font-weight: bold; display: flex; align-items: center; justify-content: center; margin-left: -10px; z-index: 10; }
.proof-text { font-size: 13px; color: var(--text-secondary); }
.proof-text strong { color: var(--text-primary); }

/* ── Hero UI Mockup ── */
.mockup-container { position: relative; width: 100%; max-width: 440px; margin: 0 auto; transform-style: preserve-3d; }
.mockup-card { padding: 0; overflow: hidden; transform: rotateY(-10deg) rotateX(5deg); box-shadow: -20px 20px 60px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.2); }
.mockup-header { background: rgba(0,0,0,0.3); padding: 12px 16px; display: flex; align-items: center; border-bottom: 1px solid var(--border-subtle); }
.mockup-dots { display: flex; gap: 6px; margin-right: 16px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: #4B5563; }
.mockup-dots span:nth-child(1) { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #10B981; }
.mockup-title { font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.mockup-body { padding: 24px; }

.score-ring-container { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.score-ring { width: 80px; height: 80px; }
.ring-bg { fill: none; stroke: var(--bg-surface); stroke-width: 3; }
.ring-fill { fill: none; stroke: var(--success); stroke-width: 3; stroke-linecap: round; animation: drawRing 2s ease-out forwards; stroke-dasharray: 0, 100; }
@keyframes drawRing { to { stroke-dasharray: 96, 100; } }
.score-text { display: flex; flex-direction: column; }
.score-num { font-size: 36px; font-weight: 800; font-family: 'Plus Jakarta Sans'; line-height: 1; color: var(--success); }
.score-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 4px; }

.action-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.action-item { display: flex; align-items: center; gap: 12px; background: rgba(0,0,0,0.2); padding: 12px; border-radius: var(--radius-sm); border: 1px solid var(--border-subtle); }
.action-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; }
.action-icon.success { background: rgba(16, 185, 129, 0.2); color: var(--success); }
.action-title { font-size: 13px; font-weight: 600; }
.action-desc { font-size: 11px; color: var(--text-muted); }

.mockup-btn { width: 100%; padding: 12px; background: var(--text-primary); color: var(--bg-base); border: none; border-radius: var(--radius-sm); font-weight: 600; font-size: 13px; cursor: pointer; }

.decor-card { position: absolute; background: var(--bg-panel); border: 1px solid var(--border-subtle); backdrop-filter: blur(12px); border-radius: var(--radius-md); padding: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 10; }
.stats-card { top: 20%; right: -30px; transform: translateZ(50px); }
.stat-trend { font-size: 20px; font-weight: 800; color: var(--success); font-family: 'Plus Jakarta Sans'; }
.stat-label { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

.ai-card { bottom: 10%; left: -40px; transform: translateZ(30px); font-size: 12px; font-weight: 500; display: flex; align-items: center; gap: 8px; color: var(--text-secondary); }
.ai-icon { font-size: 16px; animation: pulseDot 2s infinite; }

/* ── Logo Ticker ── */
.logo-ticker { padding: 40px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: rgba(0,0,0,0.2); overflow: hidden; }
.ticker-label { text-align: center; font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; font-weight: 600; margin-bottom: 24px; }
.ticker-wrapper { display: flex; width: 200%; animation: tickerMove 20s linear infinite; }
.ticker-track { display: flex; justify-content: space-around; width: 100%; }
.ticker-track span { font-size: 24px; font-weight: 700; color: var(--text-muted); font-family: 'Plus Jakarta Sans'; opacity: 0.5; transition: var(--transition-smooth); }
.ticker-track span:hover { opacity: 1; color: var(--text-primary); }
@keyframes tickerMove { 0%{transform: translateX(0);} 100%{transform: translateX(-50%);} }

/* ── Demo Comparison Section ── */
.demo-section { padding: 120px 0; }
.section-header { margin-bottom: 60px; max-width: 600px; }
.section-header.center { margin: 0 auto 60px; text-align: center; }
.section-desc { font-size: 18px; color: var(--text-secondary); margin-top: 16px; }

.comparison-container { display: flex; align-items: center; gap: 24px; position: relative; }
@media(max-width: 768px) { .comparison-container { flex-direction: column; } }

.comp-panel { flex: 1; padding: 32px; display: flex; flex-direction: column; gap: 24px; position: relative; }
.comp-panel.before { opacity: 0.7; transform: scale(0.95); }
.comp-panel.after { border-color: rgba(245, 158, 11, 0.3); box-shadow: 0 10px 40px rgba(245, 158, 11, 0.1); }

.animated-border { position: absolute; top:0; left:0; width:100%; height:100%; border-radius: var(--radius-lg); z-index:-1; overflow:hidden; }
.animated-border::before { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background: conic-gradient(transparent, var(--accent-primary), transparent 30%); animation: spinBorder 4s linear infinite; }
.animated-border::after { content:''; position:absolute; inset:2px; background:var(--bg-base); border-radius: calc(var(--radius-lg) - 2px); }
@keyframes spinBorder { 100%{transform:rotate(360deg);} }

.panel-tag { display: inline-block; align-self: flex-start; padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.panel-tag.bad { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.panel-tag.good { background: rgba(245, 158, 11, 0.15); color: var(--accent-primary); box-shadow: 0 0 15px rgba(245,158,11,0.2); }

.chat-bubble { padding: 20px; border-radius: var(--radius-md); font-size: 14px; line-height: 1.7; position: relative; }
.bot-bad { background: rgba(255,255,255,0.03); color: var(--text-muted); font-style: italic; border-bottom-left-radius: 4px; }
.bot-good { background: rgba(245, 158, 11, 0.05); color: var(--text-primary); border: 1px solid rgba(245, 158, 11, 0.2); border-bottom-right-radius: 4px; }

.flaw-list, .win-list { list-style: none; font-size: 14px; display: flex; flex-direction: column; gap: 10px; }
.flaw-list li { color: var(--text-muted); display: flex; gap: 8px; }
.win-list li { color: var(--text-primary); display: flex; gap: 8px; font-weight: 500; }

.comp-divider { display: flex; align-items: center; justify-content: center; z-index: 10; }
.vs-badge { width: 48px; height: 48px; background: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Plus Jakarta Sans'; font-size: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
@media(max-width: 768px) { .comp-divider { margin: -10px 0; } }

/* ── Bento Box Features ── */
.features-section { padding: 120px 0; background: rgba(255,255,255,0.01); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; auto-rows: minmax(300px, auto); }
@media(max-width: 900px) { .bento-grid { grid-template-columns: 1fr; } }

.bento-card { padding: 32px; display: flex; flex-direction: column; overflow: hidden; position: relative; transition: var(--transition-smooth); }
.bento-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.bento-large { grid-column: span 2; flex-direction: row; align-items: center; gap: 40px; }
@media(max-width: 900px) { .bento-large { grid-column: span 1; flex-direction: column; align-items: flex-start; } }

.bento-content { flex: 1; z-index: 2; }
.bento-icon { font-size: 32px; margin-bottom: 24px; background: rgba(255,255,255,0.05); width: 64px; height: 64px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-subtle); }
.bento-title { font-size: 24px; margin-bottom: 12px; }
.bento-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

.bento-visual { flex: 1; min-width: 250px; position: relative; z-index: 1; }
.mini-dashboard { background: rgba(0,0,0,0.4); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 20px; height: 160px; display: flex; align-items: flex-end; }
.bar-chart { display: flex; gap: 12px; width: 100%; height: 100%; align-items: flex-end; }
.bar { flex: 1; background: rgba(255,255,255,0.1); border-radius: 4px 4px 0 0; transition: height 1s ease; }
.bar.active { background: var(--success); box-shadow: 0 0 15px rgba(16,185,129,0.4); }

.research-visual { display: flex; flex-direction: column; gap: 12px; }
.search-pill { background: rgba(0,0,0,0.4); border: 1px solid var(--border-subtle); padding: 12px 16px; border-radius: 100px; font-size: 12px; font-family: 'Space Mono'; color: var(--text-muted); }
.search-pill.success { border-color: rgba(16,185,129,0.3); color: var(--success); }

/* ── Pricing Section ── */
.pricing-section { padding: 140px 0; position: relative; }
.pricing-wrapper { display: flex; align-items: center; gap: 80px; }
@media(max-width: 992px) { .pricing-wrapper { flex-direction: column; } }

.pricing-info { flex: 1; }
.pricing-subtitle { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; margin-top: 16px; }

.value-stack { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 32px; }
.stack-item { display: flex; align-items: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px dashed rgba(255,255,255,0.05); }
.stack-item .check { color: var(--success); font-weight: bold; margin-right: 16px; }
.stack-item .item-name { flex: 1; font-weight: 500; }
.stack-item .item-value { color: var(--text-muted); font-family: 'Space Mono'; font-size: 14px; }
.stack-total { display: flex; justify-content: space-between; margin-top: 24px; font-size: 20px; font-weight: 700; font-family: 'Plus Jakarta Sans'; }
.strike { text-decoration: line-through; color: var(--danger); opacity: 0.7; }

.pricing-card-wrapper { flex: 0 0 420px; width: 100%; position: relative; }
.pricing-card { padding: 48px; border-color: rgba(245, 158, 11, 0.4); text-align: center; }
.premium-glow { box-shadow: 0 20px 80px rgba(245, 158, 11, 0.15), inset 0 0 0 1px rgba(245, 158, 11, 0.4); }

.card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #EF4444, #B91C1C); color: #fff; padding: 6px 16px; border-radius: 100px; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4); }
.card-header { margin-bottom: 32px; }
.card-header h3 { font-size: 24px; color: var(--text-secondary); margin-bottom: 16px; }
.price { display: flex; justify-content: center; align-items: flex-start; line-height: 1; margin-bottom: 16px; }
.currency { font-size: 24px; font-weight: 700; color: var(--accent-primary); margin-top: 10px; margin-right: 4px; }
.amount { font-size: 72px; font-weight: 800; font-family: 'Plus Jakarta Sans'; }
.billing { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.urgency-meter { margin-top: 24px; padding: 16px; background: rgba(239, 68, 68, 0.05); border: 1px dashed rgba(239, 68, 68, 0.2); border-radius: var(--radius-sm); text-align: left; }
.meter-header { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.meter-bar { width: 100%; height: 6px; background: rgba(0,0,0,0.5); border-radius: 3px; overflow: hidden; margin-bottom: 12px; }
.meter-fill { height: 100%; background: var(--danger); }
.meter-text { font-size: 11px; color: var(--text-muted); text-align: center; }

.guarantee-box { margin-top: 24px; display: flex; align-items: flex-start; gap: 12px; text-align: left; font-size: 12px; color: var(--text-muted); }
.g-icon { font-size: 20px; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border-subtle); padding: 60px 0 40px; background: #010204; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border-subtle); padding-top: 24px; font-size: 13px; color: var(--text-muted); }
@media(max-width: 768px) { .footer-top, .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } }

/* ── Animations for Scroll ── */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

.active.reveal-up { opacity: 1; transform: translateY(0); }
.active.reveal-scale { opacity: 1; transform: scale(1); }
.active.reveal-left { opacity: 1; transform: translateX(0); }
.active.reveal-right { opacity: 1; transform: translateX(0); }

.loader { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; margin-right: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }
