@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: #c9a8a0;
    --gold: #d4a373;
    --cream: #fefae0;
    --dark: #3d3229;
    --charcoal: #2c2825;
    --muted: #8b7e74;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.8;
    min-height: 100vh;
}

.site-container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Elegant Header */
.site-header {
    background: var(--charcoal);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-mark {
    width: 45px;
    height: 45px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--rose);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--rose);
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    padding: 160px 40px 100px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #4a3f36 100%);
    text-align: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-banner h1 em {
    color: var(--rose);
    font-style: italic;
}

.hero-banner p {
    font-size: 1.2rem;
    color: var(--rose);
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.elegant-btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--rose);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.elegant-btn:hover {
    background: var(--gold);
}

/* Notice Strip */
.notice-strip {
    background: var(--cream);
    padding: 80px 40px;
}

.notice-flex {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.notice-item {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--rose);
    background: #fff;
}

.notice-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.notice-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.notice-symbol {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Game Showcase */
.game-showcase {
    padding: 100px 40px;
    background: var(--charcoal);
}

.showcase-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.game-container {
    background: #fff;
    padding: 25px;
    max-width: 100%;
}

.game-container iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

/* Features Section */
.features-area {
    padding: 100px 40px;
    background: #fff;
}

.features-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.features-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--charcoal);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.feature-card {
    padding: 0 20px;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 15px;
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--rose);
}

.feature-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* About Section */
.about-area {
    padding: 100px 40px;
    background: linear-gradient(to right, var(--rose) 50%, var(--cream) 50%);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-left {
    padding: 60px;
    color: var(--charcoal);
}

.about-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-left p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-right {
    padding: 60px;
}

.about-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.about-right ul {
    list-style: none;
}

.about-right li {
    padding: 15px 0;
    border-bottom: 1px solid var(--rose);
    color: var(--muted);
}

/* Footer */
.site-footer {
    background: var(--charcoal);
    padding: 70px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--rose);
}

.footer-base {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #4a3f36;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

/* Age Modal */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 40, 37, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-gate.hidden {
    display: none;
}

.age-dialog {
    background: var(--cream);
    padding: 60px;
    text-align: center;
    max-width: 500px;
}

.age-dialog h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.age-dialog p {
    color: var(--muted);
    margin-bottom: 30px;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-accept {
    background: #5a7247;
    color: #fff;
}

.btn-decline {
    background: #8b5a5a;
    color: #fff;
}

/* Page Templates */
.page-banner {
    padding: 160px 40px 80px;
    background: var(--charcoal);
    text-align: center;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 15px;
}

.page-banner p {
    color: var(--rose);
    font-size: 1.1rem;
}

.page-body {
    padding: 80px 40px;
    background: #fff;
}

.page-content {
    max-width: 850px;
    margin: 0 auto;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin: 45px 0 20px;
    color: var(--charcoal);
}

.page-content p {
    color: var(--muted);
    margin-bottom: 18px;
}

.page-content ul {
    color: var(--muted);
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
}

/* Play Page */
.play-section {
    padding: 130px 40px 80px;
    background: var(--charcoal);
}

.play-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.game-frame-elegant {
    background: #fff;
    padding: 20px;
    margin-bottom: 40px;
}

.game-frame-elegant iframe {
    width: 100%;
    height: 580px;
    border: none;
}

.play-notes {
    background: var(--cream);
    padding: 40px;
}

.play-notes h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.play-notes p {
    color: var(--muted);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-area {
        background: var(--cream);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-left {
        background: var(--rose);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--charcoal);
        padding: 30px 40px;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .notice-flex {
        flex-direction: column;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .age-dialog {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .game-container iframe,
    .game-frame-elegant iframe {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1.4rem;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .game-container iframe,
    .game-frame-elegant iframe {
        height: 350px;
    }
}
