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

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

/* Navigation */
.top-bar {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3498db;
    letter-spacing: -0.5px;
}

.navigation-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.navigation-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navigation-links a:hover,
.navigation-links a.current {
    color: #3498db;
}

.menu-icon {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #3498db;
    cursor: pointer;
}

/* Main Section */
.page-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #3498db;
    margin: 3rem 0 1.5rem;
}

h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.info-banner h3 {
    color: white;
    margin-top: 0;
}

.info-banner ul {
    margin-top: 1.5rem;
}

.info-banner li {
    margin: 0.8rem 0;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.feature-item h3 {
    color: #3498db;
    font-size: 1.5rem;
}

/* Game Area */
.game-area {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-area iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

/* Divider Line */
.section-divider {
    width: 100px;
    height: 4px;
    background: #3498db;
    margin: 3rem auto;
}

/* Footer Area */
.bottom-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    color: white;
    margin-bottom: 2rem;
}

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

.footer-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5dade2;
}

.footer-container p {
    color: #95a5a6;
    margin: 0;
}

/* Age Gate */
.age-gate-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    z-index: 10000;
}

.age-gate-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-box {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-box h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0 0 1.5rem 0;
}

.age-gate-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-gate-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-confirm {
    background: #3498db;
    color: white;
}

.btn-confirm:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.btn-reject {
    background: #e74c3c;
    color: white;
}

.btn-reject:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .navigation-links.active {
        left: 0;
    }

    .menu-icon {
        display: block;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-area iframe {
        height: 450px;
    }

    .page-section {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-gate-box {
        margin: 2rem;
        padding: 3rem 2rem;
    }

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

    .age-gate-btn {
        width: 100%;
    }
}
