@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

:root {
    --rose: #f472b6;
    --rose-dark: #db2777;
    --blush: #fdf2f8;
    --soft-white: #ffffff;
    --charcoal: #1f2937;
    --gray: #6b7280;
    --magenta: #ec4899;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--blush);
    color: var(--charcoal);
    line-height: 1.7;
}

.nav-strip {
    background: var(--soft-white);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(244, 114, 182, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-shape {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--rose), var(--magenta));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose-dark);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--rose-dark);
}

.mobile-trigger {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-trigger div {
    width: 22px;
    height: 2px;
    background: var(--rose-dark);
    margin: 5px 0;
}

.slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--soft-white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.slide-menu.active {
    transform: translateY(0);
}

.slide-menu a {
    color: var(--charcoal);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
}

.slide-menu a:hover {
    color: var(--rose-dark);
}

.slide-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    color: var(--rose-dark);
    cursor: pointer;
}

.splash {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--soft-white) 0%, var(--blush) 100%);
}

.splash h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.splash h1 em {
    color: var(--rose-dark);
    font-style: normal;
}

.splash-text {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.rose-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rose-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 39, 119, 0.3);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: -2rem auto 4rem;
    padding: 0 2rem;
}

.info-card {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.info-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Libre Baskerville', serif;
    color: var(--rose-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.game-block {
    padding: 4rem 2rem;
    background: var(--soft-white);
}

.game-block h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.game-wrap {
    max-width: 960px;
    margin: 0 auto;
    background: var(--blush);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(244, 114, 182, 0.3);
}

.game-wrap iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.counters {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--rose), var(--magenta));
    flex-wrap: wrap;
}

.counter {
    text-align: center;
    color: white;
}

.counter .num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.counter .txt {
    font-size: 0.85rem;
    opacity: 0.9;
}

.story-section {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-section h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem;
    color: var(--rose-dark);
    margin-bottom: 1rem;
}

.story-section p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.inner-banner {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, var(--rose), var(--magenta));
    text-align: center;
}

.inner-banner h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.3rem;
    color: white;
}

.text-block {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--soft-white);
}

.text-block h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: var(--rose-dark);
    margin: 2rem 0 0.75rem;
}

.text-block p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.text-block ul {
    list-style: none;
    margin-bottom: 1rem;
}

.text-block ul li {
    color: var(--gray);
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.text-block ul li::before {
    content: '♦';
    color: var(--rose);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

.bottom-footer {
    background: var(--charcoal);
    padding: 3rem 2rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--rose);
}

.help-links {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-links p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.help-links a {
    color: var(--rose);
    margin: 0 0.5rem;
    font-size: 0.85rem;
}

.age-pill {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(244, 114, 182, 0.2);
    border: 1px solid var(--rose);
    color: var(--rose);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 1rem;
}

.gate-screen {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gate-screen.gone {
    display: none;
}

.gate-box {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
}

.gate-box h2 {
    font-family: 'Libre Baskerville', serif;
    color: var(--rose-dark);
    margin-bottom: 1rem;
}

.gate-box p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.gate-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gate-options button {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.gate-yes {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white;
}

.gate-no {
    background: transparent;
    border: 2px solid #dc2626 !important;
    color: #dc2626;
}

.blocked-view {
    display: none;
    text-align: center;
    padding: 2rem;
    color: white;
}

.blocked-view h3 {
    color: #f87171;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-trigger {
        display: block;
    }
    
    .splash h1 {
        font-size: 2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .game-wrap iframe {
        height: 400px;
    }
    
    .counters {
        gap: 2rem;
    }
}
