@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Lato:wght@300;400;700&display=swap');

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

:root {
    --primary-purple: #9333EA;
    --secondary-pink: #EC4899;
    --accent-violet: #A855F7;
    --light-lavender: #F3E8FF;
    --dark-purple: #581C87;
    --bg-cream: #FDF4FF;
    --text-dark: #4C1D95;
    --text-muted: #6B21A8;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
}

.top-header {
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-pink));
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
}

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

.site-title {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-title:hover {
    color: var(--light-lavender);
    transition: color 0.3s ease;
}

.nav-bar {
    background: white;
    border-bottom: 3px solid var(--accent-violet);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 1.2rem 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
    color: var(--primary-purple);
    background: var(--light-lavender);
    border-bottom: 3px solid var(--secondary-pink);
}

.mobile-nav-toggle {
    display: none;
    background: white;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 8px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-section {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-violet));
    color: white;
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.3);
}

.intro-section h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.intro-section p {
    font-size: 1.25rem;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto;
}

.content-block {
    background: white;
    border: 3px solid var(--light-lavender);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.content-block h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 3px solid var(--secondary-pink);
    padding-bottom: 1rem;
}

.content-block h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-violet);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
    color: var(--text-muted);
}

.content-block ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 0.9rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.highlight-box {
    background: linear-gradient(135deg, var(--light-lavender), #FED7E2);
    border: 2px solid var(--secondary-pink);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box strong {
    color: var(--dark-purple);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: var(--text-dark);
    font-weight: 500;
}

.game-display {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.4);
}

.game-display h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.game-display iframe {
    width: 100%;
    max-width: 950px;
    height: 650px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.site-footer {
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-pink));
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-title {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

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

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--light-lavender);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(88, 28, 135, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verify-modal.show {
    display: flex;
}

.age-modal-box {
    background: white;
    border: 5px solid var(--secondary-pink);
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 80px rgba(236, 72, 153, 0.6);
}

.age-modal-box h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.age-modal-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.age-button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button {
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.age-button.yes {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-violet));
    color: white;
}

.age-button.yes:hover {
    background: linear-gradient(135deg, var(--accent-violet), var(--secondary-pink));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.5);
}

.age-button.no {
    background: #DC2626;
    color: white;
}

.age-button.no:hover {
    background: #991B1B;
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 4rem 0;
        transition: left 0.3s ease;
        border-right: 5px solid var(--primary-purple);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        border-bottom: 1px solid var(--light-lavender);
        border-left: none;
    }

    .header-content {
        padding: 0 1.5rem;
    }

    .site-title {
        font-size: 1.6rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .intro-section {
        padding: 2.5rem;
    }

    .intro-section h1 {
        font-size: 2.2rem;
    }

    .content-block {
        padding: 2rem;
    }

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

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal-box {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-button-group {
        flex-direction: column;
    }
}
