:root {
    --bg: #020205;
    --text: #effbff;
    --muted: #9bb0bd;
    --cyan: #54edff;
    --pink: #ff3aa7;
    --lime: #c7ff4d;
    --red: #ff335a;
    --glass: rgba(7, 10, 18, 0.72);
    --glass-soft: rgba(7, 10, 18, 0.48);
    --line: rgba(255, 255, 255, 0.08);
    --line-cyan: rgba(84, 237, 255, 0.22);
    --line-pink: rgba(255, 58, 167, 0.24);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(ellipse at 50% -12%, rgba(255, 58, 167, 0.28), transparent 30rem),
        radial-gradient(ellipse at 18% 12%, rgba(84, 237, 255, 0.2), transparent 28rem),
        radial-gradient(ellipse at 92% 22%, rgba(255, 58, 167, 0.16), transparent 24rem),
        radial-gradient(ellipse at 50% 105%, rgba(199, 255, 77, 0.055), transparent 22rem),
        linear-gradient(165deg, #020205 0%, #060713 44%, #110411 74%, #020205 100%);
    background-size: 120% 120%, 115% 115%, 120% 120%, 100% 100%, auto;
    overflow-x: hidden;
    animation: bodyGlowDrift 42s ease-in-out infinite alternate;
}

body::before,
body::after {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    content: "";
}

body::before {
    inset: -10vh -12vw;
    background:
        radial-gradient(circle at 22% 18%, rgba(84, 237, 255, 0.22), transparent 19rem),
        radial-gradient(circle at 72% 18%, rgba(255, 58, 167, 0.24), transparent 21rem),
        radial-gradient(circle at 45% 62%, rgba(255, 255, 255, 0.052), transparent 27rem);
    filter: blur(20px);
    opacity: 0.84;
    animation: ambientDrift 34s ease-in-out infinite alternate;
}

body::after {
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px),
        radial-gradient(circle at 86% 42%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px),
        repeating-linear-gradient(112deg, transparent 0 24px, rgba(255, 58, 167, 0.024) 25px, transparent 27px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 7px);
    background-size: 180px 180px, 230px 230px, auto, auto;
    mix-blend-mode: screen;
    opacity: 0.38;
    animation: textureDrift 44s ease-in-out infinite alternate;
}

.desktop-portrait-bg {
    display: none;
}

.desktop-portrait-bg img {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    position: relative;
    width: min(100% - 24px, 540px);
    margin: 0 auto;
    padding: 28px 0 22px;
}

.page-shell::before {
    position: absolute;
    inset: 14px auto auto 50%;
    z-index: -1;
    width: min(92vw, 520px);
    height: 300px;
    content: "";
    background: radial-gradient(ellipse, rgba(255, 58, 167, 0.2), rgba(84, 237, 255, 0.1) 42%, transparent 72%);
    filter: blur(24px);
    transform: translateX(-50%);
}

.hero {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 6px 0 25px;
    text-align: center;
}

.brand-logo {
    position: relative;
    width: min(calc(100vw - 18px), 530px);
    min-height: clamp(176px, 42vw, 222px);
    display: grid;
    place-items: center;
}

.brand-logo__layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity 900ms ease, transform 900ms ease, filter 900ms ease;
}

.brand-logo__layer--webiteit {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
}

.brand-logo__layer--ssteckel {
    opacity: 0;
    transform: translateY(0) scale(1);
    filter: none;
}

.brand-logo.is-alt .brand-logo__layer--webiteit {
    opacity: 0;
    transform: translateY(0) scale(1);
    filter: none;
}

.brand-logo.is-alt .brand-logo__layer--ssteckel {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
}

.brand-logo.is-switching {
    animation: logoJolt 280ms ease-out;
}

.brand-logo__image {
    width: min(100%, 530px);
    max-height: 205px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 28px rgba(84, 237, 255, 0.28))
        drop-shadow(0 0 54px rgba(255, 58, 167, 0.18));
}

.brand-logo__text {
    width: 100%;
    padding: 24px 18px 28px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(9, 17, 28, 0.72), rgba(15, 4, 15, 0.52)),
        radial-gradient(circle at 20% 0%, rgba(84, 237, 255, 0.2), transparent 55%),
        radial-gradient(circle at 90% 30%, rgba(255, 58, 167, 0.2), transparent 55%);
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
    font-size: clamp(3.85rem, 18vw, 6.9rem);
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tagline {
    margin: -4px 0 0;
    color: #d4e7ee;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(84, 237, 255, 0.2);
}

main {
    display: grid;
    gap: 15px;
}

.link-section,
.live-panel {
    min-width: 0;
}

.section-title {
    margin: 8px 0 8px;
    color: rgba(216, 233, 240, 0.74);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
}

.link-stack,
.live-stack {
    display: grid;
    gap: 9px;
}

