* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #1a1510;
    color: #e8ddc7;
    display: flex;
    min-height: 100vh;
    line-height: 1.7;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #2d1f14 0%, #1a1510 100%);
    border-right: 3px solid #8b6f47;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 2px solid #8b6f47;
    background: rgba(139, 111, 71, 0.1);
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.sidebar-nav {
    flex: 1;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    color: #e8ddc7;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(139, 111, 71, 0.2);
    border-left-color: #d4af37;
    color: #d4af37;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid #8b6f47;
    text-align: center;
    background: rgba(139, 111, 71, 0.1);
}

.sidebar-footer p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: #d4af37;
}

.mobile-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    background: #2d1f14;
    border: 2px solid #8b6f47;
    padding: 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    display: block;
    transition: 0.3s;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
    width: 100%;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid #8b6f47;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.3rem;
    color: #c9b896;
}

.alert-banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.alert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(45, 31, 20, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
}

.alert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.alert-text h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.intro-section,
.responsibility-banner {
    background: rgba(45, 31, 20, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid #8b6f47;
}

.intro-section h2,
.responsibility-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.intro-section p,
.responsibility-banner p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.game-showcase {
    margin: 4rem 0;
}

.game-showcase h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
}

.game-embed {
    background: #0d0a07;
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid #8b6f47;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

.game-disclaimer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #d4af37;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: rgba(45, 31, 20, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #8b6f47;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.play-area {
    margin: 2rem 0;
}

.game-window {
    background: #0d0a07;
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid #8b6f47;
}

.game-iframe-large {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
}

.instructions-grid {
    margin: 4rem 0;
}

.instructions-grid h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
}

.instruction-box {
    background: rgba(45, 31, 20, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    margin-bottom: 1.5rem;
}

.instruction-box h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.gameplay-tips {
    background: rgba(45, 31, 20, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid #8b6f47;
}

.gameplay-tips h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    padding: 1rem;
    background: rgba(139, 111, 71, 0.15);
    border-radius: 8px;
    font-size: 1.05rem;
}

.document-container {
    background: rgba(45, 31, 20, 0.4);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #8b6f47;
    margin: 2rem 0;
}

.document-container h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.document-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.document-container p {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.document-container ul {
    margin: 1rem 0 1rem 2.5rem;
    line-height: 1.9;
}

.doc-date {
    font-style: italic;
    color: #c9b896;
    margin-bottom: 2rem;
}

.main-footer {
    margin-top: 4rem;
    padding: 3rem 0 1rem;
    border-top: 3px solid #8b6f47;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 0.5rem 0;
}

.footer-col a {
    color: #e8ddc7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #8b6f47;
    color: #c9b896;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.age-gate.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-gate-inner {
    background: linear-gradient(135deg, #2d1f14 0%, #1a1510 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-inner h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.age-gate-inner p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.gate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.gate-actions button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-enter {
    background: #d4af37;
    color: #1a1510;
}

.btn-enter:hover {
    background: #c29d2e;
    transform: scale(1.05);
}

.btn-decline {
    background: rgba(139, 111, 71, 0.3);
    color: #e8ddc7;
    border: 2px solid #8b6f47;
}

.btn-decline:hover {
    background: rgba(139, 111, 71, 0.5);
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .game-iframe {
        height: 500px;
    }

    .game-iframe-large {
        height: 550px;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .gate-actions {
        flex-direction: column;
    }

    .age-gate-inner {
        margin: 1rem;
        padding: 2rem;
    }

    .document-container {
        padding: 1.5rem;
    }
}
