@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #f5f5dc;
    min-height: 100vh;
    display: flex;
    line-height: 1.7;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d1f0f 100%);
    border-right: 3px solid #d4af37;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.logo-section {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.logo-svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    display: block;
}

.sidebar nav {
    padding: 2rem 0;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav li {
    margin: 0;
}

.sidebar nav a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: #f5f5dc;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar nav a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-left-color: #d4af37;
    color: #d4af37;
}

.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: rgba(212, 175, 55, 0.9);
    padding: 10px;
    border-radius: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #0a0a0a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(90deg, #2d1f0f 0%, #1a1a1a 100%);
    padding: 2rem 3rem;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-title {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main {
    flex: 1;
    padding: 3rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1006 50%, #0a0a0a 100%);
}

.intro-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.15));
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.intro-banner h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-banner p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.alert-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    border-left-width: 6px;
}

.alert-box strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.content-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.content-card h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

.content-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.content-card ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.content-card li {
    margin: 0.7rem 0;
    font-size: 1.1rem;
}

.game-showcase {
    background: linear-gradient(135deg, #1a1006, #2d1f0f);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.game-showcase h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-showcase p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f5f5dc;
}

.game-embed {
    width: 100%;
    max-width: 900px;
    height: 650px;
    border: none;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 12px 45px rgba(212, 175, 55, 0.4);
}

footer {
    background: linear-gradient(90deg, #1a1a1a, #2d1f0f);
    padding: 2.5rem 3rem;
    border-top: 3px solid #d4af37;
    text-align: center;
    margin-top: auto;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-resources a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-resources a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verification.show {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #2d1f0f, #1a1a1a);
    padding: 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.4);
}

.verification-box h2 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.verification-box p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.verify-btn.confirm {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #0a0a0a;
}

.verify-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.verify-btn.decline {
    background: rgba(139, 0, 0, 0.8);
    color: #f5f5dc;
}

.verify-btn.decline:hover {
    background: rgba(139, 0, 0, 1);
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    header {
        padding: 2rem 1.5rem;
        padding-top: 5rem;
    }

    main {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .game-embed {
        height: 450px;
    }

    .verification-box {
        margin: 1rem;
        padding: 2.5rem;
    }

    .verification-buttons {
        flex-direction: column;
    }
}
