/* NeonRaidd.games — studio promo campaign shell */
:root {
    --void: #050810;
    --bg: #0a0f18;
    --panel: #111827;
    --panel-2: #1a2332;
    --line: rgba(45, 212, 191, 0.22);
    --text: #f1f5f9;
    --muted: #94a3b8;
    --cyan: #2dd4bf;
    --violet: #a78bfa;
    --magenta: #f472b6;
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

figure {
    margin: 0;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(
            ellipse 140% 70% at 0% -20%,
            rgba(45, 212, 191, 0.14),
            transparent 55%
        ),
        radial-gradient(
            ellipse 90% 50% at 100% 0%,
            rgba(167, 139, 250, 0.12),
            transparent 45%
        ),
        linear-gradient(180deg, var(--void) 0%, var(--bg) 28%, var(--bg) 100%);
    min-height: 100vh;
}

a {
    color: var(--cyan);
    text-decoration: none;
}
a:hover {
    color: #5eead4;
    text-decoration: underline;
}

.wrap {
    width: min(1180px, 92vw);
    margin-inline: auto;
    min-width: 0;
}

/* Age gate */
.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(5, 8, 16, 0.88);
    backdrop-filter: blur(14px);
}

.age-overlay[hidden] {
    display: none !important;
}

.age-card {
    width: min(460px, 100%);
    background: linear-gradient(145deg, var(--panel) 0%, var(--panel-2) 100%);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    border: 1px solid var(--line);
    box-shadow:
        0 0 0 1px rgba(167, 139, 250, 0.08),
        0 28px 60px rgba(0, 0, 0, 0.55);
}

.age-card h1 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.age-card p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.age-actions {
    margin-top: 1.2rem;
}

.age-check {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text);
}

.age-check input {
    margin-top: 0.25rem;
    accent-color: var(--cyan);
}

.btn-neon {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    background: linear-gradient(120deg, var(--cyan), var(--violet));
    color: #041016;
}

.btn-neon:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.slider-row {
    margin-top: 1rem;
}

.slider-row > label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.slider-track {
    position: relative;
    height: 44px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(45, 212, 191, 0.35);
    overflow: hidden;
    cursor: pointer;
}

.slider-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(45, 212, 191, 0.35),
        rgba(167, 139, 250, 0.35)
    );
    pointer-events: none;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 22px;
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f8fafc, #cbd5e1);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    cursor: grab;
    user-select: none;
}

.slider-hint {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0.5rem 0 0;
}

/* Header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 8, 16, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
}

.top-disclaimer {
    background: linear-gradient(90deg, rgba(45, 212, 191, 0.12), rgba(167, 139, 250, 0.1));
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
    font-size: 0.8125rem;
    line-height: 1.45;
    text-align: center;
}

.top-disclaimer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 0;
    color: var(--muted);
}

.top-disclaimer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(45, 212, 191, 0.4);
    background: rgba(45, 212, 191, 0.12);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.top-disclaimer-text {
    margin: 0;
    max-width: 52rem;
}

.site-top {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    position: static;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.75rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
}
.brand:hover {
    text-decoration: none;
    color: var(--cyan);
}

.brand-mark img {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.35);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
}

.nav a {
    color: var(--muted);
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
}
.nav a:hover {
    color: var(--text);
    text-decoration: none;
    border-bottom-color: var(--cyan);
}

.nav a.is-active {
    color: var(--text);
    border-bottom-color: var(--violet);
}

.store-badge {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.store-badge img {
    height: 44px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* Page shell */
main {
    padding-bottom: 3rem;
}

.section {
    padding: 2.75rem 0;
}

.section--slant {
    position: relative;
    padding: 3rem 0 3.25rem;
    clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
    background: linear-gradient(
        105deg,
        rgba(17, 24, 39, 0.65),
        rgba(26, 35, 50, 0.35)
    );
    border-block: 1px solid rgba(167, 139, 250, 0.12);
    margin: 1.5rem 0;
}

.kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--magenta);
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 960px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: start;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    line-height: 1.12;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: linear-gradient(120deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 1.25rem;
    max-width: 56ch;
}

.desc-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.35rem 1.35rem 1.35rem 1.15rem;
    border-left: 3px solid var(--cyan);
    background: rgba(15, 23, 42, 0.55);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.desc-stack h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 1rem 0 0.4rem;
    color: var(--text);
    font-weight: 600;
}
.desc-stack h2:first-child {
    margin-top: 0;
}

