/* ========================================
   FLIPITRICH - Ultimate Pinball Game
   Enhanced Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #003D57;
    --primary-light: #004F6F;
    --accent: #00D4FF;
    --accent-secondary: #FF6B35;
    --gold: #FFD700;
    --purple: #9D4EDD;
    --pink: #FF006E;
    --green: #00ff88;
    --white: #ffffff;
    --dark: #001824;
    --gradient-1: linear-gradient(135deg, #00D4FF, #9D4EDD);
    --gradient-2: linear-gradient(135deg, #FF6B35, #FF006E);
    --gradient-3: linear-gradient(135deg, #FFD700, #FF6B35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

/* ========================================
   Background Effects
   ======================================== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at bottom, var(--primary) 0%, var(--dark) 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 230px 80px, white, rgba(0,0,0,0));
    background-size: 400px 400px;
    animation: twinkle 5s ease-in-out infinite;
}

.stars:nth-child(2) {
    background-position: 50% 50%;
    animation-delay: -2s;
}

.stars:nth-child(3) {
    background-position: -50% -50%;
    animation-delay: -4s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 212, 255, 0.1) 45%, transparent 50%),
        linear-gradient(-45deg, transparent 40%, rgba(157, 78, 221, 0.1) 45%, transparent 50%);
    background-size: 400% 400%;
    animation: aurora 15s ease-in-out infinite;
}

@keyframes aurora {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========================================
   Floating Pinballs
   ======================================== */
.pinball {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.pinball-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #c0c0c0, #808080);
    box-shadow: 
        inset -10px -10px 20px rgba(0,0,0,0.4),
        inset 10px 10px 20px rgba(255,255,255,0.4),
        0 0 30px rgba(0, 212, 255, 0.3);
    top: 20%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.pinball-2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--gold), #b8860b);
    box-shadow: 
        inset -5px -5px 15px rgba(0,0,0,0.3),
        inset 5px 5px 15px rgba(255,255,255,0.5),
        0 0 25px rgba(255, 215, 0, 0.4);
    top: 60%;
    right: 15%;
    animation: float2 6s ease-in-out infinite;
}

.pinball-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, var(--accent), #0099cc);
    box-shadow: 
        inset -4px -4px 10px rgba(0,0,0,0.3),
        inset 4px 4px 10px rgba(255,255,255,0.4),
        0 0 20px rgba(0, 212, 255, 0.5);
    top: 75%;
    left: 20%;
    animation: float3 7s ease-in-out infinite;
}

.pinball-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--accent-secondary), #cc4400);
    box-shadow: 
        inset -6px -6px 15px rgba(0,0,0,0.3),
        inset 6px 6px 15px rgba(255,255,255,0.3),
        0 0 25px rgba(255, 107, 53, 0.4);
    top: 30%;
    right: 8%;
    animation: float4 9s ease-in-out infinite;
}

.pinball-5 {
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, var(--purple), #7b2cbf);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    top: 45%;
    left: 5%;
    animation: float5 10s ease-in-out infinite;
}

.pinball-6 {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, var(--pink), #c9184a);
    box-shadow: 0 0 22px rgba(255, 0, 110, 0.5);
    top: 85%;
    right: 25%;
    animation: float6 11s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, -60px) rotate(180deg); }
    75% { transform: translate(40px, -30px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 30px) rotate(120deg); }
    66% { transform: translate(20px, -40px) rotate(240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 50px) rotate(180deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, -50px) rotate(180deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-25px, -35px) rotate(90deg); }
    75% { transform: translate(30px, 20px) rotate(270deg); }
}

