@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Nunito:wght@300;400;700&display=swap');

:root {
    --forest-green: #1a4d2e;
    --light-green: #4f9960;
    --gold: #f4a831;
    --dark-bg: #0f2818;
    --cream-text: #f8f4e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom, var(--dark-bg), var(--forest-green));
    color: var(--cream-text);
    min-height: 100vh;
    line-height: 1.7;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: linear-gradient(to bottom, var(--dark-bg), #0a1a0f);
    border-right: 3px solid var(--gold);
    z-index: 100;
    transition: left 0.3s;
    overflow-y: auto;
}

.sidebar-content {
    padding: 2rem 1.5rem;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    font-family: 'Rajdhani', sans-serif;
    display: block;
    padding: 1rem;
    color: var(--cream-text);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    background: rgba(244, 168, 49, 0.1);
    border-left-color: var(--gold);
    padding-left: 1.5rem;
}

.hamburger {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: var(--dark-bg);
    padding: 10px;
    border-radius: 5px;
    border: 2px solid var(--gold);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}

/* Main Content Area */
.main-content {
    margin-left: 250px;
    padding: 3rem;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.7), rgba(79, 153, 96, 0.5));
    border-radius: 20px;
    border: 2px solid var(--light-green);
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Info Sections */
.info-section {
    background: rgba(15, 40, 24, 0.6);
    border: 2px solid var(--forest-green);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.info-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: var(--light-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Notice Panel */
.notice-panel {
    background: linear-gradient(135deg, rgba(244, 168, 49, 0.2), rgba(79, 153, 96, 0.2));
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.notice-panel h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.notice-items {
    list-style: none;
}

.notice-items li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(244, 168, 49, 0.2);
}

.notice-items li:last-child {
    border-bottom: none;
}

.notice-items li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Grid Layout */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: rgba(26, 77, 46, 0.4);
    border: 2px solid var(--light-green);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(244, 168, 49, 0.3);
}

.feature-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Game Display */
.game-display {
    margin: 3rem 0;
    text-align: center;
}

.game-display h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.game-wrapper {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--light-green);
    display: inline-block;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    margin-left: 250px;
    background: var(--dark-bg);
    padding: 3rem;
    border-top: 3px solid var(--gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, var(--forest-green), var(--dark-bg));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(244, 168, 49, 0.5);
    margin: 1rem;
}

.age-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.age-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn {
    font-family: 'Rajdhani', sans-serif;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-yes {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(244, 168, 49, 0.5);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(244, 168, 49, 0.7);
}

.btn-no {
    background: transparent;
    color: var(--cream-text);
    border: 2px solid var(--cream-text);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* Legal Pages */
.legal-content {
    background: rgba(15, 40, 24, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--forest-green);
    line-height: 1.9;
}

.legal-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.legal-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--light-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sidebar {
        left: -250px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding: 2rem 1rem;
    }
    
    footer {
        margin-left: 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
