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

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

:root {
    --abyss: #0A1628;
    --deep-sea: #0F2847;
    --ice: #22D3EE;
    --frost: #67E8F9;
    --glacier: #A5F3FC;
    --snow: #ECFEFF;
    --warning: #F59E0B;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, var(--abyss) 0%, var(--deep-sea) 50%, var(--abyss) 100%);
    color: var(--snow);
    line-height: 1.75;
    min-height: 100vh;
}

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
}

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

.site-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ice);
    text-decoration: none;
    letter-spacing: 4px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-menu a {
    color: var(--glacier);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--ice);
}

.mobile-nav-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--ice);
    margin: 6px 0;
}

.body-content {
    padding-top: 85px;
}

.frozen-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.frozen-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    color: var(--snow);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text h1 .highlight {
    color: var(--ice);
}

.hero-text .intro {
    font-size: 1.15rem;
    color: var(--glacier);
    margin-bottom: 2rem;
    font-weight: 300;
}

.frost-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--ice) 0%, var(--frost) 100%);
    color: var(--abyss);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.frost-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.3);
}

.hero-game-box {
    background: rgba(15, 40, 71, 0.7);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-game-frame {
    width: 100%;
    height: 520px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.info-strip {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: rgba(15, 40, 71, 0.6);
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.info-item .marker {
    font-size: 1.4rem;
}

.features-area {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-area h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    text-align: center;
    color: var(--ice);
    margin-bottom: 3rem;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-block {
    background: rgba(15, 40, 71, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(34, 211, 238, 0.15);
    transition: all 0.3s;
}

.feature-block:hover {
    border-color: var(--ice);
    transform: translateY(-5px);
}

.feature-block h3 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--frost);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.feature-block p {
    color: var(--glacier);
    font-size: 0.9rem;
}

.about-strip {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(15, 40, 71, 0.4) 0%, transparent 100%);
}

.about-boxes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-box {
    background: rgba(10, 22, 40, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border-left: 3px solid var(--ice);
}

.about-box h3 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--frost);
    margin-bottom: 1rem;
}

.about-box p {
    color: var(--glacier);
}

.site-footer {
    background: #050D18;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

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

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

.footer-links a {
    color: var(--glacier);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--ice);
}

.support-block {
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
}

.support-block p {
    color: rgba(165, 243, 252, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.support-block a {
    color: var(--warning);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.85rem;
}

.copy-text {
    margin-top: 2rem;
    color: rgba(165, 243, 252, 0.3);
    font-size: 0.8rem;
}

.gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 13, 24, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.gate-overlay.dismissed {
    display: none;
}

.gate-box {
    background: linear-gradient(145deg, var(--deep-sea) 0%, var(--abyss) 100%);
    border: 2px solid var(--ice);
    border-radius: 12px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    margin: 1rem;
}

.gate-box h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--ice);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gate-box p {
    color: var(--glacier);
    margin-bottom: 2rem;
}

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

.gate-btn {
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.gate-btn.allow {
    background: linear-gradient(135deg, var(--ice) 0%, var(--frost) 100%);
    color: var(--abyss);
}

.gate-btn.deny {
    background: transparent;
    border: 2px solid var(--glacier);
    color: var(--glacier);
}

.gate-btn:hover {
    transform: scale(1.05);
}

.page-header {
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--abyss) 100%);
    padding: 7rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    color: var(--ice);
}

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

.text-block {
    background: rgba(15, 40, 71, 0.4);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
}

.text-block h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--frost);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.text-block p {
    color: var(--glacier);
    margin-bottom: 1rem;
}

.text-block ul {
    color: var(--glacier);
    margin-left: 1.5rem;
}

.text-block li {
    margin-bottom: 0.5rem;
}

.game-page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.game-page-frame {
    background: rgba(15, 40, 71, 0.7);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.game-page-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    background: #000;
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-game-box {
        order: -1;
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .main-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .main-menu.open {
        transform: translateX(0);
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .hero-game-frame {
        height: 360px;
    }

    .info-strip {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .about-boxes {
        grid-template-columns: 1fr;
    }

    .gate-btns {
        flex-direction: column;
    }

    .game-page-frame iframe {
        height: 380px;
    }
}
