* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Paleta de Cores - Verde */
:root {
    /* Cores Primárias - Verde */
    --brand-primary: #22C55E;
    --brand-dark: #16A34A;
    --brand-light: #4ADE80;
    --primary: #22C55E;
    --primary-light: #4ADE80;
    --primary-dark: #16A34A;
    
    /* Cores Secundárias */
    --gold: #FFD700;
    --gold-dark: #FFA000;
    --black-premium: #000000;
    
    /* Estados */
    --success: #00C853;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Cores de Fundo */
    --background: #0A0A0A;
    --bg-primary: #0A0A0A;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #2A2A2A;
    --surface: #1A1A1A;
    --surface-light: #2A2A2A;
    --surface-hover: #3A3A3A;
    
    /* Bordas */
    --border-default: #333333;
    --border-active: #22C55E;
    
    /* Cores de Texto */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-disabled: rgba(255, 255, 255, 0.38);
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.6);
    
    /* Glow Effects */
    --glow-red: 0 0 20px rgba(34, 197, 94, 0.5);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
    --glow-green: 0 0 20px rgba(34, 197, 94, 0.5);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #16A34A 0%, #22C55E 50%, #4ADE80 100%);
    --gradient-premium: linear-gradient(135deg, #000000 0%, #212121 50%, #424242 100%);
    --gradient-gold: linear-gradient(135deg, #FFA000 0%, #FFD700 50%, #FFEB3B 100%);
    --gradient-success: linear-gradient(135deg, #00C853 0%, #4CAF50 100%);
    --gradient-surface: linear-gradient(145deg, #1A1A1A 0%, #2A2A2A 100%);
    
    /* Shadow Effects */
    --shadow-primary: 0 4px 15px rgba(34, 197, 94, 0.3);
    --shadow-primary-lg: 0 8px 25px rgba(34, 197, 94, 0.4);
    --shadow-gold: 0 4px 15px rgba(255, 215, 0, 0.3);
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Espaçamento */
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    
    /* Bordas */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

body {
    font-family: var(--font-family);
    background: var(--background);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Header Styles */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-default);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-light);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-dark), var(--primary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.btn-login {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
}

.btn-login:hover {
    color: var(--primary);
    background: rgba(211, 47, 47, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, var(--brand-dark), var(--primary));
    color: white;
    text-decoration: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.btn-register::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-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    padding: var(--space-4xl) 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.hero-banner {
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-surface);
    border: 1px solid var(--border-default);
    padding: var(--space-4xl);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-black);
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-2xl);
    line-height: 1.1;
}

.hero-cta {
    background: linear-gradient(135deg, var(--brand-dark), var(--primary));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary-lg);
    position: relative;
    overflow: hidden;
}

.hero-cta::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;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(211, 47, 47, 0.5);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.hero-visuals {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.money-stack {
    width: 200px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect x="10" y="20" width="180" height="80" rx="8" fill="%23059669" stroke="%23047857" stroke-width="2"/><text x="100" y="70" text-anchor="middle" fill="white" font-family="Arial" font-size="24" font-weight="bold">100</text><text x="100" y="45" text-anchor="middle" fill="white" font-family="Arial" font-size="10">REPÚBLICA FEDERATIVA DO BRASIL</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    transform: rotate(-5deg);
}

.money-stack::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect x="10" y="20" width="180" height="80" rx="8" fill="%23059669" stroke="%23047857" stroke-width="2"/><text x="100" y="70" text-anchor="middle" fill="white" font-family="Arial" font-size="24" font-weight="bold">100</text><text x="100" y="45" text-anchor="middle" fill="white" font-family="Arial" font-size="10">REPÚBLICA FEDERATIVA DO BRASIL</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}

/* ========================================
   STEPS & GAMES SECTIONS - MODERN DESIGN
   ======================================== */

/* Steps Section */
.steps-section {
    padding: 4rem 2rem;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74, 222, 128, 0.03) 0%, transparent 50%);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

/* Connecting Lines */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--primary) 33%, 
        rgba(34, 197, 94, 0.3) 33%, 
        rgba(34, 197, 94, 0.3) 66%, 
        rgba(34, 197, 94, 0.3) 66%, 
        rgba(34, 197, 94, 0.3) 100%
    );
    z-index: 1;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-8px);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    background: var(--gradient-surface);
    border: 2px solid var(--border-default);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-4xl);
    color: var(--text-disabled);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-icon:hover::before,
.step-icon.active::before {
    opacity: 1;
}

.step-icon.active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow-red);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

.step-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    transition: color 0.3s ease;
}

.step-title.active {
    color: var(--primary);
}

.step-item:hover .step-title {
    color: var(--primary);
}

.step-description {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.step-item:hover .step-description {
    color: var(--text-secondary);
}

/* Games Section */
.games-section {
    padding: var(--space-4xl) var(--space-2xl);
    background: 
        radial-gradient(circle at 20% 80%, rgba(211, 47, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 83, 80, 0.05) 0%, transparent 50%);
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
}

.game-category {
    background: var(--gradient-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-category:hover::before {
    opacity: 1;
}

.game-category:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        var(--glow-red);
}

.game-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-2xl);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(74, 222, 128, 0.1) 100%);
    border: 3px solid var(--border-default);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-5xl);
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.game-category:hover .game-icon {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(74, 222, 128, 0.15) 100%);
    box-shadow: var(--glow-red);
    transform: scale(1.05);
}

.game-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.game-category:hover .game-title {
    color: var(--primary);
}

.game-description {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.game-category:hover .game-description {
    color: var(--text-secondary);
}

.game-btn {
    background: linear-gradient(135deg, var(--brand-dark), var(--primary));
    color: white;
    border: none;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 50px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.game-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;
}

.game-btn:hover::before {
    left: 100%;
}

.game-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
    color: white;
}

.game-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.game-btn:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .steps-section,
    .games-section {
        padding: 3rem 1rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-category {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .game-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .game-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .game-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .game-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .game-category {
        padding: 2rem 1rem;
    }
    
    .game-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .game-title {
        font-size: 1.4rem;
    }
    
    .game-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Animation on scroll */
.step-item,
.game-category {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-item.animate-fade-in-up,
.game-category.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay */
.step-item:nth-child(1) { transition-delay: 0.1s; }
.step-item:nth-child(2) { transition-delay: 0.2s; }
.step-item:nth-child(3) { transition-delay: 0.3s; }
.step-item:nth-child(4) { transition-delay: 0.4s; }

.game-category:nth-child(1) { transition-delay: 0.1s; }
.game-category:nth-child(2) { transition-delay: 0.3s; }

/* Prize Carousel */
.prize-carousel {
    padding: 2rem 0;
    background: #0a0a0a;
    overflow: hidden;
}

.prize-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    padding: 1rem 0;
}

.prize-item {
    min-width: 200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 160, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    white-space: nowrap;
}

.prize-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
}

.prize-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.prize-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: var(--glow-gold);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border-default);
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-section h3 {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(13, 106, 237, 0.1);
    padding-top: var(--space-2xl);
    text-align: center;
    color: var(--text-disabled);
    font-size: var(--font-size-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}
/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}