@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #1a1a2e;
    color: #eee;
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
}

.sidebar-header {
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    display: block;
    text-align: center;
}

.sidebar-logo span {
    display: block;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #ccc;
    margin-top: 5px;
    letter-spacing: 2px;
}

.sidebar nav {
    padding: 20px 0;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li {
    margin-bottom: 5px;
}

.sidebar nav ul li a {
    display: block;
    padding: 18px 30px;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar nav ul li a:hover,
.sidebar nav ul li a.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-left-color: #d4af37;
}

.sidebar-footer {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.sidebar-footer h4 {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.sidebar-footer a {
    display: block;
    color: #999;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.sidebar-footer a:hover {
    color: #d4af37;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #d4af37;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 3px;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 60px 40px;
    max-width: calc(100% - 280px);
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #bbb;
    line-height: 1.6;
}

/* Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-box {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
}

.info-box p {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.info-box ul {
    list-style: none;
    margin-top: 15px;
}

.info-box ul li {
    color: #ccc;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.info-box ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.game-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
}

.game-frame {
    width: 100%;
    max-width: 1000px;
    height: 650px;
    border: none;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    background: #000;
}

/* Content Sections */
.content-block {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 45px;
    border-radius: 15px;
    margin-bottom: 35px;
    border-left: 5px solid #d4af37;
}

.content-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 25px;
}

.content-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #d4af37;
    margin: 30px 0 15px;
}

.content-block p {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.content-block ul {
    margin-left: 30px;
    margin-bottom: 18px;
}

.content-block ul li {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-block strong {
    color: #d4af37;
}

/* 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: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #d4af37;
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 38px;
    margin-bottom: 25px;
}

.age-modal-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ccc;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.age-btn-yes {
    background: #d4af37;
    color: #1a1a2e;
}

.age-btn-yes:hover {
    background: #f0c850;
    transform: scale(1.05);
}

.age-btn-no {
    background: #444;
    color: #ccc;
}

.age-btn-no:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        max-width: 100%;
        padding: 80px 20px 40px;
    }

    .page-header h1 {
        font-size: 38px;
    }

    .game-section {
        padding: 30px 20px;
    }

    .game-frame {
        height: 500px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .age-modal-content {
        padding: 40px 25px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
