/* Main CSS File */
:root {
    /* Color Variables */
    --primary-color: #00f0ff;
    --primary-dark: #00b8c4;
    --secondary-color: #ffd700;
    --dark-color: #0d0d0d;
    --dark-accent: #1a1a1a;
    --light-color: #ffffff;
    --text-color: #e0e0e0;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
    
    /* Spacing Variables (8px system) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    
    /* Typography Variables */
    --font-family: 'Montserrat', sans-serif;
    --line-height-body: 1.5;
    --line-height-heading: 1.2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-body);
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.section-subtitle {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: var(--space-xs);
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

.mb-3 {
    margin-bottom: var(--space-md);
}

.mb-4 {
    margin-bottom: var(--space-lg);
}

.mb-5 {
    margin-bottom: var(--space-xl);
}

.game-title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    text-decoration: underline;
    animation: fadeInUp 1s ease-out forwards;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

/* ...existing code... */

.disclaimer-content {
    opacity: 1;
    transform: translateY(30px);
    animation: disclaimerFadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    border: 2px solid #ff2d2d;
    border-radius: 10px;
    padding: 44px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(30, 0, 0, 0.7);
    box-shadow: 0 2px 16px rgba(255,45,45,0.08);
    animation: fadeInUp 1s ease-out;        
}

.age-icon {
    background: #ff2d2d;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 50%;
    width: 106px;
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #ff2d2d55;
    margin-right: 10px;
    flex-shrink: 0;
    border: 3px solid #fff;
}

/* Responsive for disclaimer */
@media (max-width: 600px) {
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px 8px;
    }
    .age-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

/* ...existing code... */