:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a12;
    --bg-card: rgba(12, 12, 24, 0.7);
    --bg-card-hover: rgba(18, 18, 38, 0.8);
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --accent-deep: #5b21b6;
    --accent-glow: rgba(124, 58, 237, 0.4);
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.3);
    --green: #10b981;
    --yellow: #f59e0b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --border: rgba(255, 255, 255, 0.04);
    --border-light: rgba(255, 255, 255, 0.07);
    --border-accent: rgba(124, 58, 237, 0.2);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(32px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    transition: all 0.5s var(--transition);
}
.navbar.scrolled {
    background: rgba(5, 5, 8, 0.85);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-primary); }
.logo-img {
    width: 44px; height: 44px; transition: all 0.4s var(--transition);
    filter: drop-shadow(0 2px 12px var(--accent-glow));
}
.logo:hover .logo-img { transform: rotate(-8deg) scale(1.08); filter: drop-shadow(0 4px 20px var(--accent-glow)); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-size: 20px; font-weight: 900; letter-spacing: 4px; }
.logo-sub { font-size: 9px; font-weight: 600; letter-spacing: 5px; color: var(--text-muted); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500;
    transition: all 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent-light), var(--cyan));
    transition: all 0.3s var(--transition); transform: translateX(-50%);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--cyan)) !important;
    color: white !important; padding: 10px 24px; border-radius: 10px;
    box-shadow: 0 4px 20px var(--accent-glow);
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 6px 30px var(--accent-glow); transform: translateY(-2px); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 20px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}
.hero-aurora {
    position: absolute; inset: 0; opacity: 0.3;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    animation: auroraShift 12s ease-in-out infinite alternate;
}
@keyframes auroraShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(3deg); }
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--cyan));
    opacity: 0; animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.25; }
    90% { opacity: 0.25; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-content { position: relative; text-align: center; max-width: 860px; z-index: 2; }

/* ===== ANIMATIONS ===== */
.fade-in-up { opacity: 0; transform: translateY(40px); animation: fadeInUp 0.9s var(--transition) forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.scroll-reveal {
    opacity: 0; transform: translateY(50px);
    transition: all 0.8s var(--transition);
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

.badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.18);
    color: var(--accent-light); padding: 10px 22px; border-radius: 100px;
    font-size: 13px; font-weight: 600; margin-bottom: 32px;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 7px; height: 7px; background: var(--green); border-radius: 50%;
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.hero h1 {
    font-size: clamp(44px, 7vw, 80px); font-weight: 900;
    line-height: 1.05; letter-spacing: -3px; margin-bottom: 28px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--cyan) 30%, #c084fc 60%, var(--accent-light) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}
.hero-desc { font-size: 18px; color: var(--text-secondary); max-width: 580px; margin: 0 auto 48px; line-height: 1.9; }
.hero-stats { display: flex; justify-content: center; align-items: center; gap: 48px; margin-bottom: 48px; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--text-primary); }
.stat-suffix { font-size: 18px; font-weight: 700; background: linear-gradient(135deg, var(--accent-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 2px; }
.stat-divider { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--border-light), transparent); }
.hero-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: bounce 2.5s infinite;
}
.mouse {
    width: 26px; height: 40px; border: 2px solid var(--text-muted); border-radius: 14px;
    display: flex; justify-content: center; padding-top: 8px;
}
.wheel { width: 3px; height: 8px; background: var(--accent-light); border-radius: 2px; animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
.scroll-indicator span { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px; border-radius: 14px; font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer; border: none;
    transition: all 0.35s var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--cyan)); color: white;
    box-shadow: 0 6px 30px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-4px); box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-glow { position: relative; }