.desc-stack p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.media-brace {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.25rem 0 0;
}

.pip {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--panel);
    border: 1px solid rgba(45, 212, 191, 0.25);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.pip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.facts-card {
    background: linear-gradient(
        160deg,
        rgba(17, 24, 39, 0.95),
        rgba(10, 15, 24, 0.98)
    );
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(167, 139, 250, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.facts-card::before {
    content: '';
    position: absolute;
    inset: -40% -20% auto auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(
        circle,
        rgba(45, 212, 191, 0.25),
        transparent 70%
    );
    pointer-events: none;
}

.facts-hero {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--panel-2);
    border: 2px solid rgba(45, 212, 191, 0.4);
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.facts-hero img {
    width: 92%;
    height: 92%;
    object-fit: contain;
}

.facts-card h2 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    margin: 0 0 0.85rem;
    position: relative;
    z-index: 1;
}

.facts-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
}

.facts-card li + li {
    margin-top: 0.5rem;
}

.facts-card code {
    font-size: 0.8em;
    color: var(--cyan);
}

.facts-foot {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.15rem;
    position: relative;
    z-index: 1;
}

/* Games grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.game-card {
    background: linear-gradient(
        160deg,
        rgba(17, 24, 39, 0.95),
        rgba(10, 15, 24, 0.98)
    );
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid rgba(167, 139, 250, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: -35% -15% auto auto;
    width: 140px;
    height: 140px;
    background: radial-gradient(
        circle,
        rgba(244, 114, 182, 0.18),
        transparent 70%
    );
    pointer-events: none;
}

.game-card-media {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    background: #020617;
    border: 1px solid rgba(45, 212, 191, 0.2);
    margin-bottom: 1rem;
}

.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card h2 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.45rem;
    letter-spacing: -0.02em;
}

.game-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    flex: 1;
}

.game-card-cta {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin-top: 1.1rem;
    padding: 0.82rem 1rem;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(120deg, var(--cyan), var(--violet));
    color: #041016;
    transition: filter 0.15s ease, transform 0.12s ease;
}

.game-card-cta:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    text-decoration: none;
    color: #041016;
}

.game-card-cta:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

/* Horizontal rails */
.rail-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
}

.rail-lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
    max-width: 68ch;
}

.h-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.15rem 0.75rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--cyan) var(--panel);
}

.h-rail::-webkit-scrollbar {
    height: 8px;
}
.h-rail::-webkit-scrollbar-thumb {
    background: rgba(45, 212, 191, 0.45);
    border-radius: 999px;
}

.shot {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: min(88vw, 720px);
    aspect-ratio: 16 / 9;
    max-height: min(56vw, 420px);
    background: #020617;
    border-radius: var(--radius);
    border: 1px solid rgba(45, 212, 191, 0.2);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shot--thumb {
    width: min(42vw, 200px);
    aspect-ratio: 1;
    max-height: 200px;
}

.logo-orbit {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.orb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.9);
    border: 1px dashed rgba(167, 139, 250, 0.45);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.orb img {
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.cta-band {
    margin-top: 2rem;
    padding: 1.35rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 212, 191, 0.25);
    background: rgba(17, 24, 39, 0.6);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.cta-band p {
    margin: 0;
    flex: 1 1 220px;
    color: var(--muted);
    font-size: 0.88rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(45, 212, 191, 0.15);
    padding: 2rem 0 2.5rem;
    margin-top: 1rem;
    background: linear-gradient(0deg, var(--void), transparent);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.86rem;
}

.footer-note {
    margin: 1.25rem 0 0;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.55;
}

/* Inner pages */
.page-hero {
    padding: 2.25rem 0 1rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.prose {
    max-width: 68ch;
    color: var(--muted);
}

.prose p {
    margin: 0 0 1rem;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
    margin: 1.75rem 0 0.65rem;
}

.prose ul {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.prose li + li {
    margin-top: 0.35rem;
}

.page-cta {
    margin: 2rem 0;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(167, 139, 250, 0.22);
    background: rgba(17, 24, 39, 0.55);
}

.page-cta p {
    margin: 0 0 0.75rem;
    color: var(--muted);
    font-size: 0.92rem;
}
