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

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

:root {
    --rose: #e91e63;
    --rose-light: #f48fb1;
    --rose-dark: #c2185b;
    --blush: #fce4ec;
    --white: #fff;
    --charcoal: #212121;
    --gray: #616161;
    --soft-gray: #9e9e9e;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    min-height: 100vh;
    line-height: 1.8;
}

.header {
    background: var(--white);
    padding: 1.25rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose);
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--rose);
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--blush);
}

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

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.hero-banner p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.elegant-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--rose);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.elegant-btn:hover {
    background: var(--rose-dark);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--blush);
    border-bottom: 1px solid var(--blush);
}

.highlight-box {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid var(--blush);
}

.highlight-box:last-child {
    border-right: none;
}

.highlight-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

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

.game-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-showcase h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.game-frame {
    background: var(--blush);
    padding: 1.5rem;
}

.game-frame iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--blush);
}

.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
}

.feature-box .symbol {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--gray);
}

.content-area {
    padding: 4rem 2rem;
    max-width: 850px;
    margin: 0 auto;
}

.content-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    text-align: center;
}

.content-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: var(--rose);
}

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

.content-area ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--gray);
}

.content-area li {
    margin-bottom: 0.5rem;
}

.tip-box {
    background: var(--blush);
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--rose);
}

.tip-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rose);
    margin-bottom: 0.5rem;
}

.tip-box p {
    font-size: 0.9rem;
    margin: 0;
}

.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--rose-light);
}

.footer-col a {
    display: block;
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: var(--soft-gray);
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #424242;
    font-size: 0.8rem;
    color: var(--soft-gray);
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(33, 33, 33, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

.age-card {
    background: var(--white);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
}

.age-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.age-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons button {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
}

.age-buttons .yes-btn {
    background: var(--rose);
    color: var(--white);
}

.age-buttons .no-btn {
    background: var(--white);
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
}

.age-buttons button:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        border-right: none;
        border-bottom: 1px solid var(--blush);
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-btn {
        display: block;
    }
    
    .hero-banner h1 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .game-frame iframe {
        height: 380px;
    }
}