.btn-glow::before {
    content: ''; position: absolute; inset: -2px; border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--cyan), #c084fc, var(--accent));
    background-size: 300% 300%; z-index: -1; opacity: 0; transition: opacity 0.4s;
    animation: borderGlow 4s linear infinite;
}
.btn-glow:hover::before { opacity: 1; }
@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.btn-ghost {
    background: rgba(255,255,255,0.03); color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.btn-discord { background: linear-gradient(135deg, #5865F2, #7289DA); color: white; box-shadow: 0 6px 24px rgba(88, 101, 242, 0.3); }
.btn-discord:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(88, 101, 242, 0.4); }
.btn-large { padding: 20px 48px; font-size: 18px; border-radius: 16px; }
.btn-block { display: flex; justify-content: center; width: 100%; margin-top: 24px; }
.pulse { animation: pulse 3s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 30px var(--accent-glow); }
    50% { box-shadow: 0 6px 60px rgba(124, 58, 237, 0.5); }
}

/* ===== SECTIONS ===== */
section { padding: 120px 0; }
.alt-bg { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-tag {
    display: inline-block; background: rgba(124, 58, 237, 0.06); color: var(--accent-light);
    padding: 6px 20px; border-radius: 100px; font-size: 12px; font-weight: 700;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 3px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    backdrop-filter: blur(10px);
}
.section-header h2 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; margin-bottom: 14px; letter-spacing: -1.5px; }
.section-header p { color: var(--text-secondary); font-size: 17px; }

/* ===== FEATURES ===== */
.features { background: var(--bg-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px 32px; transition: all 0.5s var(--transition); position: relative; overflow: hidden;
    backdrop-filter: blur(20px);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.feature-card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { border-color: var(--border-accent); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px; background: rgba(124, 58, 237, 0.08); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    color: var(--accent-light); margin-bottom: 24px; transition: all 0.4s var(--transition);
    position: relative;
}
.feature-icon::before {
    content: ''; position: absolute; inset: -1px; border-radius: 17px;
    background: linear-gradient(135deg, var(--accent), var(--cyan)); opacity: 0;
    transition: opacity 0.3s; z-index: -1;
}
.feature-card:hover .feature-icon { transform: scale(1.12); background: rgba(124, 58, 237, 0.12); }
.feature-card:hover .feature-icon::before { opacity: 0.15; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; position: relative; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.8; position: relative; }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.categories-grid.single { max-width: 540px; margin: 0 auto; }
.category-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px; transition: all 0.5s var(--transition); position: relative; overflow: hidden;
    backdrop-filter: blur(20px);
}
.category-card-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.category-card.featured { border-color: var(--border-accent); }
.category-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--cyan), var(--accent));
    background-size: 200% 100%; animation: borderGlow 3s linear infinite;
}
.category-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.category-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; position: relative; }
.category-icon-wrap {
    width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent), var(--cyan));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white; box-shadow: 0 6px 20px var(--accent-glow);
}
.category-tag {
    background: rgba(124, 58, 237, 0.08); color: var(--accent-light);
    padding: 6px 16px; border-radius: 100px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    border: 1px solid rgba(124, 58, 237, 0.12);
}
.category-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; position: relative; letter-spacing: -0.5px; }
.category-card > p { color: var(--text-secondary); font-size: 15px; margin-bottom: 24px; line-height: 1.7; position: relative; }
.category-features { list-style: none; margin-bottom: 28px; position: relative; }
.category-features li {
    display: flex; align-items: flex-start; gap: 14px; padding: 10px 0;
    font-size: 14px; color: var(--text-secondary); line-height: 1.6;
    border-bottom: 1px solid var(--border);
}
.category-features li:last-child { border-bottom: none; }
.category-features li i { color: var(--accent-light); font-size: 14px; margin-top: 3px; flex-shrink: 0; width: 18px; text-align: center; }
.category-price {
    display: flex; align-items: center; padding-top: 24px; border-top: 1px solid var(--border);
    position: relative;
}
.price-badge {
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    padding: 8px 20px; border-radius: 100px;
}
.price-badge.premium {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--accent-light);
    border: 1px solid var(--border-accent);
}
.category-valorant-logo {
    width: 52px; height: 52px; border-radius: 12px;
    filter: drop-shadow(0 2px 12px rgba(255, 70, 85, 0.3));
    transition: all 0.4s var(--transition);
}
.category-card:hover .category-valorant-logo { transform: scale(1.1); filter: drop-shadow(0 4px 20px rgba(255, 70, 85, 0.4)); }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-secondary); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.review-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; transition: all 0.4s var(--transition);
    backdrop-filter: blur(20px);
}
.review-card:hover { border-color: var(--border-accent); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.reviewer-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 17px; flex-shrink: 0;
}
.reviewer-info h4 { font-size: 15px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--yellow); font-size: 14px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.review-verified { font-size: 12px; color: var(--green); display: flex; align-items: center; gap: 6px; }
.reviews-summary { display: flex; justify-content: center; }
.summary-score {
    text-align: center; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px 64px;
    backdrop-filter: blur(20px);
}
.score-num { font-size: 56px; font-weight: 900; display: block; line-height: 1; }
.score-stars { display: flex; gap: 4px; justify-content: center; color: var(--yellow); font-size: 22px; margin: 12px 0; }
.score-count { color: var(--text-muted); font-size: 14px; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px;
    overflow: hidden; background: var(--bg-card); transition: all 0.4s;
    backdrop-filter: blur(20px);
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px; background: none; border: none; color: var(--text-primary);
    font-size: 15px; font-weight: 600; cursor: pointer; text-align: left;
    font-family: 'Inter', sans-serif; transition: background 0.3s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question i { color: var(--text-muted); transition: all 0.3s; font-size: 13px; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent-light); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease, ease), padding 0.4s; }
.faq-item.active .faq-answer { max-height: 600px; padding: 0 28px 28px; }
.faq-answer p { color: var(--text-secondary); font-size: 14px; line-height: 1.9; margin-bottom: 12px; }
.faq-answer strong { color: var(--text-primary); }
.faq-answer ul { list-style: none; margin: 12px 0; }
.faq-answer li { color: var(--text-secondary); font-size: 14px; line-height: 1.9; padding: 4px 0 4px 24px; position: relative; }
.faq-answer li::before { content: '→'; position: absolute; left: 0; color: var(--accent-light); }

