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

body {
    font-family: 'Roboto', sans-serif;
    background: #1a1a2e;
    color: #333;
    line-height: 1.6;
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.age-logo {
    margin-bottom: 25px;
}

.age-gate-content h1 {
    color: #FF6B35;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-text {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
}

.age-question {
    font-size: 19px;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn-confirm,
.age-btn-decline {
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.age-btn-confirm {
    background: #FF6B35;
    color: white;
}

.age-btn-confirm:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.age-btn-decline {
    background: #e0e0e0;
    color: #666;
}

.age-btn-decline:hover {
    background: #d5d5d5;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo span {
    font-size: 32px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    display: block;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 700;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFBB33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #FF6B35;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Intro Block */
.intro-block {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.intro-block h2 {
    color: #FF6B35;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Alerts Section */
.alerts-section {
    margin-bottom: 60px;
}

.alerts-section h2 {
    color: white;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.alert-box {
    padding: 40px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.alert-box.red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.alert-box.orange {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.alert-box.coral {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
}

.alert-icon {
    margin-bottom: 20px;
}

.alert-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.alert-box p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Game Showcase */
.game-showcase {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.game-showcase h2 {
    color: #FF6B35;
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.showcase-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.game-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    color: #666;
    font-size: 16px;
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    color: white;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
}

.benefit-number {
    font-size: 48px;
    font-weight: 900;
    color: #FF6B35;
    opacity: 0.3;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 24px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

.page-title h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 20px;
    font-weight: 300;
}

/* Instructions Panel */
.instructions-panel {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.instructions-panel h2 {
    color: #FF6B35;
    font-size: 38px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.instruction-item {
    text-align: center;
}

.instruction-badge {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.instruction-item h3 {
    font-size: 20px;
    color: #FF6B35;
    margin-bottom: 12px;
    font-weight: 700;
}

.instruction-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.play-reminder {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 17px;
}

/* Game Player */
.game-player {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Legal Document */
.legal-document {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #FF6B35;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #FF6B35;
}

.disclaimer-list {
    list-style: none;
    padding-left: 0;
}

.disclaimer-list li {
    padding-left: 30px;
    position: relative;
}

.disclaimer-list li:before {
    content: "▸";
    position: absolute;
    left: 10px;
    color: #FF6B35;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c3e 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 30px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #FF6B35;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 12px;
}

.resource-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #FF6B35;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li a {
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-banner {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .container {
        padding: 40px 20px;
    }

    .intro-block,
    .game-showcase,
    .instructions-panel,
    .legal-document {
        padding: 30px 20px;
    }

    .intro-block h2,
    .alerts-section h2,
    .game-showcase h2,
    .benefits-section h2 {
        font-size: 32px;
    }

    .page-title h1 {
        font-size: 38px;
    }

    .game-iframe {
        height: 450px;
    }

    .alerts-grid,
    .benefits-grid,
    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        padding: 30px 20px;
    }

    .age-gate-content h1 {
        font-size: 28px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-btn-confirm,
    .age-btn-decline {
        width: 100%;
    }
}
