@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #06D6A0;
    --dark-teal: #048B6B;
    --accent-green: #00C896;
    --light-bg: #F0F7F4;
    --white: #FFFFFF;
    --dark-text: #1B4332;
    --medium-text: #2D6A4F;
    --light-text: #52796F;
    --gray-bg: #E8F3EF;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

/* Top Bar Navigation */
.top-bar {
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(6, 214, 160, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-btn span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Main Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Page Title Section */
.page-title-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.15);
    border-top: 5px solid var(--primary-teal);
}

.page-title-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.page-title-section p {
    font-size: 1.4rem;
    color: var(--medium-text);
    font-weight: 300;
}

/* Grid Layout for Content */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Info Boxes */
.info-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-teal);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 214, 160, 0.2);
}

.info-box h2 {
    color: var(--dark-teal);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-box h3 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.info-box p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-box ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.info-box ul li {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.info-box ul li strong {
    color: var(--dark-teal);
}

/* Full Width Content Box */
.full-width-box {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-teal);
}

.full-width-box h2 {
    color: var(--dark-teal);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.full-width-box h3 {
    color: var(--primary-teal);
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.full-width-box p {
    color: var(--light-text);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.full-width-box ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.full-width-box ul li {
    color: var(--light-text);
    line-height: 1.9;
    margin-bottom: 0.9rem;
}

/* Alert Boxes */
.alert-message {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFD89B 100%);
    border: 3px solid #FFA500;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.alert-message h3 {
    color: #CC7000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.alert-message p {
    color: #8B5A00;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.alert-message.critical {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFCCCC 100%);
    border-color: #FF4444;
}

.alert-message.critical h3 {
    color: #CC0000;
}

.alert-message.critical p {
    color: #990000;
}

/* Game Container */
.game-container {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(6, 214, 160, 0.15);
    border: 3px solid var(--primary-teal);
}

.game-container h2 {
    color: var(--dark-teal);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.game-container iframe {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Footer Section */
.page-footer {
    background: var(--gray-bg);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 4px solid var(--primary-teal);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.page-footer h3 {
    color: var(--dark-teal);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-footer p {
    color: var(--medium-text);
    margin-bottom: 1rem;
}

.page-footer ul {
    list-style: none;
}

.page-footer ul li {
    margin: 1rem 0;
}

.page-footer ul li a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-footer ul li a:hover {
    color: var(--dark-teal);
}

.footer-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-teal);
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Age Verification Overlay */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-overlay.active {
    display: flex;
}

.age-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--primary-teal);
}

.age-box h2 {
    color: var(--dark-teal);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.age-box p {
    color: var(--medium-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.age-btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn-group button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-teal);
    color: white;
}

.btn-accept:hover {
    background: var(--dark-teal);
    transform: scale(1.05);
}

.btn-reject {
    background: #666;
    color: white;
}

.btn-reject:hover {
    background: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-teal);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .content-wrapper {
        padding: 2rem 1rem;
    }
    
    .page-title-section h1 {
        font-size: 2.2rem;
    }
    
    .page-title-section p {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 500px;
    }
    
    .age-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-btn-group {
        flex-direction: column;
        gap: 1rem;
    }
}
