* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

header {
    background: linear-gradient(90deg, #1a1f3a 0%, #0f1323 100%);
    border-bottom: 2px solid #00ffcc;
    padding: 1.5rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    font-size: 2.5rem;
}

.brand-text {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle div {
    width: 28px;
    height: 3px;
    background: #00ffcc;
    transition: all 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 4px;
}

nav a:hover {
    color: #00ffcc;
    background: rgba(0, 255, 204, 0.1);
}

main {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    width: 100%;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00ffcc;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.page-title p {
    font-size: 1.3rem;
    color: #b0b0b0;
}

.alert-panel {
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.alert-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.alert-panel ul {
    list-style: none;
    padding: 0;
}

.alert-panel li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.alert-panel li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.info-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-block h2 {
    font-size: 2rem;
    color: #00ffcc;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.info-block p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #d0d0d0;
}

.game-section {
    background: #1a1f3a;
    border: 2px solid #00ffcc;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
}

.game-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #00ffcc;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.game-embed {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: none;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    background: #000;
}

footer {
    background: linear-gradient(90deg, #0f1323 0%, #1a1f3a 100%);
    border-top: 2px solid #00ffcc;
    padding: 2.5rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-resources a {
    color: #00ffcc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-resources a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
}

.footer-content p {
    color: #b0b0b0;
    font-size: 1rem;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1323 100%);
    border: 3px solid #00ffcc;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 50px rgba(0, 255, 204, 0.4);
}

.age-gate-box h2 {
    font-size: 2.5rem;
    color: #00ffcc;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.age-gate-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.age-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.age-btn:hover {
    transform: translateY(-2px);
}

.age-btn.confirm {
    background: #00ffcc;
    color: #0a0e27;
}

.age-btn.decline {
    background: #ff006e;
    color: #fff;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f1323;
        padding: 1.5rem;
        gap: 0;
        border-top: 2px solid #00ffcc;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        display: block;
        padding: 1rem;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .page-title p {
        font-size: 1.1rem;
    }

    .game-embed {
        height: 400px;
    }

    .age-gate-box {
        margin: 0 20px;
        padding: 2rem;
    }

    .age-btns {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
