@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;500&display=swap');

:root {
    --rose-gold: #b76e79;
    --cream: #faf8f5;
    --charcoal: #1a1a1a;
    --soft-black: #2d2d2d;
    --gold-accent: #c9a962;
    --muted-pink: #e8d5d5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.75;
    font-weight: 300;
}

.luxury-header {
    background: var(--charcoal);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 4px;
}

.brand-name span {
    color: var(--rose-gold);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
}

.elegant-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.elegant-nav a {
    font-size: 0.85rem;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    transition: color 0.3s;
}

.elegant-nav a:hover {
    color: var(--rose-gold);
}

.showcase {
    background: linear-gradient(135deg, var(--soft-black), var(--charcoal));
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-text h1 span {
    color: var(--rose-gold);
    font-style: italic;
}

.showcase-text p {
    color: rgba(250, 248, 245, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.highlight-box {
    display: flex;
    gap: 2rem;
}

.highlight {
    border-left: 2px solid var(--rose-gold);
    padding-left: 1rem;
}

.highlight strong {
    display: block;
    color: var(--rose-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.highlight span {
    color: var(--cream);
    font-size: 0.95rem;
}

.showcase-visual {
    background: rgba(183, 110, 121, 0.1);
    border: 1px solid rgba(183, 110, 121, 0.3);
    padding: 3rem;
    text-align: center;
}

.showcase-visual .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.showcase-visual h3 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1.8rem;
    font-weight: 400;
}

.game-experience {
    padding: 5rem 2rem;
    background: var(--cream);
}

.experience-title {
    text-align: center;
    margin-bottom: 3rem;
}

.experience-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    font-weight: 400;
}

.experience-title p {
    color: var(--rose-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

.game-display {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--charcoal);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.game-display iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

.benefits-section {
    background: var(--soft-black);
    padding: 5rem 2rem;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.benefit-card {
    padding: 3rem;
    border: 1px solid rgba(183, 110, 121, 0.2);
    text-align: center;
}

.benefit-card .b-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(250, 248, 245, 0.7);
    font-size: 0.95rem;
}

.story-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--soft-black);
}

.luxury-footer {
    background: var(--charcoal);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-label {
    color: var(--rose-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-resources a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-resources a:hover {
    color: var(--rose-gold);
}

.footer-legal {
    color: rgba(250, 248, 245, 0.4);
    font-size: 0.8rem;
}

.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-card {
    background: var(--cream);
    padding: 4rem;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
}

.age-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.age-card p {
    color: var(--soft-black);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.elegant-btn {
    font-family: 'Lato', sans-serif;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.elegant-btn.primary {
    background: var(--charcoal);
    color: var(--cream);
}

.elegant-btn.secondary {
    background: transparent;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
}

.elegant-btn:hover {
    background: var(--rose-gold);
    color: var(--cream);
    border-color: var(--rose-gold);
}

.hidden {
    display: none !important;
}

.page-intro {
    background: var(--charcoal);
    padding: 4rem 2rem;
    text-align: center;
}

.page-intro h1 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 2.5rem;
    font-weight: 400;
}

.document-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.document-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2.5rem 0 1rem;
}

.document-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--soft-black);
}

.document-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.document-content li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--soft-black);
}

.play-notice {
    background: var(--muted-pink);
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-left: 3px solid var(--rose-gold);
}

.play-notice h3 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .showcase-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-box {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .elegant-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal);
        padding: 1rem;
        display: none;
    }

    .elegant-nav.visible {
        display: block;
    }

    .elegant-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .showcase-text h1 {
        font-size: 2.2rem;
    }

    .game-display iframe {
        height: 400px;
    }

    .age-btns {
        flex-direction: column;
    }

    .age-card {
        padding: 2.5rem;
    }
}
