:root {
    --bg: #041126;
    --bg-soft: #0b1d3f;
    --panel: rgba(5, 19, 45, 0.84);
    --panel-strong: rgba(8, 26, 61, 0.95);
    --line: rgba(255, 255, 255, 0.1);
    --text: #eff7ff;
    --muted: #b6c7e5;
    --blue: #2496ff;
    --blue-strong: #0d62ff;
    --red: #ff304e;
    --red-strong: #d80d2f;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(36, 150, 255, 0.32), transparent 34%),
        radial-gradient(circle at top right, rgba(255, 48, 78, 0.26), transparent 28%),
        linear-gradient(180deg, #07162f 0%, #020913 100%);
    min-height: 100vh;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: -1;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.7;
}

body::before {
    width: 180px;
    height: 180px;
    top: 8%;
    left: -40px;
    background: rgba(36, 150, 255, 0.4);
}

body::after {
    width: 240px;
    height: 240px;
    right: -80px;
    top: 28%;
    background: rgba(255, 48, 78, 0.28);
}

.page-shell {
    width: min(100%, calc(var(--container) + 32px));
    margin: 0 auto;
    padding: 14px 16px 40px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    margin-bottom: 18px;
    background: rgba(3, 12, 30, 0.72);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.brand img {
    display: block;
    width: clamp(160px, 42vw, 240px);
    height: auto;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
}

.brand-tagline {
    color: #cfe4ff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topbar-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.topbar-action {
    padding: 10px 14px;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(135deg, rgba(255, 48, 78, 0.95), rgba(13, 98, 255, 0.95));
    box-shadow: 0 12px 24px rgba(216, 13, 47, 0.28);
}

.stream-frame,
.hero-card,
.info-card,
.audio-panel,
.closing-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(9, 25, 57, 0.95), rgba(4, 15, 35, 0.95));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.stream-frame {
    padding: 16px;
    border-radius: var(--radius-lg);
}

.stream-frame__head,
.hero,
.hero-actions,
.info-grid,
.audio-panel,
.closing-banner {
    display: grid;
}

.stream-frame__head {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.eyebrow,
.mini-label,
.info-card__label {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

.eyebrow {
    color: #7dc2ff;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff4f6;
    background: rgba(255, 48, 78, 0.18);
    border: 1px solid rgba(255, 48, 78, 0.38);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(255, 48, 78, 0.9);
    animation: pulse 1.8s infinite;
}

.video-embed {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    aspect-ratio: 16 / 9;
    min-height: 340px;
}

.video-embed iframe,
.audio-panel__player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.twitch-player {
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.stream-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero {
    gap: 20px;
    padding: 28px 4px;
}

.hero-copy h1,
.hero-card__content h2,
.audio-panel__copy h2,
.closing-banner h2,
.info-card h3 {
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
}

.hero-copy h1 {
    margin-top: 10px;
    font-size: clamp(2.3rem, 8vw, 5rem);
    line-height: 0.98;
}

.hero-copy p,
.hero-card__content p,
.info-card p,
.audio-panel__copy p,
.closing-banner p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.button {
    min-height: 52px;
    padding: 0 22px;
    font-weight: 800;
}

.button:hover,
.topbar-action:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--red));
    box-shadow: 0 18px 34px rgba(36, 150, 255, 0.24);
}

.button--ghost {
    color: var(--text);
    border: 1px solid rgba(125, 194, 255, 0.28);
    background: rgba(255, 255, 255, 0.03);
}

.is-fading {
    opacity: 0.55;
    transition: opacity 0.18s ease;
}

.hero-card {
    min-height: 280px;
    border-radius: 32px;
}

.hero-card__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(36, 150, 255, 0.42), transparent 34%),
        radial-gradient(circle at 85% 25%, rgba(255, 48, 78, 0.34), transparent 24%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.hero-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    height: 100%;
    padding: 24px;
}

.mini-label {
    color: #9ed0ff;
}

.hero-card__content h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    max-width: 12ch;
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 72px;
}

.signal-bars span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #6fd0ff 0%, #0f5ff2 56%, #ff304e 100%);
    animation: bounce 1.2s ease-in-out infinite alternate;
}

.signal-bars span:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.signal-bars span:nth-child(2) { height: 64%; animation-delay: 0.25s; }
.signal-bars span:nth-child(3) { height: 92%; animation-delay: 0.4s; }
.signal-bars span:nth-child(4) { height: 52%; animation-delay: 0.55s; }
.signal-bars span:nth-child(5) { height: 78%; animation-delay: 0.7s; }

.info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 6px;
}

.info-card {
    padding: 22px;
    border-radius: 24px;
}

.info-card__label {
    color: #87c7ff;
}

.info-card h3 {
    margin-top: 12px;
    font-size: 1.55rem;
}

.audio-panel {
    gap: 20px;
    padding: 22px;
    margin-top: 24px;
    border-radius: 30px;
}

.audio-panel__player {
    min-height: 260px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.audio-player-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 48, 78, 0.14), transparent 24%),
        radial-gradient(circle at top left, rgba(36, 150, 255, 0.2), transparent 28%),
        rgba(5, 18, 42, 0.92);
}

.audio-player-card__head,
.audio-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.audio-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #d5e7ff;
    border: 1px solid rgba(125, 194, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

.au