* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --cream: #f5f0e8;
    --dark-bg: #1a1510;
    --darker-bg: #0f0a06;
    --text-light: #ffffff;
    --text-cream: #e8dcc8;
    --border-gold: #c9a335;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    color: var(--text-cream);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    border-right: 2px solid var(--gold);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 4px 0 20px rgba(212, 175, 55, 0.15);
}

.sidebar-header {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
}

.sidebar-logo {
    text-align: center;
}

.sidebar-logo h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.sidebar-close {
    display: none;
    position: absolute;
    top: 0;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
    padding: 2rem 0;
    flex: 1;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
}

/* Main Wrapper */
.main-wrapper {
    margin-left: 280px;
    min-height: 100vh;
}

/* Top Header */
.top-header {
    display: none;
    background: var(--dark-bg);
    border-bottom: 2px solid var(--gold);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger-btn span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header-logo-small {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

/* Content Area */
.content-area {
    min-height: calc(100vh - 200px);
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-gold);
}

.hero-overlay h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-cream);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-pill {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.decorative-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--text-cream);
}

/* Features Showcase */
.features-showcase {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.showcase-card {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.showcase-card h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.showcase-card p {
    color: var(--text-cream);
    line-height: 1.8;
}

/* Game Feature Section */
.game-feature-section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-cream);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-embed-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.game-frame-container {
    background: var(--darker-bg);
    border: 3px solid var(--gold);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-info-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.value-item {
    position: relative;
    padding-top: 60px;
}

.value-number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.2);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-cream);
    line-height: 1.8;
}

/* Important Info Section */
.important-info-section {
    padding: 80px 0;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    border-radius: 10px;
    padding: 2rem;
    border: 2px solid;
}

.warning-box {
    background: rgba(255, 100, 100, 0.1);
    border-color: #ff6464;
}

.recreational-box {
    background: rgba(100, 150, 255, 0.1);
    border-color: #6496ff;
}

.age-box {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.info-box p {
    color: var(--text-cream);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-cream);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--darker-bg);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--gold);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-cream);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    color: var(--text-cream);
    font-size: 0.9rem;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.age-modal-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-cream);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-btn {
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--darker-bg);
}

.yes-btn:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

.no-btn {
    background: transparent;
    border-color: #ff6464;
    color: #ff6464;
}

.no-btn:hover {
    background: rgba(255, 100, 100, 0.1);
    transform: scale(1.05);
}

/* Play Page */
.page-title-section {
    padding: 80px 0 60px;
    text-align: center;
}

.page-title-section h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-cream);
    font-style: italic;
}

.play-game-section {
    padding: 40px 0;
}

.gameplay-info-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.info-columns-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-column h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-column p {
    color: var(--text-cream);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.reminder-section {
    padding: 40px 0;
}

.reminder-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reminder-card h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reminder-card p {
    color: var(--text-cream);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Pages */
.legal-title-section {
    padding: 80px 0 60px;
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid var(--border-gold);
}

.legal-title-section h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--text-cream);
    font-size: 1rem;
}

.legal-content-section {
    padding: 60px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-text p {
    color: var(--text-cream);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    color: var(--text-cream);
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.disclaimer-alert {
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid #ff6464;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-alert h2 {
    color: #ff6464;
    margin-top: 0;
}

.disclaimer-summary {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.disclaimer-summary h3 {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 968px) {
    .sidebar-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar-nav.active {
        transform: translateX(0);
    }

    .sidebar-close {
        display: block;
    }

    .main-wrapper {
        margin-left: 0;
    }

    .top-header {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .game-iframe {
        height: 400px;
    }

    .page-title-section h1 {
        font-size: 2.5rem;
    }

    .legal-title-section h1 {
        font-size: 2.2rem;
    }

    .age-modal-content {
        margin: 20px;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
