@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F9F6F0;
    --sage: #8B9D83;
    --burgundy: #6B2737;
    --charcoal: #3A3633;
    --gold-accent: #C9A961;
    --soft-white: #FEFEFE;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
}

/* Header */
header {
    background: var(--soft-white);
    border-bottom: 1px solid #E8E4DD;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--burgundy);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--gold-accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: var(--burgundy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--burgundy);
    transition: 0.3s;
}

/* Split Layout Container */
.split-container {
    display: flex;
    min-height: calc(100vh - 100px);
    max-width: 1600px;
    margin: 0 auto;
}

.split-left {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--soft-white);
}

.split-right {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--cream);
}

/* Full Width Layout (for some pages) */
.full-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--burgundy);
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--sage);
    margin: 2rem 0 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--charcoal);
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

ul li {
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

/* Notice Panels */
.notice-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-panel {
    background: var(--cream);
    border-left: 4px solid var(--burgundy);
    padding: 2rem;
    border-radius: 0 8px 8px 0;
}

.notice-panel h3 {
    font-size: 1.3rem;
    margin: 0 0 0.8rem 0;
    color: var(--burgundy);
}

.notice-panel p {
    margin: 0;
    color: var(--charcoal);
}

/* Game Container */
.game-wrapper {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.game-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: 1px solid #E8E4DD;
    border-radius: 4px;
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
}

.elegant-box {
    background: var(--soft-white);
    border: 1px solid #E8E4DD;
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 3rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 54, 51, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: var(--soft-white);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 20px;
    border: 2px solid var(--burgundy);
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 3rem;
    border: 2px solid var(--burgundy);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-yes {
    background: var(--burgundy);
    color: var(--soft-white);
}

.btn-yes:hover {
    background: #8B3449;
}

.btn-no {
    background: transparent;
    color: var(--charcoal);
}

.btn-no:hover {
    background: var(--cream);
}

/* Mobile Styles */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--soft-white);
        transition: right 0.3s;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .split-container {
        flex-direction: column;
    }
    
    .split-left, .split-right {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .header-container, .full-container {
        padding: 1.5rem;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-modal-content {
        padding: 2.5rem;
    }
}
