/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    --secondary: #ef4444;
    --accent: #06b6d4;
    --dark: #0a0a0f;
    --dark-light: #12121a;
    --dark-lighter: #1e1e2e;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --success: #22c55e;
    --warning: #f59e0b;
    --gradient-1: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #7c3aed 100%);
    --gradient-2: linear-gradient(90deg, #f59e0b, #ef4444);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-icon { font-size: 1.8rem; color: var(--primary); }

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
    background: var(--gradient-1);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

.city-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 100%);
}

.lightning {
    position: absolute;
    top: 10%;
    right: 20%;
    width: 3px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    animation: lightning 4s infinite;
    opacity: 0.3;
}

@keyframes lightning {
    0%, 90%, 100% { opacity: 0; }
    92% { opacity: 0.3; }
    94% { opacity: 0; }
    96% { opacity: 0.5; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-title .subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-platforms {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.platform-icons {
    display: flex;
    gap: 8px;
    font-size: 1.3rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 420px;
}

.hero-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition);
}

.hero-card.active {
    opacity: 1;
    transform: scale(1);
}

.hero-3d {
    width: 280px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cape {
    position: absolute;
    top: -20px;
    width: 180px;
    height: 200px;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.3), transparent);
    border-radius: 50% 50% 0 0;
    animation: capeWave 3s ease-in-out infinite;
}

@keyframes capeWave {
    0%, 100% { transform: skewX(-5deg); }
    50% { transform: skewX(5deg); }
}

.hero-body {
    width: 120px;
    height: 160px;
    background: var(--gradient-1);
    border-radius: 60px 60px 30px 30px;
    position: relative;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.hero-body::before,
.hero-body::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    top: 40px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-body::before { left: 22px; }
.hero-body::after { right: 22px; }

.hero-glow {
    position: absolute;
    inset: -30px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(50px);
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-aura {
    position: absolute;
    inset: -60px;
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    animation: auraSpin 8s linear infinite;
}

@keyframes auraSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.1); }
}

.hero-2 .hero-body { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.hero-2 .hero-glow { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.hero-3 .hero-body { background: linear-gradient(135deg, #ef4444, #7c3aed); }
.hero-3 .hero-glow { background: linear-gradient(135deg, #ef4444, #7c3aed); }

.hero-name {
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: white;
}

.hero-power {
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-top: 4px;
}

.hero-selector {
    display: flex;
    gap: 12px;
}

.selector-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.selector-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    width: 32px;
    border-radius: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-card);
}

.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.08));
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-1);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list { list-style: none; }

.feature-list li {
    padding: 6px 0;
    color: var(--text-dim);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: '->';
    color: var(--primary);
    font-weight: bold;
}

.gameplay {
    padding: 100px 0;
    background: var(--dark-light);
}

.gameplay-showcase {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.gameplay-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.tab-btn.active { color: white; }
.tab-btn.active::after { width: 60%; }
.tab-btn:hover { color: var(--text); }

.gameplay-content { padding: 48px; }

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tab-panel.active { display: grid; }

.screen-mockup {
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #22c55e; }

.mockup-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.mockup-body {
    padding: 24px;
    min-height: 300px;
    display: flex;
    gap: 24px;
}

.hero-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-figure {
    width: 120px;
    height: 180px;
    background: var(--gradient-1);
    border-radius: 60px 60px 20px 20px;
    position: relative;
    box-shadow: var(--shadow-glow);
    animation: heroBreathe 3s ease-in-out infinite;
}

@keyframes heroBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.customization-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.power-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.power-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.power-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.align-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.align-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
}

.align-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.suit-preview {
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, #1e1e2e, var(--primary), #1e1e2e);
    border-radius: 8px;
}

.world-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.district-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

.district-card span {
    display: block;
    padding: 8px;
    font-size: 0.9rem;
    color: var(--text);
}

.district-level {
    font-size: 0.75rem !important;
    color: var(--primary) !important;
    padding-top: 0 !important;
}

.district-img {
    height: 80px;
    background-size: cover;
    background-position: center;
}

.downtown { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.industrial { background: linear-gradient(135deg, #64748b, #475569); }
.waterfront { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.uptown { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

.combat-view {
    flex-direction: column;
    gap: 16px;
}

.combat-hud {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.health-bar, .power-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.hp-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
    border-radius: 6px;
}

.pp-fill {
    height: 100%;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    border-radius: 6px;
}

.combat-arena {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    min-height: 120px;
}

.player-hero {
    width: 60px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 30px 30px 10px 10px;
}

.enemy-villain {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #ef4444);
    border-radius: 30px 30px 10px 10px;
}

.ability-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.ability {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.ability.active {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.evolve-view {
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.skill-tree {
    display: flex;
    align-items: center;
    gap: 8px;
}

.skill-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid;
}

.skill-node.unlocked {
    background: var(--gradient-1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.skill-node.available {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--primary);
    cursor: pointer;
}

.skill-node.locked {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.skill-line {
    width: 30px;
    height: 3px;
    background: var(--primary);
}

.skill-line.locked { background: rgba(255, 255, 255, 0.1); }

.skill-info { text-align: center; }

.skill-name {
    display: block;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.skill-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.skill-cost {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
}

.panel-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.panel-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.panel-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.pf-icon {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 0.8rem;
}

.heroes {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
}

.heroes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-bottom: 48px;
}

.hero-showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.hero-showcase-item:hover { transform: scale(1.02); }

.hero-showcase-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.hero-showcase-item.wide { grid-column: span 2; }

.hero-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.hero-glow-1 { background: linear-gradient(135deg, #f59e0b, #ef4444, #7c3aed); }
.hero-glow-2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.hero-glow-3 { background: linear-gradient(135deg, #ef4444, #7c3aed); }
.hero-glow-4 { background: linear-gradient(135deg, #22c55e, #06b6d4); }
.hero-glow-5 { background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444); }

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-creator {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-likes {
    color: var(--secondary);
    font-size: 0.85rem;
}

.heroes-cta { text-align: center; }

.heroes-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.community {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.2);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.08));
    border-color: rgba(245, 158, 11, 0.2);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.author-avatar.a1 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.author-avatar.a2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.author-avatar.a3 { background: linear-gradient(135deg, #22c55e, #06b6d4); }

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: white;
}

.author-meta {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.comm-stat {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition);
}

.comm-stat:hover {
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-3px);
}

.comm-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.comm-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.download {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
}

.download-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.download-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-3px);
}

.db-icon { font-size: 1.8rem; }

.db-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.db-small {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.db-large {
    font-weight: 700;
    font-size: 1rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.di-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.di-check {
    color: var(--success);
    font-weight: bold;
}

.faq {
    padding: 100px 0;
    background: var(--dark-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(245, 158, 11, 0.2); }

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover { background: rgba(255, 255, 255, 0.05); }

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer {
    padding: 80px 0 40px;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 32px; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-platforms { justify-content: center; }
    .hero-visual { order: -1; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tab-panel { grid-template-columns: 1fr; }
    .heroes-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .hero-showcase-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 250px;
    }
    .testimonials-grid { grid-template-columns: 1fr; }
    .community-stats { grid-template-columns: repeat(2, 1fr); }
    .download-buttons { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-title .gradient-text { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .gameplay-tabs { flex-wrap: wrap; }
    .heroes-grid { grid-template-columns: 1fr; }
    .hero-showcase-item.large,
    .hero-showcase-item.wide { grid-column: span 1; }
    .community-stats { grid-template-columns: 1fr; }
    .download-buttons { grid-template-columns: 1fr; }
    .download-info { flex-direction: column; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-header h2 { font-size: 1.8rem; }
}
