* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941E;
    --cream: #F5F5DC;
    --navy: #1A2332;
    --light-gray: #E8E8E8;
    --text-dark: #2C3E50;
}

body {
    font-family: 'Playfair Display', serif;
    background: var(--cream);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: var(--navy);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    transition: transform 0.3s;
    z-index: 1000;
}

.brand {
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.brand-link {
    text-decoration: none;
    color: var(--gold);
}

.brand-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.sidebar-nav {
    padding: 2rem 0;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin: 0;
}

.sidebar-nav a {
    display: block;
    padding: 1.2rem 2rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
}

.sidebar-footer {
    padding: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: auto;
    font-size: 0.85rem;
    color: #999;
}

/* Mobile Menu Toggle */
.menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.5rem;
}

/* Main Content Area */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--gold);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.page-header .subtitle {
    font-size: 1.3rem;
    color: var(--dark-gold);
    font-style: italic;
}

.intro-section {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--gold);
}

.intro-section h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.intro-section p {
    line-height: 2;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.alert-box {
    background: linear-gradient(135deg, #FFF8DC, #FFEFD5);
    border: 3px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.alert-box h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.alert-box ul {
    list-style: none;
}

.alert-box li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.alert-box li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.3rem;
}

.game-section {
    background: white;
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-section h2 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    text-align: center;
}

.game-section p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-section iframe {
    width: 100%;
    height: 700px;
    border: 3px solid var(--gold);
    border-radius: 8px;
    display: block;
}

.content-block {
    background: white;
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-block h1 {
    color: var(--navy);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.content-block h2 {
    color: var(--dark-gold);
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.content-block p {
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.content-block ul,
.content-block ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.page-footer {
    background: var(--navy);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    margin-left: 280px;
}

.page-footer p {
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Age Verification Modal */
.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.verify-modal.active {
    display: flex;
}

.verify-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 550px;
    text-align: center;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.verify-box h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
}

.verify-box p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Playfair Display', serif;
}

.verify-btn.yes {
    background: var(--gold);
    color: var(--navy);
}

.verify-btn.yes:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.verify-btn.no {
    background: #666;
    color: white;
}

.verify-btn.no:hover {
    background: #444;
}

/* Responsive Design */
@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .menu-btn {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }
    
    .page-footer {
        margin-left: 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .intro-section {
        padding: 2rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .game-section iframe {
        height: 500px;
    }
    
    .verify-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .verify-buttons {
        flex-direction: column;
    }
}
