/* Trimmed stylesheet for the current HTML structure. */

:root {
    color-scheme: dark;
    --bg-top: #190626;
    --bg-mid: #2b0b3f;
    --bg-bottom: #07040d;
    --surface: rgba(18, 12, 28, 0.78);
    --surface-strong: rgba(12, 9, 20, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.11);
    --text: #fff5f6;
    --muted: rgba(255, 245, 246, 0.74);
    --muted-strong: rgba(255, 245, 246, 0.9);
    --pink: #ff4fa6;
    --orange: #ffaf63;
    --cyan: #6ddbf6;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    line-height: 1.5;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 175, 99, 0.24), transparent 26%),
        radial-gradient(circle at 15% 22%, rgba(255, 79, 166, 0.18), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(109, 219, 246, 0.12), transparent 18%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 46%, var(--bg-bottom) 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 78%);
    pointer-events: none;
    opacity: 0.32;
}

.page {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 20px 40px;
}

.ads-left {
    width: 160px;
    height: max(600px, 80dvh);
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.ads-right {
    width: 160px;
    height: max(600px, 80dvh);
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: var(--surface-strong);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    z-index: 10;
}

.scene {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.34;
}

.ambient-left {
    left: -10vw;
    top: 18vh;
    width: 28vw;
    height: 28vw;
    background: rgba(255, 79, 166, 0.75);
    animation: floatLeft 12s ease-in-out infinite alternate;
}

.ambient-right {
    right: -8vw;
    top: 24vh;
    width: 26vw;
    height: 26vw;
    background: rgba(109, 219, 246, 0.6);
    animation: floatRight 14s ease-in-out infinite alternate;
}

.ambient-top {
    left: 50%;
    top: -8vh;
    width: min(48vw, 580px);
    height: min(48vw, 580px);
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 175, 99, 0.9) 0%, rgba(255, 79, 166, 0.35) 55%, transparent 70%);
    filter: blur(70px);
    opacity: 0.3;
}

.hero-copy {
    padding: 16px 0 22px;
    animation: fadeUp 650ms ease-out both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 12px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-strong);
}

.display-title {
    margin: 0;
    display: grid;
    line-height: 0.9;
}

.title-top,
.title-bottom {
    font-family: "Barlow Condensed", Impact, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.title-top {
    font-size: clamp(88px, 18vw, 210px);
    font-weight: 800;
    color: var(--orange);
    text-shadow: 0 8px 40px rgba(255, 79, 166, 0.16);
    animation: fadeUp 700ms ease-out both;
}

.title-bottom {
    margin-top: -0.02em;
    font-size: clamp(56px, 10vw, 126px);
    font-weight: 700;
    color: var(--text);
    animation: fadeUp 820ms ease-out both;
}

.intro-text {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 19px);
}

.panel {
    position: relative;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    animation: fadeUp 900ms ease-out both;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%);
    pointer-events: none;
}

.panel-head {
    display: flex;
    gap: 16px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 16px;
}

.panel-head h2 {
    margin: 0;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(34px, 4.8vw, 48px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.panel-tag {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 245, 246, 0.62);
}

.status {
    min-height: 1.3em;
    margin: 0 0 16px;
    color: var(--muted-strong);
    font-size: 15px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.tile {
    display: grid;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    gap: 8px;
    min-height: 132px;
    padding: 16px 10px 14px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.value {
    font-variant-numeric: tabular-nums;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.02em;
}

.label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 245, 246, 0.65);
}

.meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.meta-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-label {
    font-size: 11px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(255, 245, 246, 0.55);
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    color: var(--muted-strong);
}

.seo-copy {
    margin-top: 18px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.seo-copy h2 {
    margin: 0 0 12px;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.seo-copy p {
    margin: 0;
    color: var(--muted);
}

.seo-copy p+p {
    margin-top: 12px;
}

.faq-entry+.faq-entry {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-entry h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--muted-strong);
}

.footer {
    margin-top: 18px;
    padding-bottom: 8px;
    color: rgba(255, 245, 246, 0.68);
    font-size: 13px;
}

.ads-bottom {
    display: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(4vw, -2vh, 0);
    }
}

@keyframes floatRight {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-4vw, 2vh, 0);
    }
}

@media (max-width: 720px) {

    .ads-left,
    .ads-right {
        display: none;
    }

    .ads-bottom {
        display: block;
        position: fixed;
        bottom: 0;
        width: 90vw;
        left: 50%;
        transform: translateX(-50%);
        height: 90px;
        z-index: 10;
    }

    .page {
        padding: 20px 14px 32px;
    }

    .title-top {
        font-size: clamp(72px, 24vw, 132px);
    }

    .title-bottom {
        font-size: clamp(46px, 14vw, 82px);
    }

    .panel {
        padding: 18px;
        border-radius: 20px;
    }

    .seo-copy {
        padding: 18px;
        border-radius: 20px;
    }

    .panel-head {
        flex-direction: column;
        align-items: start;
    }

    .countdown,
    .meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tile {
        min-height: 116px;
    }

    .value {
        font-size: clamp(42px, 14vw, 60px);
    }

    .ambient-left,
    .ambient-right {
        width: 42vw;
        height: 42vw;
        opacity: 0.24;
    }

    .ambient-top {
        width: 80vw;
        height: 80vw;
        opacity: 0.2;
    }
}

@media (max-width: 540px) {

    .countdown,
    .meta {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}