@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0a1929;
    color: #f1f5f9;
    line-height: 1.7;
}

.header-bar {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1929 100%);
    padding: 1.2rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    box-shadow: 0 4px 25px rgba(251, 191, 36, 0.2);
}

.header-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fbbf24;
    text-decoration: none;
    letter-spacing: 4px;
}

.mobile-toggle {
    display: none;
    background: #fbbf24;
    border: none;
    color: #0a1929;
    font-size: 2rem;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 800;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #fbbf24;
}

.page-content {
    margin-top: 80px;
}

.section {
    padding: 5rem 4rem;
}

.section-alt {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
}

.section-inner {
    max-width: 1700px;
    margin: 0 auto;
}

.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1929 100%);
    padding: 6rem 4rem;
    text-align: center;
}

h1 {
    font-size: 5.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.6rem;
    color: #cbd5e1;
    font-weight: 300;
}

.text-content {
    font-size: 1.15rem;
    line-height: 2;
    margin: 2rem 0;
}

.text-content p {
    margin-bottom: 1.8rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-card {
    background: rgba(30, 58, 95, 0.4);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.card-title {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.warning-banner {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    padding: 3.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    color: #fff;
}

.warning-banner h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.warning-banner p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.game-section {
    background: #0f2744;
    padding: 5rem 4rem;
}

.game-container {
    max-width: 1400px;
    margin: 3rem auto;
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid #fbbf24;
    box-shadow: 0 25px 80px rgba(251, 191, 36, 0.2);
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.benefit-box {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.6) 0%, rgba(15, 39, 68, 0.6) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.4);
    text-align: center;
    transition: all 0.3s;
}

.benefit-box:hover {
    transform: translateY(-15px);
    border-color: #fbbf24;
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.25);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.8rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-footer {
    background: #0f2744;
    padding: 3.5rem;
    text-align: center;
    border-top: 5px solid #fbbf24;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links-row a {
    color: #fbbf24;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-links-row a:hover {
    color: #fcd34d;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.98);
    z-index: 200000;
    justify-content: center;
    align-items: center;
}

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

.age-modal-inner {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 5rem 4rem;
    border-radius: 35px;
    text-align: center;
    max-width: 750px;
    border: 6px solid #fbbf24;
    box-shadow: 0 0 100px rgba(251, 191, 36, 0.4);
}

.age-modal h2 {
    font-size: 4rem;
    margin-top: 0;
}

.age-modal p {
    font-size: 1.35rem;
    margin: 2.5rem 0;
    line-height: 2;
    color: #cbd5e1;
}

.age-actions {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-action {
    padding: 1.8rem 5rem;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-action.confirm {
    background: #fbbf24;
    color: #0a1929;
}

.age-action.confirm:hover {
    background: #fcd34d;
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
}

.age-action.reject {
    background: #dc2626;
    color: #fff;
}

.age-action.reject:hover {
    background: #ef4444;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #0a1929;
        transition: right 0.3s;
        padding-top: 6rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 2rem 3rem;
        border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    }
    
    .header-bar {
        padding: 1.2rem 2rem;
    }
    
    .section, .hero-section, .game-section {
        padding: 4rem 2rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 550px;
    }
    
    .age-modal-inner {
        margin: 1.5rem;
        padding: 3.5rem 2.5rem;
    }
    
    .age-modal h2 {
        font-size: 2.8rem;
    }
    
    .age-actions {
        flex-direction: column;
        gap: 2rem;
    }
}
