* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #0a3d2e;
    color: #e8f5e9;
    line-height: 1.8;
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1b5e42 0%, #0a3d2e 100%);
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.3s;
}

.sidebar-header {
    padding: 0 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.logo-graphic {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #69f0ae;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-nav {
    padding: 0 1rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.8rem;
}

.sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #e8f5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 10px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar-nav a:hover {
    background: rgba(105, 240, 174, 0.15);
    border-left-color: #69f0ae;
    transform: translateX(5px);
}

.burger-icon {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1001;
    background: #1b5e42;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.burger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #69f0ae;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.main-container {
    flex: 1;
    margin-left: 280px;
    padding: 3rem;
    background: radial-gradient(circle at top right, #0f5940, #0a3d2e);
}

.page-header {
    background: linear-gradient(135deg, #1b5e42, #0f5940);
    padding: 4rem 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid #2e7d5e;
}

.page-header h1 {
    font-size: 3.2rem;
    color: #69f0ae;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    line-height: 1.9;
    max-width: 900px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-box {
    background: rgba(27, 94, 66, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2e7d5e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.content-box:hover {
    background: rgba(27, 94, 66, 0.8);
    transform: translateY(-3px);
}

.content-box h2 {
    font-size: 1.7rem;
    color: #69f0ae;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-box p {
    font-size: 1rem;
    line-height: 1.8;
}

.warning-panel {
    background: rgba(105, 240, 174, 0.1);
    border: 2px solid #69f0ae;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-panel h3 {
    font-size: 1.6rem;
    color: #69f0ae;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warning-panel ul {
    list-style-position: inside;
}

.warning-panel li {
    margin: 0.7rem 0;
    font-size: 1.05rem;
}

.game-section {
    background: rgba(10, 61, 46, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 2px solid #2e7d5e;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.game-section h2 {
    font-size: 2.2rem;
    color: #69f0ae;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.game-iframe {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.page-footer {
    background: #0a3d2e;
    padding: 2.5rem;
    margin-top: 3rem;
    border-top: 3px solid #2e7d5e;
    border-radius: 15px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #69f0ae;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #e8f5e9;
    text-decoration: underline;
}

.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-card {
    background: linear-gradient(135deg, #1b5e42, #0a3d2e);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #69f0ae;
    box-shadow: 0 20px 60px rgba(105, 240, 174, 0.3);
}

.age-gate-card h2 {
    font-size: 2.6rem;
    color: #69f0ae;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.age-gate-card p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-buttons-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-action-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.accept-age {
    background: #69f0ae;
    color: #0a3d2e;
}

.accept-age:hover {
    background: #4caf50;
    transform: scale(1.06);
}

.decline-age {
    background: #d32f2f;
    color: #fff;
}

.decline-age:hover {
    background: #f44336;
    transform: scale(1.06);
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .burger-icon {
        display: block;
    }
    
    .main-container {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.3rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .game-iframe {
        height: 500px;
    }
}