.live-stack {
    gap: 10px;
}

.live-card {
    overflow: hidden;
    border: 1px solid rgba(255, 58, 167, 0.18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 12% 0%, rgba(84, 237, 255, 0.13), transparent 40%),
        radial-gradient(circle at 88% 18%, rgba(255, 58, 167, 0.17), transparent 42%),
        linear-gradient(145deg, rgba(9, 12, 22, 0.86), rgba(5, 4, 9, 0.82));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(255, 58, 167, 0.07);
}

.live-card--gaming {
    border-color: rgba(84, 237, 255, 0.18);
}

.live-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #050812;
}

.live-card__thumb {
    width: 100%;
    aspect-ratio: 2.25 / 1;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.live-card__media::after {
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    content: "";
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
}

.live-card__media:hover .live-card__thumb {
    transform: scale(1.018);
    filter: saturate(1.1);
}

.live-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 1;
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff7fb;
    background: var(--red);
    box-shadow: 0 0 18px rgba(255, 51, 90, 0.42);
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-card__copy {
    display: grid;
    gap: 7px;
    padding: 12px;
}

.eyebrow,
.live-category {
    width: fit-content;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--cyan);
}

.live-card h2 {
    margin: 0;
    font-size: clamp(1.05rem, 5vw, 1.34rem);
    line-height: 1.08;
}

.live-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.32;
}

.live-category {
    padding: 3px 8px;
    color: var(--lime);
    background: rgba(199, 255, 77, 0.09);
}

.button {
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    justify-self: start;
    padding: 0 13px;
    border: 1px solid rgba(84, 237, 255, 0.26);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 950;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button--primary {
    color: #021017;
    background: linear-gradient(135deg, var(--cyan), var(--lime));
    box-shadow: 0 0 26px rgba(84, 237, 255, 0.16);
}

.button:hover {
    box-shadow: 0 0 34px rgba(84, 237, 255, 0.24);
    filter: saturate(1.08);
    transform: translateY(-1px);
}

.hub-link {
    position: relative;
    min-height: 52px;
    display: grid;
    grid-template-columns: 30px 1fr 18px;
    align-items: center;
    gap: 11px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(8, 11, 20, 0.74), rgba(5, 5, 10, 0.56)),
        radial-gradient(circle at 0 0, rgba(84, 237, 255, 0.06), transparent 46%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hub-link::after {
    content: "›";
    justify-self: end;
    color: rgba(216, 233, 240, 0.62);
    font-size: 1.45rem;
    line-height: 1;
    transform: translateY(-1px);
}

.hub-link img {
    width: 28px;
    height: 28px;
}

.hub-link strong {
    min-width: 0;
    font-size: 0.96rem;
    line-height: 1.12;
}

.hub-link:hover {
    border-color: rgba(199, 255, 77, 0.34);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35), 0 0 24px rgba(84, 237, 255, 0.12);
    transform: translateY(-1px);
}

.hub-link--primary {
    min-height: 60px;
    border-color: var(--line-cyan);
    background:
        linear-gradient(135deg, rgba(12, 27, 44, 0.9), rgba(13, 6, 18, 0.76)),
        radial-gradient(circle at 0 0, rgba(84, 237, 255, 0.16), transparent 45%),
        radial-gradient(circle at 98% 20%, rgba(255, 58, 167, 0.13), transparent 42%);
    box-shadow: 0 15px 44px rgba(0, 0, 0, 0.32), 0 0 28px rgba(84, 237, 255, 0.08);
}

.hub-link--primary:nth-child(2) {
    border-color: var(--line-pink);
}

.hub-link--primary:nth-child(3) {
    border-color: rgba(199, 255, 77, 0.16);
}

.hub-link--primary img {
    width: 31px;
    height: 31px;
}

.hub-link--primary strong {
    font-size: 1.03rem;
}

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

.social-link {
    min-height: 58px;
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 8px 5px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(8, 11, 19, 0.5), rgba(4, 4, 9, 0.36)),
        radial-gradient(circle at 50% 0%, rgba(84, 237, 255, 0.07), transparent 54%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    text-align: center;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-link img {
    width: 23px;
    height: 23px;
}

.social-link span {
    max-width: 100%;
    color: #dcebf1;
    font-size: 0.66rem;
    font-weight: 850;
    line-height: 1.1;
}

.social-link:hover {
    border-color: rgba(255, 58, 167, 0.26);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), 0 0 18px rgba(255, 58, 167, 0.08);
    transform: translateY(-1px);
}

.section-heading-with-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-heading-with-mark img {
    width: auto;
    max-width: 58px;
    max-height: 20px;
    margin-bottom: 8px;
    opacity: 0.56;
    filter: drop-shadow(0 0 10px rgba(255, 58, 167, 0.14));
}

.sponsor {
    margin-top: 8px;
}

.sponsor a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background: rgba(5, 7, 13, 0.34);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-align: left;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.sponsor a:hover {
    border-color: rgba(84, 237, 255, 0.18);
    background: rgba(8, 15, 25, 0.48);
    transform: translateY(-1px);
}

.sponsor img {
    width: 28px;
    height: 28px;
    opacity: 0.78;
}

.sponsor small,
footer {
    color: var(--muted);
    font-size: 0.72rem;
}

.sponsor strong {
    display: block;
    margin: 1px 0;
    font-size: 0.9rem;
}

footer {
    padding: 0 0 2px;
    color: var(--muted);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes bodyGlowDrift {
    0% {
        background-position: 50% 0, 0 0, 100% 10%, 50% 100%, 0 0;
    }

    100% {
        background-position: 46% 3%, 4% 2%, 96% 16%, 52% 98%, 0 0;
    }
}

@keyframes ambientDrift {
    0% {
        transform: translate3d(-2vw, -1.5vh, 0) scale(1);
        opacity: 0.68;
    }

    100% {
        transform: translate3d(2.5vw, 2.5vh, 0) scale(1.1);
        opacity: 0.94;
    }
}

@keyframes textureDrift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
        opacity: 0.32;
    }

    100% {
        background-position: 18px -24px, -20px 18px, 32px 0, 0 18px;
        opacity: 0.42;
    }
}

