@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-deep: #0c1929;
    --ocean-mid: #15294a;
    --cyan-glow: #22d3ee;
    --teal: #14b8a6;
    --pearl: #f1f5f9;
    --silver: #94a3b8;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--ocean-deep);
    color: var(--pearl);
    min-height: 100vh;
    line-height: 1.7;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--ocean-deep) 0%, rgba(12, 25, 41, 0.95) 100%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.nav-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cyan-glow);
    text-decoration: none;
    letter-spacing: 2px;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--cyan-glow);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu a {
    color: var(--pearl);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
    position: relative;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cyan-glow);
    transition: 0.3s;
    transform: translateX(-50%);
}

.menu a:hover {
    color: var(--cyan-glow);
}

.menu a:hover::before {
    width: 100%;
}

.content-wrapper {
    padding-top: 80px;
}

.landing {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    background: 
        radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
}

.landing-inner {
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
}

.landing h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.landing h1 .highlight {
    background: linear-gradient(90deg, var(--cyan-glow), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-intro {
    font-size: 1.15rem;
    color: var(--silver);
    max-width: 750px;
    margin-bottom: 2.5rem;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.pill {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: var(--cyan-glow);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}

.game-box {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--ocean-mid);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.game-inner {
    position: relative;
    padding-top: 56.25%;
}

.game-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blocks {
    padding: 6rem 2rem;
    max-width: 1700px;
    margin: 0 auto;
}

.blocks-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--teal);
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.block {
    background: var(--ocean-mid);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
}

.block h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    color: var(--cyan-glow);
    margin-bottom: 1rem;
}

.block p {
    color: var(--silver);
}

.article {
    max-width: 950px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.article h1 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--cyan-glow);
}

.article h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: var(--teal);
}

.article p {
    margin-bottom: 1.2rem;
    color: var(--silver);
}

.article ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--silver);
}

.article li {
    margin-bottom: 0.5rem;
}

.tip-box {
    background: var(--ocean-mid);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--cyan-glow);
}

.site-footer {
    background: var(--ocean-mid);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
}

.footer-inner {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.support-links a {
    color: var(--cyan-glow);
    text-decoration: none;
    font-weight: 600;
}

.support-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: var(--silver);
    font-size: 0.9rem;
}

.gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 25, 41, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-box {
    background: var(--ocean-mid);
    padding: 3rem;
    border-radius: 24px;
    max-width: 520px;
    margin: 1rem;
    text-align: center;
    border: 1px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 80px rgba(34, 211, 238, 0.15);
}

.gate-box h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    color: var(--cyan-glow);
    margin-bottom: 1.5rem;
}

.gate-box p {
    color: var(--silver);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.gate-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-gate {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-accept {
    background: linear-gradient(135deg, var(--cyan-glow), var(--teal));
    color: var(--ocean-deep);
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

.btn-decline {
    background: transparent;
    color: var(--pearl);
    border: 2px solid var(--silver);
}

.btn-decline:hover {
    border-color: var(--pearl);
}

@media (max-width: 800px) {
    .burger {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(12, 25, 41, 0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(34, 211, 238, 0.15);
    }

    .menu.open {
        display: flex;
    }

    .menu li {
        border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    }

    .menu a {
        display: block;
        padding: 1rem 0;
    }

    .menu a::before {
        display: none;
    }

    .landing h1 {
        font-size: 2rem;
    }

    .pills {
        flex-direction: column;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .article h1 {
        font-size: 1.8rem;
    }
}
