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

body {
    font-family: 'Open Sans', sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
    min-height: 100vh;
}

.top-bar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    border-bottom: 3px solid #0f3460;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.top-bar-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #00ff88;
    font-size: 2rem;
    font-weight: 700;
}

.brand-icon {
    font-size: 2.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.navigation a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
}

.navigation a:hover {
    border-color: #00ff88;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.asymmetric-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
}

.left-column {
    position: sticky;
    top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.alert-block {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-left: 5px solid #00ff88;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.alert-block h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.alert-block ul {
    list-style: none;
}

.alert-block li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    font-size: 1.05rem;
}

.alert-block li:last-child {
    border-bottom: none;
}

.feature-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #0f3460;
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: #00ff88;
    transform: translateX(10px);
}

.feature-box h3 {
    color: #00ff88;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-box p {
    line-height: 1.7;
    color: #b0b0b0;
}

.game-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid #0f3460;
    margin: 3rem 0;
}

.game-section h2 {
    color: #00ff88;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.game-section iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.content-area {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #0f3460;
    margin: 3rem 0;
}

.content-area h1 {
    color: #00ff88;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.content-area h2 {
    color: #00ff88;
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
}

.content-area p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.content-area ul,
.content-area ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.content-area li {
    margin-bottom: 0.75rem;
}

.bottom-bar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 3px solid #0f3460;
}

.bottom-bar-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.footer-nav a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.copyright {
    color: #808080;
    font-size: 0.95rem;
}

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

.age-gate-panel {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    margin: 1rem;
    border: 3px solid #00ff88;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.age-gate-panel h2 {
    color: #00ff88;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.age-gate-panel p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.age-gate-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.age-gate-buttons button:hover {
    transform: scale(1.05);
}

.btn-verify {
    background: #00ff88;
    color: #0d0d0d;
    border-color: #00ff88;
}

.btn-exit {
    background: transparent;
    color: #ff4444;
    border-color: #ff4444;
}

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .left-column {
        position: static;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .navigation ul {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    }

    .navigation ul.active {
        left: 0;
    }

    .navigation li {
        margin: 1rem 0;
    }

    .game-section iframe {
        height: 450px;
    }

    .age-gate-panel {
        padding: 2rem;
    }
}