/* ===== DOWNLOAD ===== */
.download { background: var(--bg-secondary); }
.download-card {
    position: relative; text-align: center; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 80px 48px; overflow: hidden;
    backdrop-filter: blur(20px);
}
.download-glow {
    position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none; animation: glowPulse 5s infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.2); }
}
.download-icon {
    width: 72px; height: 72px; margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: white; position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 32px var(--accent-glow);
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.download-card h2 { font-size: 40px; font-weight: 800; margin-bottom: 14px; position: relative; letter-spacing: -1px; }
.download-card > p { color: var(--text-secondary); margin-bottom: 40px; position: relative; font-size: 17px; }
.download-buttons { display: flex; justify-content: center; gap: 18px; margin-bottom: 32px; position: relative; flex-wrap: wrap; }
.download-info { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; position: relative; }
.download-info span { color: var(--text-muted); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.download-alt {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 32px; position: relative;
}
.download-alt span { color: var(--text-muted); font-size: 14px; }
.download-alt-link {
    color: var(--accent-light); text-decoration: none; font-size: 14px; font-weight: 500;
    transition: all 0.3s; border-bottom: 1px solid transparent;
}
.download-alt-link:hover { color: var(--text-primary); border-bottom-color: var(--accent-light); }
.hero-logo { margin-bottom: 28px; }
.hero-logo-img {
    width: 130px; height: 130px;
    filter: drop-shadow(0 0 50px var(--accent-glow));
    animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.03); }
}

/* ===== DISCORD ===== */
.discord-section { padding: 120px 0; }
.discord-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 40%, #3c45a5 100%);
}
.discord-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.3) 0%, transparent 50%);
}
.discord-content { position: relative; text-align: center; padding: 80px 48px; }
.discord-icon { font-size: 80px; margin-bottom: 28px; animation: float 3s ease-in-out infinite; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4)); }
.discord-card h2 { font-size: 40px; font-weight: 800; margin-bottom: 14px; }
.discord-card > p { font-size: 18px; opacity: 0.9; margin-bottom: 8px; }
.discord-instruction {
    background: rgba(0,0,0,0.3); backdrop-filter: blur(12px);
    display: inline-flex; align-items: center; gap: 14px;
    padding: 16px 32px; border-radius: 100px; font-size: 16px; margin: 28px 0;
    border: 1px solid rgba(255,255,255,0.1);
}
.discord-instruction i { font-size: 20px; }
.discord-note { font-size: 13px !important; opacity: 0.6 !important; margin-top: 18px !important; }

/* ===== FOOTER ===== */
.footer { padding: 56px 0; border-top: 1px solid var(--border); }
.footer-content { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; margin-top: 10px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { text-align: center; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--text-muted); font-size: 12px; }

/* ===== EXTRA ANIMATIONS ===== */
.shine {
    position: absolute; top: 0; bottom: 0; width: 45%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
    transform: translateX(-160%) skewX(-20deg);
    pointer-events: none; z-index: 2;
}
.feature-card:hover .shine, .category-card:hover .shine, .review-card:hover .shine {
    animation: shineSweep 1s var(--transition);
}
@keyframes shineSweep {
    0% { transform: translateX(-160%) skewX(-20deg); }
    100% { transform: translateX(320%) skewX(-20deg); }
}

.hero-star {
    position: absolute; background: white; border-radius: 50%;
    animation: twinkle linear infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.05; transform: scale(0.6); }
    50% { opacity: 0.85; transform: scale(1.2); }
}

.floating-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(90px); opacity: 0.4;
    animation: orbDrift ease-in-out infinite alternate;
}
@keyframes orbDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(46px, -64px) scale(1.2); }
}

.download-card::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit;
    background: conic-gradient(from 0deg, transparent 0 35%, rgba(124, 58, 237, 0.9) 50%, rgba(6, 182, 212, 0.9) 62%, transparent 72% 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: borderSpin 7s linear infinite; z-index: 1; pointer-events: none;
}
@keyframes borderSpin { to { transform: rotate(360deg); } }

.feature-card:hover .feature-icon i,
.category-card:hover .category-icon-wrap i,
.review-card:hover .reviewer-avatar {
    animation: iconWiggle 0.55s ease-in-out;
}
@keyframes iconWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-14deg) scale(1.1); }
    75% { transform: rotate(12deg) scale(1.1); }
}

.section-header h2 { position: relative; }
.section-header h2::after {
    content: ''; position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
    width: 56px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    animation: headerLine 3s ease-in-out infinite;
}
@keyframes headerLine {
    0%, 100% { width: 56px; opacity: 0.6; }
    50% { width: 120px; opacity: 1; }
}

.download-icon i, .discord-icon i {
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-6px) rotate(4deg); }
}

.stat-num {
    background: linear-gradient(135deg, var(--text-primary), #cbd5e1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: statPulse 4s ease-in-out infinite;
}
@keyframes statPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(5, 5, 8, 0.95); backdrop-filter: blur(32px);
        padding: 28px; gap: 18px; border-bottom: 1px solid var(--border);
    }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .stat-divider { display: none; }
    .features-grid, .categories-grid, .reviews-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 28px; text-align: center; }
    .download-info { gap: 20px; }
    section { padding: 80px 0; }
}
