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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: #1a1a1a;
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    border-right: 2px solid #2a2a2a;
    z-index: 100;
}

.logo {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 1rem;
    overflow-wrap: break-word;
    word-break: normal;
}

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

.sidebar-nav li {
    margin: 0.5rem 0;
}

.sidebar-nav a {
    display: block;
    padding: 1rem 2rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #ff6b6b;
    background: #252525;
    border-left-color: #ff6b6b;
}

.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: none;
    background: #1a1a1a;
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #2a2a2a;
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 300;
}

.hero-section p {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 700px;
}

.warning-box {
    background: #2a1f1f;
    border-left: 5px solid #ff6b6b;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.warning-box h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.warning-box ul {
    list-style: none;
    padding-left: 0;
}

.warning-box li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #d0d0d0;
}

.warning-box li:before {
    content: "🔴";
    position: absolute;
    left: 0;
}

.game-section {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid #333;
}

.game-section h2 {
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 400;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #333;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
    background: #000;
}

.content-block {
    background: #151515;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #2a2a2a;
}

.content-block h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 400;
}

.content-block p {
    color: #c0c0c0;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.content-block h3 {
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 500;
}

footer {
    background: #0f0f0f;
    padding: 3rem;
    margin-top: auto;
    margin-left: 250px;
    border-top: 2px solid #2a2a2a;
    text-align: center;
    width: calc(100% - 250px);
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-popup {
    background: #1a1a1a;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 2px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.age-popup h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 400;
}

.age-popup p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #b0b0b0;
}

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

.age-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-yes {
    background: #4caf50;
    color: white;
}

.age-btn-yes:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.age-btn-no {
    background: #f44336;
    color: white;
}

.age-btn-no:hover {
    background: #da190b;
    transform: translateY(-2px);
}

.hidden {
    display: none !important;
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
}

.sidebar-backdrop.active {
    display: block;
}

@media (max-width: 968px) {
    body {
        display: block;
    }

    .sidebar {
        left: -250px;
        transition: left 0.3s;
        z-index: 2000;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hero-section {
        padding: 2.5rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .game-frame iframe {
        height: 550px;
    }

    footer {
        margin-left: 0;
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
