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

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    min-height: 100vh;
    line-height: 1.75;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e94560;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #e94560;
    text-decoration: none;
    letter-spacing: 3px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #e94560;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.open span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.main { padding-top: 90px; }

.hero {
    padding: 90px 35px;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: #e94560;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero .intro {
    font-size: 1.25rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 60px 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    flex: 1 1 300px;
    max-width: 380px;
    background: rgba(233, 69, 96, 0.08);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #e94560;
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.2);
}

.card .icon { font-size: 3rem; margin-bottom: 18px; }
.card h3 { font-family: 'Montserrat', sans-serif; color: #e94560; font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: #aaa; font-size: 0.98rem; }

.game-section { padding: 70px 35px; }

.game-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #e94560;
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.game-wrap {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(15, 52, 96, 0.5);
    border: 2px solid #e94560;
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
}

.game-wrap iframe {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 10px;
    display: block;
}

.content {
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 35px;
}

.content h1 {
    font-family: 'Montserrat', sans-serif;
    color: #e94560;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
}

.content h2 { font-family: 'Montserrat', sans-serif; color: #e94560; font-size: 1.4rem; margin: 40px 0 15px; }
.content p { color: #bbb; margin-bottom: 18px; font-size: 1.05rem; }
.content ul { color: #bbb; margin: 18px 0 18px 30px; }
.content li { margin-bottom: 10px; }

.footer {
    background: rgba(15, 15, 30, 0.95);
    padding: 60px 35px 40px;
    margin-top: 80px;
    border-top: 2px solid #e94560;
}

.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-inner h4 { font-family: 'Montserrat', sans-serif; color: #e94560; margin-bottom: 25px; }

.links { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-bottom: 40px; }
.links a { color: #777; text-decoration: none; transition: color 0.3s; }
.links a:hover { color: #e94560; }

.copy { color: #555; font-size: 0.9rem; padding-top: 25px; border-top: 1px solid #333; }

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 30, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.age-gate.hidden { display: none; }

.age-box {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #e94560;
    border-radius: 20px;
    padding: 55px;
    text-align: center;
    max-width: 480px;
}

.age-box h2 { font-family: 'Montserrat', sans-serif; color: #e94560; font-size: 1.9rem; margin-bottom: 18px; }
.age-box p { color: #aaa; margin-bottom: 35px; }

.age-btns { display: flex; gap: 18px; justify-content: center; }

.age-btn {
    font-family: 'Montserrat', sans-serif;
    padding: 14px 48px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.age-btn.yes { background: #e94560; color: white; border: none; }
.age-btn.yes:hover { background: #ff6b81; box-shadow: 0 0 25px rgba(233, 69, 96, 0.4); }
.age-btn.no { background: transparent; color: #e94560; border: 2px solid #e94560; }
.age-btn.no:hover { background: rgba(233, 69, 96, 0.1); }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a { font-size: 1.3rem; }
    .hero h1 { font-size: 2.5rem; }
    .game-wrap iframe { height: 420px; }
    .age-box { margin: 20px; padding: 40px 25px; }
    .age-btns { flex-direction: column; }
}
