@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;600&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --champagne: #f7f3e8;
    --black: #1a1a1a;
    --charcoal: #2d2d2d;
    --text-dark: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--champagne);
    color: var(--text-dark);
    line-height: 1.8;
}

.luxury-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
}

.mobile-nav-btn {
    display: none;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.luxury-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.luxury-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--champagne);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.luxury-nav a:hover {
    color: var(--gold);
}

.main-wrapper {
    padding-top: 75px;
}

.grand-intro {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.grand-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.grand-intro .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.intro-description {
    max-width: 700px;
    color: var(--champagne);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.luxury-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lux-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.8rem 1.8rem;
}

.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.area-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.area-heading span {
    color: var(--gold);
}

.game-showcase {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--black);
}

.game-showcase iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.feature-box {
    background: white;
    border: 1px solid var(--gold-light);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
}

.prose-section {
    background: white;
    border-left: 4px solid var(--gold);
    padding: 2.5rem 3rem;
    margin: 2.5rem 0;
}

.prose-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.prose-section p {
    color: #555;
    margin-bottom: 1rem;
    font-weight: 300;
}

.prose-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #555;
}

.prose-section li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.luxury-footer {
    background: var(--black);
    border-top: 2px solid var(--gold);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-copy {
    color: var(--champagne);
    font-size: 0.85rem;
    opacity: 0.7;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-card {
    background: var(--charcoal);
    border: 2px solid var(--gold);
    padding: 3.5rem;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
}

.age-card h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.age-card p {
    color: var(--champagne);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.age-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    font-family: 'Montserrat', sans-serif;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn.yes {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.age-btn.no {
    background: transparent;
    border: 1px solid var(--champagne);
    color: var(--champagne);
}

.age-btn:hover {
    transform: scale(1.05);
}

.hidden-el {
    display: none !important;
}

.page-top-area {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black), var(--charcoal));
}

.page-top-area h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 3px;
}

.document-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

.document-area h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 0.5rem;
}

.document-area p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.9;
    font-weight: 300;
}

.play-guidance {
    background: var(--gold-light);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.play-guidance strong {
    color: var(--black);
}

@media (max-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .mobile-nav-btn {
        display: block;
    }

    .luxury-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        display: none;
        border-bottom: 2px solid var(--gold);
    }

    .luxury-nav.active {
        display: flex;
    }

    .luxury-nav li {
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .grand-intro h1 {
        font-size: 2.5rem;
    }

    .grand-intro .tagline {
        font-size: 1.2rem;
    }

    .luxury-badges {
        flex-direction: column;
        align-items: center;
    }

    .age-btns {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
