@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&family=Montserrat:wght@400;500;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --electric-blue: #00b4d8;
    --bright-coral: #ff6b6b;
    --sunshine-yellow: #ffd93d;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --dark-slate: #2b2d42;
    --medium-gray: #8d99ae;
    --light-gray: #edf2f4;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    color: var(--dark-slate);
    line-height: 1.7;
    min-height: 100vh;
}

/* Top Bar Navigation */
.top-navigation {
    background: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--electric-blue), var(--bright-coral));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.brand-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-slate);
    letter-spacing: 1px;
}

.brand-title .subtitle {
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.main-menu ul li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--dark-slate);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    background: linear-gradient(135deg, var(--electric-blue), var(--bright-coral));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: var(--electric-blue);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 180, 216, 0.3);
}

/* Page Content */
.page-content {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.hero-area {
    background: linear-gradient(135deg, var(--electric-blue), var(--bright-coral));
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.3);
}

.hero-area h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-area p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.2);
    border-color: var(--electric-blue);
}

.feature-item .emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.content-box {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.content-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 1.5rem;
}

.content-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin: 2rem 0 1rem;
}

.content-box p {
    margin-bottom: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.content-box ul {
    margin: 1rem 0 1rem 2rem;
}

.content-box ul li {
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.game-area {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(255, 107, 107, 0.05));
    border: 3px solid var(--electric-blue);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.15);
}

.game-area h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-slate);
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: var(--dark-slate);
    color: var(--light-gray);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-block {
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--electric-blue);
}

.footer-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Age Verification */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 45, 66, 0.98);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-box {
    background: white;
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-slate);
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, var(--electric-blue), var(--bright-coral));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
}

.btn-decline {
    background: var(--light-gray);
    color: var(--medium-gray);
}

.btn-decline:hover {
    background: var(--medium-gray);
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .main-menu ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .main-menu ul.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-area h2 {
        font-size: 2rem;
    }

    .hero-area {
        padding: 3rem 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .page-content {
        padding: 2rem 1rem;
    }

    .game-embed {
        height: 400px;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-title h1 {
        font-size: 1.5rem;
    }

    .game-embed {
        height: 350px;
    }
}