/* ========================================
   Navigation
   ======================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 24, 36, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 50px;
    background: rgba(0, 24, 36, 0.95);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--accent);
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

.mobile-menu.active .fa-bars {
    display: none;
}

.mobile-menu.active .fa-times {
    display: block;
}

.mobile-menu .fa-times {
    display: none;
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 24, 36, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 30px;
    list-style: none;
}

.mobile-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.2;
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.mobile-nav-links a:hover::before {
    left: 0;
}

.mobile-nav-links a:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(157, 78, 221, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: dotPulse 1s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.5); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.hero h1 .main-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 40%, var(--gold) 70%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 5s linear infinite;
    background-size: 200% auto;
}

@keyframes titleShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero h1::before {
    content: 'FLIPITRICH';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3.5rem, 12vw, 8rem);
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; filter: blur(30px); }
    50% { opacity: 0.6; filter: blur(40px); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-gradient-2 {
    background: var(--gradient-2);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.btn-gradient-2:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6);
}

/* Platforms */
.platforms {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.platform-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platform-icons {
    display: flex;
    gap: 20px;
}

.platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.platform-icon:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
    padding: 60px 50px;
    background: linear-gradient(90deg, rgba(0, 61, 87, 0.5), rgba(0, 79, 111, 0.3), rgba(0, 61, 87, 0.5));
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 120px 50px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, rgba(0, 61, 87, 0.4), rgba(0, 79, 111, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--gradient-2);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--gradient-3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.3);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, var(--green), var(--accent));
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, var(--pink), var(--accent-secondary));
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.3);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ========================================
   Game Modes Section
   ======================================== */
.game-modes {
    padding: 120px 50px;
    position: relative;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.mode-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mode-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.mode-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.mode-card:hover .mode-bg {
    transform: scale(1.1);
}

.mode-card-1 .mode-bg {
    background: linear-gradient(180deg, var(--primary) 0%, #002233 50%, var(--dark) 100%);
}

.mode-card-2 .mode-bg {
    background: linear-gradient(180deg, #1a0033 0%, #330066 50%, var(--dark) 100%);
}

.mode-card-3 .mode-bg {
    background: linear-gradient(180deg, #331100 0%, #662200 50%, var(--dark) 100%);
}

.mode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.mode-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 1;
}

.mode-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.mode-card-1 .mode-icon {
    background: var(--gradient-1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.mode-card-2 .mode-icon {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.mode-card-3 .mode-icon {
    background: var(--gradient-3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.mode-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.mode-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mode-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.mode-card-1 .mode-badge {
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.mode-card-2 .mode-badge {
    color: var(--purple);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.mode-card-3 .mode-badge {
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ========================================
   Game Preview Section
   ======================================== */
.game-preview {
    padding: 120px 50px;
}

.preview-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.preview-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.preview-content h2 span {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.preview-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.preview-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.preview-feature:nth-child(1) .preview-feature-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    color: var(--accent);
}

.preview-feature:nth-child(2) .preview-feature-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    color: var(--gold);
}

.preview-feature:nth-child(3) .preview-feature-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.05));
    color: var(--accent-secondary);
}

.preview-feature-text h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.preview-feature-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Game Screen */
.game-screen {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 40px;
    border: 4px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.game-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.3;
    animation: gameGlow 3s ease-in-out infinite;
}

@keyframes gameGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.1; }
}

.score-display {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.flipper {
    position: absolute;
    bottom: 80px;
    width: 100px;
    height: 28px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5);
}

.flipper-left {
    left: 30px;
    background: linear-gradient(135deg, var(--accent-secondary), #cc4400);
    transform: rotate(-30deg);
    transform-origin: left center;
    animation: flipLeft 1.5s ease-in-out infinite;
}

.flipper-right {
    right: 30px;
    background: linear-gradient(135deg, #cc4400, var(--accent-secondary));
    transform: rotate(30deg);
    transform-origin: right center;
    animation: flipRight 1.5s ease-in-out infinite;
}

@keyframes flipLeft {
    0%, 100% { transform: rotate(-30deg); }
    50% { transform: rotate(15deg); }
}

@keyframes flipRight {
    0%, 100% { transform: rotate(30deg); }
    50% { transform: rotate(-15deg); }
}

.bumper {
    position: absolute;
    border-radius: 50%;
    animation: bumperGlow 0.8s ease-in-out infinite alternate;
}

.bumper-1 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.bumper-2 {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent), #0099cc);
    top: 200px;
    left: 50px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    animation-delay: 0.3s;
}

.bumper-3 {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--purple), #7b2cbf);
    top: 200px;
    right: 50px;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
    animation-delay: 0.6s;
}

.bumper-4 {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--pink), #c9184a);
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.6);
    animation-delay: 0.9s;
}

@keyframes bumperGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.ball {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(145deg, #e0e0e0, #a0a0a0);
    border-radius: 50%;
    box-shadow: 
        inset -3px -3px 6px rgba(0,0,0,0.3),
        inset 3px 3px 6px rgba(255,255,255,0.5),
        0 0 15px rgba(255, 255, 255, 0.5);
    animation: ballMove 4s ease-in-out infinite;
}

@keyframes ballMove {
    0% { top: 350px; left: 50%; }
    20% { top: 180px; left: 70%; }
    40% { top: 220px; left: 30%; }
    60% { top: 120px; left: 50%; }
    80% { top: 280px; left: 60%; }
    100% { top: 350px; left: 50%; }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 120px 50px;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(0, 61, 87, 0.5), rgba(0, 79, 111, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.testimonial-card:nth-child(1) .author-avatar {
    background: var(--gradient-1);
}

.testimonial-card:nth-child(2) .author-avatar {
    background: var(--gradient-2);
}

.testimonial-card:nth-child(3) .author-avatar {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.author-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   Leaderboard Section
   ======================================== */
.leaderboard {
    padding: 120px 50px;
}

.leaderboard-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(0, 61, 87, 0.5), rgba(0, 79, 111, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.leaderboard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
}

.leaderboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.leaderboard-tab {
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.leaderboard-tab.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.leaderboard-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    padding: 15px 30px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    align-items: center;
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.leaderboard-row:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(10px);
}

.leaderboard-row.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border-color: rgba(255, 215, 0, 0.3);
}

.leaderboard-row.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.03));
    border-color: rgba(192, 192, 192, 0.2);
}

.leaderboard-row.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.03));
    border-color: rgba(205, 127, 50, 0.2);
}