@keyframes logoJolt {
    0% {
        transform: translateX(0);
    }

    22% {
        transform: translateX(-2px);
    }

    42% {
        transform: translateX(2px);
    }

    62% {
        transform: translateX(-1px);
    }

    82% {
        transform: translateX(1px);
    }

    100% {
        transform: translateX(0);
    }
}

@media (min-width: 560px) {
    .page-shell {
        width: min(100% - 32px, 560px);
        padding-top: 34px;
    }

    .hero {
        padding-bottom: 30px;
    }

    .live-card {
        display: grid;
        grid-template-columns: 46% 1fr;
    }

    .live-card__thumb {
        height: 100%;
        min-height: 148px;
    }

    .live-card__copy {
        align-content: center;
        padding: 13px;
    }

    .live-stack .live-card + .live-card {
        grid-template-columns: 38% 1fr;
    }
}

@media (min-width: 960px) {
    .desktop-portrait-bg {
        position: fixed;
        inset: 0;
        z-index: 0;
        display: block;
        pointer-events: none;
        overflow: hidden;
    }

    .desktop-portrait-bg img {
        position: absolute;
        right: clamp(-72px, -4vw, -26px);
        bottom: 0;
        z-index: 1;
        width: auto;
        height: clamp(610px, 86vh, 980px);
        max-width: none;
        object-fit: contain;
        object-position: right bottom;
        opacity: 0.76;
        filter: brightness(0.92) contrast(1.04) saturate(1.02) drop-shadow(0 0 34px rgba(255, 58, 167, 0.16));
    }

    .desktop-portrait-bg::before,
    .desktop-portrait-bg::after {
        position: absolute;
        inset: 0;
        pointer-events: none;
        content: "";
    }

    .desktop-portrait-bg::before {
        z-index: 0;
        background:
            radial-gradient(ellipse at 88% 38%, rgba(255, 58, 167, 0.26), transparent 23rem),
            radial-gradient(ellipse at 78% 62%, rgba(84, 237, 255, 0.14), transparent 22rem),
            linear-gradient(90deg, rgba(2, 2, 5, 0.98) 0%, rgba(2, 2, 5, 0.9) 36%, rgba(2, 2, 5, 0.62) 58%, rgba(2, 2, 5, 0.12) 100%);
    }

    .desktop-portrait-bg::after {
        z-index: 2;
        background:
            linear-gradient(180deg, rgba(2, 2, 5, 0) 0%, rgba(2, 2, 5, 0.08) 62%, rgba(2, 2, 5, 0.42) 86%, rgba(2, 2, 5, 0.76) 100%),
            radial-gradient(ellipse at 50% 50%, rgba(2, 2, 5, 0.52), rgba(2, 2, 5, 0.16) 48%, transparent 76%);
    }

    .page-shell {
        z-index: 1;
    }
}

@media (max-width: 390px) {
    .page-shell {
        width: min(100% - 18px, 540px);
    }

    .brand-logo {
        width: min(calc(100vw - 12px), 470px);
        min-height: 154px;
    }

    .tagline {
        font-size: 0.72rem;
    }

    .hub-link {
        grid-template-columns: 28px 1fr 16px;
        padding-inline: 11px;
    }

    .social-row {
        gap: 6px;
    }

    .social-link span {
        font-size: 0.62rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }

    body::before,
    body::after,
    .page-shell::before,
    .brand-logo.is-switching {
        animation: none !important;
    }
}
