* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1px;
}

.brand-icon {
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-banner {
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #0066cc;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.info-cards {
    padding: 60px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-emoji {
    font-size: 60px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.card-blue {
    border-top: 5px solid #0066cc;
}

.card-green {
    border-top: 5px solid #00cc66;
}

.card-orange {
    border-top: 5px solid #ff9900;
}

.content-section {
    padding: 60px 0;
    background: #fff;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #0066cc;
    font-weight: 700;
}

.content-box p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.game-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #0066cc;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.game-frame {
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: #000;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-disclaimer {
    text-align: center;
    margin-top: 25px;
    font-style: italic;
    color: #666;
    font-size: 16px;
}

.benefits-section {
    padding: 60px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-box {
    padding: 30px;
    border-left: 5px solid #0066cc;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    opacity: 0.3;
    margin-bottom: 15px;
}

.benefit-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0066cc;
    font-weight: 700;
}

.benefit-box p {
    color: #666;
    line-height: 1.7;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ccff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0066cc;
    font-weight: 800;
}

.age-gate-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
    font-size: 16px;
}

.age-gate-notice {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff9900;
    margin-bottom: 25px;
}

.age-gate-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn-confirm,
.age-btn-decline {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.age-btn-confirm {
    background: #0066cc;
    color: #fff;
}

.age-btn-confirm:hover {
    background: #0052a3;
    transform: scale(1.05);
}

.age-btn-decline {
    background: #e0e0e0;
    color: #555;
}

.age-btn-decline:hover {
    background: #d0d0d0;
}

.page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.legal-section {
    padding: 60px 0;
}

.legal-document {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0066cc;
    font-weight: 700;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.play-content {
    padding: 60px 0;
}

.play-instructions {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.play-instructions h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0066cc;
    font-weight: 700;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.instruction-icon {
    font-size: 32px;
}

.instruction-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.play-alert {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff9900;
    color: #856404;
}

.play-game-container {
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: #000;
}

.play-game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0066cc;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        padding: 30px;
        margin: 20px;
    }

    .age-gate-icon {
        font-size: 60px;
    }

    .age-gate-content h2 {
        font-size: 24px;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .age-btn-confirm,
    .age-btn-decline {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .legal-document {
        padding: 30px 20px;
    }
}