.rank {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
}

.rank.first { 
    color: var(--gold); 
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.rank.second { color: #c0c0c0; }
.rank.third { color: #cd7f32; }

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.gold .avatar { background: linear-gradient(135deg, var(--gold), #b8860b); }
.silver .avatar { background: linear-gradient(135deg, #c0c0c0, #808080); }
.bronze .avatar { background: linear-gradient(135deg, #cd7f32, #8b4513); }
.leaderboard-row:not(.gold):not(.silver):not(.bronze) .avatar {
    background: var(--gradient-1);
}

.player-name {
    font-weight: 600;
    font-size: 1.05rem;
}

.player-score {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
    text-align: right;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 120px 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(0, 61, 87, 0.4), rgba(0, 79, 111, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: var(--dark);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 120px 50px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 80px;
    background: linear-gradient(145deg, rgba(0, 61, 87, 0.6), rgba(0, 79, 111, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent 30%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    100% { transform: rotate(360deg); }
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
    animation: ctaIconPulse 2s ease-in-out infinite;
}

@keyframes ctaIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Newsletter */
.newsletter {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* ========================================
   Footer
   ======================================== */
footer {
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   Particles
   ======================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modes-grid .mode-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    nav {
        padding: 15px 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .features, .game-modes, .game-preview, .testimonials, .leaderboard, .faq, .cta {
        padding: 80px 30px;
    }
    
    .preview-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .preview-visual {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .modes-grid .mode-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-container {
        padding: 40px 25px;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 50px 1fr 100px;
        padding: 15px 20px;
    }
    
    .cta-content {
        padding: 60px 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .platforms {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .leaderboard-tabs {
        flex-wrap: wrap;
    }
}