@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0d1b0d;
    color: #d4d4d4;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a2f1a 0%, #0d1b0d 100%);
    border-right: 4px solid #c9a961;
    padding: 30px 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-header {
    text-align: center;
    padding: 0 20px 30px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c9a961;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #8a9a8a;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.sidebar nav {
    padding: 30px 0;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav a {
    display: block;
    padding: 15px 30px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar nav a:hover {
    background: rgba(201, 169, 97, 0.1);
    color: #c9a961;
    border-left-color: #c9a961;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #1a2f1a;
    border: 2px solid #c9a961;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #c9a961;
    margin: 5px 0;
}

/* Main Content Area */
.main-wrapper {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #c9a961;
    margin-bottom: 25px;
    text-shadow: 0 2px 15px rgba(201, 169, 97, 0.3);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #b89e5e;
    margin: 40px 0 20px;
    text-shadow: 0 2px 10px rgba(184, 158, 94, 0.3);
}

h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #a89558;
    margin: 30px 0 15px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 47, 26, 0.6), rgba(13, 27, 13, 0.8));
    padding: 60px 40px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: #c0c0c0;
}

/* Alert Box */
.alert-box {
    background: rgba(139, 0, 0, 0.15);
    border: 2px solid #8b0000;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.alert-box h2 {
    color: #ff6b6b;
    margin-top: 0;
}

.alert-box p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffb3b3;
    margin: 8px 0;
}

/* Grid Sections */
.grid-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.grid-item {
    background: rgba(26, 47, 26, 0.4);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.grid-item:hover {
    border-color: #c9a961;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
    transform: translateY(-3px);
}

.grid-item h3 {
    margin-top: 0;
}

/* Game Section */
.game-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    border: 2px solid rgba(201, 169, 97, 0.3);
    text-align: center;
}

.game-wrapper iframe {
    width: 100%;
    max-width: 950px;
    height: 650px;
    border: 3px solid #c9a961;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

/* Content Sections */
.content-section {
    background: rgba(26, 47, 26, 0.3);
    padding: 35px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: #0a150a;
    padding: 40px 50px;
    border-top: 3px solid #c9a961;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #ddc080;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

footer p {
    color: #8a9a8a;
    font-size: 0.95rem;
}

/* Age Verification Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #1a2f1a, #0d1b0d);
    padding: 50px 60px;
    border-radius: 12px;
    border: 3px solid #c9a961;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
}

.modal-box h2 {
    font-family: 'Cinzel', serif;
    margin-top: 0;
    color: #c9a961;
}

.modal-box p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.modal-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.modal-btn {
    padding: 15px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-accept {
    background: #c9a961;
    color: #0d1b0d;
}

.btn-accept:hover {
    background: #ddc080;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.btn-decline {
    background: #4a4a4a;
    color: #d4d4d4;
}

.btn-decline:hover {
    background: #5a5a5a;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }

    .main-wrapper {
        margin-left: 0;
    }

    main {
        padding: 80px 25px 30px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .grid-section {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe {
        height: 450px;
    }

    .modal-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }
}
