@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #090d14;
    color: #b8c4d4;
    line-height: 1.7;
    font-size: 17px;
}

a {
    color: #38bdf8;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #7dd3fc;
}

.top-header {
    background: #0c1220;
    border-bottom: 3px solid #1e3a5f;
    padding: 0.8rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 900;
}

.top-header-wrap {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-block svg {
    width: 50px;
    height: 50px;
}

.brand-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.mobile-menu-trigger {
    display: none;
    background: #1e3a5f;
    border: 2px solid #38bdf8;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.mobile-menu-trigger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #38bdf8;
    margin: 5px 0;
}

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

.main-navigation a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b8c4d4;
    border: 2px solid transparent;
}

.main-navigation a:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}

.page-wrapper {
    padding-top: 80px;
}

.hero-block {
    background: linear-gradient(180deg, #0c1220 0%, #090d14 100%);
    padding: 5rem 2rem;
    border-bottom: 3px solid #1e3a5f;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-block h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
}

.hero-block p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.alert-boxes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.alert-box {
    background: #0c1220;
    border: 2px solid #1e3a5f;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gaming-zone {
    padding: 4rem 2rem;
    background: #0a0f18;
}

.gaming-zone h2 {
    text-align: center;
    font-size: 1.6rem;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.game-box {
    max-width: 1400px;
    margin: 0 auto;
    background: #0c1220;
    border: 3px solid #1e3a5f;
    padding: 0.5rem;
}

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

.info-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-block {
    background: #0c1220;
    border: 2px solid #1e3a5f;
    padding: 2rem;
}

.info-block h3 {
    color: #38bdf8;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1e3a5f;
}

.info-block p {
    font-weight: 400;
}

.content-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-page h1 {
    font-size: 2.4rem;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid #1e3a5f;
}

.content-page h2 {
    font-size: 1.2rem;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2rem 0 1rem;
}

.content-page p {
    margin-bottom: 1rem;
}

.content-page ul, .content-page ol {
    margin: 1rem 0 1.5rem 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.site-footer {
    background: #060910;
    border-top: 3px solid #1e3a5f;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h4 {
    color: #38bdf8;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

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

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(9, 13, 20, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-box {
    background: #0c1220;
    border: 3px solid #38bdf8;
    padding: 3rem;
    max-width: 440px;
    text-align: center;
}

.age-gate-box h2 {
    color: #38bdf8;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.age-gate-box p {
    margin-bottom: 2rem;
}

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

.gate-btn {
    padding: 1rem 2rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid #38bdf8;
}

.gate-btn.primary {
    background: #38bdf8;
    color: #090d14;
}

.gate-btn.primary:hover {
    background: #7dd3fc;
}

.gate-btn.secondary {
    background: transparent;
    color: #38bdf8;
}

.gate-btn.secondary:hover {
    background: rgba(56, 189, 248, 0.15);
}

.access-denied h2 {
    color: #f87171;
}

@media (max-width: 900px) {
    .info-blocks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-trigger {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0c1220;
        border-bottom: 3px solid #1e3a5f;
        display: none;
        padding: 1rem;
    }

    .main-navigation.show {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation a {
        text-align: center;
        border: none;
        border-bottom: 1px solid #1e3a5f;
    }

    .hero-block h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .game-box iframe {
        height: 400px;
    }

    .alert-boxes {
        flex-direction: column;
        align-items: center;
    }

    .brand-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}
