:root {
    --bg: #060d17;
    --bg-elevated: rgba(10, 20, 36, 0.82);
    --panel-border: rgba(136, 198, 255, 0.14);
    --text: #e8f3ff;
    --muted: #98adc7;
    --primary: #00d0ff;
    --primary-strong: #25ff9f;
    --secondary: #ff8f3d;
    --danger: #ff5470;
    --shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 255, 159, 0.12), transparent 26%),
        radial-gradient(circle at top right, rgba(0, 208, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #09111e 0%, #060d17 42%, #04080f 100%);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 80%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

main {
    padding-bottom: 4rem;
}

.mini-player {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    width: min(260px, calc(100vw - 1rem));
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mini-player[data-expanded='false'] {
    width: auto;
    max-width: calc(100vw - 1.5rem);
}

.mini-player__tab,
.mini-player__panel {
    backdrop-filter: blur(18px);
    background: rgba(6, 13, 23, 0.92);
    border: 1px solid rgba(136, 198, 255, 0.18);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4);
}

.mini-player__tab {
    margin-left: auto;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    max-width: 100%;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    color: var(--text);
    font: inherit;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
}

.mini-player[data-expanded='false'] .mini-player__tab {
    animation: mini-player-pulse 2.4s ease-in-out infinite;
}

.mini-player__panel {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.45rem;
    padding: 0.7rem;
    border-radius: 0.9rem;
}

.mini-player__panel[hidden] {
    display: none;
}

.mini-player__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.mini-player__title {
    display: block;
    margin-top: 0.08rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    line-height: 1.2;
}

.mini-player__actions {
    display: flex;
    gap: 0.24rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto;
}

.mini-player__action {
    min-height: 1.5rem;
    padding: 0.24rem 0.45rem;
    font-size: 0.64rem;
}

.mini-player__stage {
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.mini-player__frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 146px;
    display: block;
    border: 0;
}

.mini-player[data-expanded='true'] .mini-player__tab {
    display: none;
}

@keyframes mini-player-pulse {
    0% {
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 255, 159, 0.28);
        transform: translateX(0) scale(1);
    }

    50% {
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42), 0 0 0 0.45rem rgba(37, 255, 159, 0.08);
        transform: translateX(0) scale(1.015);
    }

    100% {
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 255, 159, 0);
        transform: translateX(0) scale(1);
    }
}

.site-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.nav-bar,
.panel,
.stream-card,
.featured-card,
.flash,
.filter-bar,
.server-card,
.auth-panel {
    backdrop-filter: blur(18px);
    background: var(--bg-elevated);
    border: 1px solid var(--panel-border);
    box-shadow: var(--shadow);
}

.nav-bar {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark strong,
h1,
h2,
h3,
.button,
.eyebrow {
    font-family: 'Orbitron', sans-serif;
}

.brand-mark__badge {
    width: 2.85rem;
    height: 2.85rem;
    display: grid;
    place-items: center;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #021521;
    font-weight: 800;
}

.brand-mark small,
.muted-copy,
.stream-card__meta,
.auth-footnote,
.detail-list dt,
.field span,
.nav-user {
    color: var(--muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: var(--muted);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 1.2rem;
    padding-top: 2rem;
    align-items: start;
}

.hero-copy,
.hero-side,
.streamer-header,
.stream-embed-panel,
.streamer-side-panel,
.server-panel,
.stream-panel,
.filter-wrap,
.error-state,
.auth-shell {
    margin-top: 1rem;
}

.hero-copy {
    padding: 2rem 0.25rem;
    max-width: 58rem;
}

.hero-copy .muted-copy,
.hero-side > p:not(.eyebrow) {
    max-width: 44rem;
}

.community-pulse {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.community-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 255, 159, 0.1);
    border: 1px solid rgba(37, 255, 159, 0.2);
    color: var(--primary-strong);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(1.1rem, 5.5vw, 1.8rem);
    line-height: 1.22;
    margin: 0.35rem 0 1rem;
    max-width: 80ch;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #e5f6ff;
    text-shadow: 0 1px 12px rgba(0, 15, 30, 0.45);
    background: linear-gradient(160deg, #63f4ff, #8b95ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: normal;
}

@media (max-width: 960px) {
    .hero-copy h1 {
        font-size: clamp(1rem, 6vw, 1.5rem);
        max-width: 10ch;
    }
}

@media (max-width: 720px) {
    .hero-copy h1 {
        font-size: 1.15rem;
        max-width: 9ch;
    }
}

.eyebrow {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--primary-strong);
}

.hero-side,
.panel,
.auth-panel {
    padding: 1.35rem;
    border-radius: 1.4rem;
}

.feature-list {
    padding-left: 1rem;
    margin: 1rem 0 0;
    color: var(--muted);
}

.feature-list li + li {
    margin-top: 0.45rem;
}

.hero-stats {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-stat {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.hero-stat strong {
    font-size: 1.5rem;
    display: block;
}

.hero-stat span {
    display: block;
    color: var(--muted);
}

.filter-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.2rem;
}

.filter-bar .button {
    align-self: end;
}

.filter-drawer {
    display: block;
}

.filter-drawer__toggle {
    display: none;
    list-style: none;
}

.filter-drawer__toggle::-webkit-details-marker {
    display: none;
}

.filter-drawer__panel {
    display: block;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field input,
.field select {
    width: 100%;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text);
    padding: 0.95rem 1rem;
    font: inherit;
}

.field select {
    background: rgba(9, 17, 30, 0.98);
    color: #eef7ff;
    color-scheme: dark;
}

.field select option {
    background: #09111e;
    color: #eef7ff;
}

.field select option:checked {
    background: #12304a;
    color: #ffffff;
}

.field input:focus,
.field select:focus {
    outline: 2px solid rgba(0, 208, 255, 0.45);
    border-color: rgba(0, 208, 255, 0.45);
}

.button {
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #021521;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.button--twitch {
    background: rgba(145, 70, 255, 0.14);
    color: #efe7ff;
    border: 1px solid rgba(145, 70, 255, 0.36);
}

.button--twitch:hover {
    background: rgba(145, 70, 255, 0.22);
    box-shadow: 0 10px 24px rgba(145, 70, 255, 0.18);
}

.button--secondary {
    background: rgba(37, 255, 159, 0.12);
    color: var(--primary-strong);
    border: 1px solid rgba(37, 255, 159, 0.25);
}

.button--block {
    width: 100%;
}

.button--compact {
    padding: 0.65rem 0.9rem;
    font-size: 0.92rem;
}

.inline-form {
    display: inline-flex;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.section-heading > * {
    min-width: 0;
}

.section-heading .muted-copy {
    max-width: 38rem;
}

.stream-grid,
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.stream-pagination {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
    justify-items: center;
}

.stream-pagination__summary {
    color: var(--muted);
    font-size: 0.92rem;
}

.stream-pagination__controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.stream-pagination__button {
    min-width: 2.75rem;
}

.stream-pagination__button--active {
    background: rgba(37, 255, 159, 0.14);
    border-color: rgba(37, 255, 159, 0.28);
    color: var(--primary-strong);
}

.stream-pagination__button--disabled {
    pointer-events: none;
    opacity: 0.45;
}

.featured-panel {
    margin-top: 1rem;
}

.staff-spotlight-panel {
    display: grid;
    gap: 0.85rem;
    align-content: start;
    align-items: start;
    position: sticky;
    top: 1rem;
}

.staff-spotlight-panel h2 {
    margin: 0.1rem 0 0;
    font-size: 1.38rem;
    line-height: 1.04;
}

.staff-spotlight-panel > p:not(.eyebrow) {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.38;
}

.hero-jumpin-card {
    margin-top: 0.95rem;
}

.hero-jumpin-card .community-server-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-jumpin-card .community-server-fact--wide {
    grid-column: span 2;
}

.staff-spotlight-card {
    font-size: 0.82rem;
    padding: 0.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 244, 255, 0.22);
    background: rgba(7, 18, 34, 0.65);
    display: grid;
    gap: 0.75rem;
}

.staff-spotlight-card__media-link {
    position: relative;
    display: block;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.staff-spotlight-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 220ms ease;
}

.staff-spotlight-card__media-link:hover .staff-spotlight-card__media {
    transform: scale(1.03);
}

.staff-spotlight-card__badge,
.staff-spotlight-card__viewers {
    position: absolute;
    border-radius: 999px;
    padding: 0.28rem 0.5rem;
    font-size: 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.staff-spotlight-card__badge {
    top: 0.55rem;
    left: 0.55rem;
    color: #021521;
    background: linear-gradient(135deg, #63f4ff, #25ff9f);
    border-color: rgba(99, 244, 255, 0.35);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.04em;
}

.staff-spotlight-card__viewers {
    right: 0.55rem;
    bottom: 0.55rem;
    color: #e5f6ff;
    background: rgba(6, 13, 23, 0.78);
}

.staff-spotlight-card__profile {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.staff-spotlight-card__avatar {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.85rem;
    object-fit: cover;
}

.staff-spotlight-card__name {
    display: block;
    font-size: 0.76rem;
}

.staff-spotlight-card__meta {
    margin: 0.15rem 0 0;
    color: var(--primary-strong);
    font-size: 0.62rem;
}

.staff-spotlight-card__title {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.25;
}

.staff-spotlight-card__actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.staff-spotlight-card__actions .button--compact {
    min-height: 1.4rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.62rem;
}

.staff-switcher {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.45rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.1rem;
    padding-bottom: 0.45rem;
    margin-top: 0.25rem;
}

.staff-switcher__button {
    font-size: 0.62rem;
    padding: 0.34rem 0.56rem;
    min-height: 1.7rem;
    white-space: nowrap;
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.staff-switcher__button--live {
    border-color: rgba(37, 255, 159, 0.35);
    color: #9cffcf;
    background: rgba(37, 255, 159, 0.1);
}

.staff-switcher__button--offline {
    border-color: rgba(255, 84, 112, 0.35);
    color: #ff9aaa;
    background: rgba(255, 84, 112, 0.08);
}

.staff-switcher__button--active {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.omg-spotlight-card {
    width: 100%;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(0, 208, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(0, 208, 255, 0.08), rgba(37, 255, 159, 0.03)),
        rgba(7, 18, 34, 0.78);
}

.omg-spotlight-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.18;
}

.omg-spotlight-card .muted-copy {
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.45;
}

.omg-spotlight-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.omg-spotlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--text);
    font-size: 0.78rem;
    line-height: 1.4;
}

.omg-spotlight-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.28rem;
    border-radius: 999px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    box-shadow: 0 0 0 0.18rem rgba(0, 208, 255, 0.12);
}

.featured-filter {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    margin: 0 0 1rem;
    flex-wrap: wrap;
}

.featured-filter__field {
    max-width: 22rem;
    width: 100%;
}

.featured-filter .button {
    flex: 0 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
}

.stream-grid > .stream-card:only-child,
.featured-grid > .featured-stream-card:only-child {
    width: min(100%, 320px);
    max-width: 320px;
    justify-self: start;
}

.featured-stream-card {
    border-radius: 1.05rem;
}

.featured-stream-card .stream-card__media-link {
    aspect-ratio: 16 / 8.5;
}

.featured-stream-card .live-pill,
.featured-stream-card .viewer-pill {
    padding: 0.32rem 0.55rem;
    font-size: 0.68rem;
}

.featured-stream-card .live-pill {
    top: 0.6rem;
    left: 0.6rem;
}

.featured-stream-card .viewer-pill {
    right: 0.6rem;
    bottom: 0.6rem;
}

.featured-stream-card .stream-card__body {
    padding: 0.8rem;
    gap: 0.65rem;
}

.featured-stream-card .stream-card__profile {
    gap: 0.6rem;
}

.featured-stream-card .stream-card__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.8rem;
}

.featured-stream-card .stream-card__name {
    font-size: 0.95rem;
}

.featured-stream-card .stream-card__meta {
    font-size: 0.78rem;
}

.featured-stream-card .stream-card__title {
    font-size: 0.9rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
}

.featured-stream-card .stream-card__actions {
    gap: 0.45rem;
}

.featured-stream-card .button {
    padding: 0.58rem 0.78rem;
    font-size: 0.8rem;
}

.stream-card {
    overflow: hidden;
    border-radius: 1.35rem;
    display: flex;
    flex-direction: column;
}

.stream-card__media-link {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.stream-card__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.stream-card:hover .stream-card__media {
    transform: scale(1.03);
}

.live-pill,
.viewer-pill,
.chip {
    position: absolute;
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    font-size: 0.77rem;
    background: rgba(6, 13, 23, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-pill {
    top: 0.8rem;
    left: 0.8rem;
    color: white;
    background: rgba(255, 84, 112, 0.92);
}

.live-pill--vod {
    background: rgba(255, 170, 64, 0.92);
    color: rgb(34, 16, 0);
}

.live-pill--channel {
    background: rgba(103, 132, 255, 0.9);
    color: white;
}

.viewer-pill {
    bottom: 0.8rem;
    right: 0.8rem;
}

.stream-card__body {
    padding: 1rem;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.9rem;
}

.stream-card__profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stream-card__avatar,
.streamer-header__avatar {
    border-radius: 1rem;
    object-fit: cover;
}

.stream-card__avatar {
    width: 3.25rem;
    height: 3.25rem;
}

.stream-card__name {
    font-weight: 700;
}

.stream-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.stream-card__chips,
.stream-card__actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.stream-card__actions {
    margin-top: auto;
}

.chip {
    position: static;
    color: var(--muted);
}

.chip--emerald,
.chip--live {
    color: var(--primary-strong);
    border-color: rgba(37, 255, 159, 0.32);
}

.chip--staff {
    color: #86e9ff;
    border-color: rgba(99, 244, 255, 0.35);
    background: rgba(99, 244, 255, 0.08);
}

.flash-stack {
    margin-top: 1rem;
}

.flash {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
}

.flash--success {
    border-color: rgba(37, 255, 159, 0.2);
}

.flash--error,
.service-warning,
.panel--error {
    border-color: rgba(255, 84, 112, 0.2);
}

.service-warning {
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 84, 112, 0.08);
}

.empty-state {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    color: var(--muted);
}

.auth-shell,
.error-state {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 140px);
}

.auth-panel {
    width: min(520px, 100%);
}

.auth-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.field-error {
    color: #ff9aaa;
}

.auth-footnote {
    margin-top: 1rem;
}

.streamer-shell {
    display: grid;
    gap: 1rem;
}

.streamer-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.streamer-header__identity {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.streamer-header__avatar {
    width: 6.5rem;
    height: 6.5rem;
}

.streamer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.45fr);
    gap: 1rem;
    align-items: start;
}

.stream-player-shell {
    position: relative;
    display: grid;
    gap: 0.85rem;
}

.stream-player-topbar,
.stream-chat-topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.stream-player-topbar h2,
.stream-chat-topbar h2 {
    margin: 0.2rem 0 0;
    font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.stream-player-topbar__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stream-player-topbar__meta {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.stream-player-stage {
    position: relative;
    overflow: hidden;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top, rgba(255, 114, 88, 0.18), transparent 45%),
        rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stream-player-footer {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 0.8rem;
}

.stream-player-footer p {
    margin: 0;
}

.stream-player-browser-note {
    margin-bottom: 0;
}

.stream-player-shell[data-player-state='fallback'] .stream-embed {
    opacity: 1;
}

.stream-player-status,
.stream-player-fallback {
    position: static;
    z-index: 2;
    display: block;
    text-align: left;
    border-radius: 1rem;
    margin-bottom: 0.85rem;
}

.stream-player-hint {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 13, 23, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.stream-player-status {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stream-player-fallback {
    padding: 1rem;
    background: rgba(255, 84, 112, 0.08);
    border: 1px solid rgba(255, 84, 112, 0.18);
}

.stream-player-status__body,
.stream-player-fallback__copy {
    max-width: none;
}

.stream-player-status h3,
.stream-player-fallback h3 {
    margin: 0.4rem 0 0.8rem;
}

.stream-player-status p:last-child,
.stream-player-fallback p:last-child {
    color: var(--muted);
}

.stream-player-fallback__actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stream-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 520px;
    display: block;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.stream-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    border-radius: 1rem;
}

.streamer-side-panel {
    display: grid;
    gap: 1rem;
}

.stream-chat-shell,
.streamer-notes-panel {
    display: grid;
    gap: 0.9rem;
}

.streamer-notes-panel h2 {
    margin: 0;
}

.stream-chat-shell {
    min-height: 0;
}

.stream-chat-topbar {
    margin-bottom: -0.1rem;
}

.stream-chat-topbar .eyebrow {
    flex: 0 1 auto;
}

.stream-chat-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
}

.stream-chat-warning {
    margin-bottom: 0;
}

.stream-chat-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: 0;
}

.stream-chat-toolbar .button {
    min-height: 2rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
    white-space: nowrap;
}

.stream-chat-toolbar [aria-pressed='true'] {
    background: rgba(37, 255, 159, 0.14);
    border-color: rgba(37, 255, 159, 0.28);
    color: var(--primary-strong);
    box-shadow: inset 0 0 0 1px rgba(37, 255, 159, 0.06);
}

.stream-chat-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.stream-chat-search__field {
    flex: 1 1 auto;
    min-width: 0;
}

.stream-chat-search input {
    width: 100%;
    min-width: 0;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0 0.8rem;
    font: inherit;
    font-size: 0.84rem;
}

.stream-chat-search input::placeholder {
    color: var(--muted);
}

.stream-chat-search-status {
    margin: -0.2rem 0 0;
    font-size: 0.82rem;
}

.stream-chat-unread {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 143, 61, 0.14);
    border: 1px solid rgba(255, 143, 61, 0.24);
    color: #ffbf8e;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: auto;
}

.stream-chat-status__dot {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 999px;
    background: #ffb347;
    box-shadow: 0 0 0 0.22rem rgba(255, 179, 71, 0.18);
}

.stream-chat-shell[data-chat-state='live'] .stream-chat-status__dot {
    background: var(--primary-strong);
    box-shadow: 0 0 0 0.22rem rgba(37, 255, 159, 0.16);
}

.stream-chat-shell[data-chat-state='error'] .stream-chat-status__dot {
    background: var(--danger);
    box-shadow: 0 0 0 0.22rem rgba(255, 84, 112, 0.14);
}

.stream-chat-messages {
    display: grid;
    gap: 0.5rem;
    align-content: start;
    min-height: 540px;
    max-height: 540px;
    overflow-y: auto;
    padding: 0.7rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top, rgba(0, 208, 255, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(12, 18, 31, 0.96), rgba(6, 10, 18, 0.98));
}

.stream-chat-shell[data-chat-paused='true'] .stream-chat-messages {
    border-color: rgba(255, 143, 61, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 143, 61, 0.08);
}

.stream-chat-empty {
    min-height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem 1rem;
    color: var(--muted);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 0.9rem;
}

.stream-chat-message {
    width: 100%;
    min-width: 0;
    padding: 0.6rem 0.75rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stream-chat-message__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: start;
    margin-bottom: 0.35rem;
    min-width: 0;
}

.stream-chat-message__identity {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.stream-chat-message__author {
    display: block;
    line-height: 1.1;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.stream-chat-message__time {
    color: var(--muted);
    font-size: 0.72rem;
    white-space: nowrap;
    padding-top: 0.1rem;
}

.stream-chat-message__badges {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    min-width: 0;
}

.stream-chat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.2rem;
    padding: 0.1rem 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.62rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stream-chat-badge--broadcaster {
    background: rgba(255, 84, 112, 0.14);
    color: #ff9cab;
    border-color: rgba(255, 84, 112, 0.26);
}

.stream-chat-badge--moderator {
    background: rgba(37, 255, 159, 0.12);
    color: var(--primary-strong);
    border-color: rgba(37, 255, 159, 0.24);
}

.stream-chat-badge--vip {
    background: rgba(255, 143, 61, 0.14);
    color: #ffbf8e;
    border-color: rgba(255, 143, 61, 0.24);
}

.stream-chat-badge--subscriber,
.stream-chat-badge--founder,
.stream-chat-badge--turbo,
.stream-chat-badge--staff {
    background: rgba(0, 208, 255, 0.12);
    color: #86e9ff;
    border-color: rgba(0, 208, 255, 0.22);
}

.stream-chat-message__body {
    margin: 0;
    color: var(--text);
    line-height: 1.35;
    font-size: 0.95rem;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.stream-chat-emote {
    display: inline-block;
    width: auto;
    height: 1.6em;
    min-width: 1.6em;
    margin: -0.08em 0.08em;
    vertical-align: -0.38em;
    object-fit: contain;
}

.stream-chat-emote--zero-width {
    margin-left: -0.7em;
}

.stream-chat-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

.stream-chat-actions p {
    margin: 0;
}

.streamer-notes-panel--stacked {
    padding-top: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-list {
    display: grid;
    gap: 0.85rem;
}

.detail-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-list dd {
    margin: 0;
    text-align: right;
}

.detail-list--compact dt,
.detail-list--compact dd {
    font-size: 0.95rem;
}

.accent-block {
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.server-card {
    padding: 1rem;
    border-radius: 1.1rem;
}

.server-card__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.community-server-grid {
    align-items: stretch;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(240px, 0.9fr));
    gap: 0.85rem;
}

.community-server-card {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(3, 9, 16, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.community-server-card--primary {
    background:
        radial-gradient(circle at top right, rgba(37, 255, 159, 0.16), transparent 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        rgba(3, 9, 16, 0.58);
}

.community-server-panel > .section-heading {
    margin-bottom: 0.8rem;
}

.community-server-panel > .section-heading h2 {
    margin: 0.2rem 0 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.community-server-primary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.9rem;
}

.community-server-primary-copy {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.community-server-primary-copy .muted-copy {
    max-width: 34rem;
    margin: 0;
}

.community-server-primary-actions {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 0.45rem;
    min-width: max-content;
    margin-left: auto;
}

.community-server-primary-actions .button--compact {
  min-height: 1.5rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.72rem;
}

.community-server-card h3 {
    margin: 0.15rem 0 0;
    font-size: 1.10rem;
}

.server-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.85rem;
    padding: 0.24rem 0.68rem;
    border-radius: 999px;
    background: rgba(255, 184, 77, 0.14);
    border: 1px solid rgba(255, 184, 77, 0.24);
    color: #ffd089;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.server-status-pill--online {
    background: rgba(37, 255, 159, 0.14);
    border-color: rgba(37, 255, 159, 0.24);
    color: var(--primary-strong);
}

.community-server-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.42rem;
    margin: 0;
}

.community-server-fact {
    min-width: 0;
    padding: 0.48rem 0.58rem;
    border-radius: 0.72rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.community-server-fact--wide {
    grid-column: span 2;
}

.community-server-fact dt {
    margin-bottom: 0.12rem;
    color: var(--muted);
    font-size: 0.72rem;
}

.community-server-fact dd {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.community-server-fact--address dd {
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 0.76rem;
    line-height: 1.35;
    word-break: break-all;
}

.community-server-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.community-server-feedback {
    min-height: 1rem;
    color: var(--primary-strong);
    font-size: 0.82rem;
}

.community-server-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.45;
}

.community-server-list li + li {
    margin-top: 0.4rem;
}

@media (max-width: 960px) {
    .hero-panel,
    .streamer-layout,
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading {
        align-items: start;
    }

    .filter-bar .button {
        width: 100%;
    }

    .featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .streamer-header {
        flex-direction: column;
    }

    .community-server-grid {
        grid-template-columns: 1fr;
    }

    .staff-spotlight-panel {
        position: static;
        top: auto;
    }

    .community-server-primary-head {
        flex-direction: column;
    }

    .community-server-primary-actions {
        justify-items: start;
        min-width: 0;
    }

    .community-server-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .community-server-fact--wide {
        grid-column: span 2;
    }

    .server-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stream-chat-messages {
        min-height: 380px;
        max-height: 380px;
    }
}

@media (max-width: 720px) {
    body {
        overflow-x: hidden;
    }

    .site-shell {
        width: min(100% - 1rem, 1180px);
    }

    .hero-panel {
        gap: 0.75rem;
        padding-top: 1rem;
    }

    .hero-copy {
        padding: 0.7rem 0 0.2rem;
        max-width: none;
    }

    .hero-copy h1 {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
        line-height: 1.12;
        margin: 0.3rem 0 0.8rem;
        max-width: none;
        text-wrap: balance;
    }

    .hero-copy > .muted-copy,
    .community-server-primary-copy .muted-copy,
    .hero-side > p:not(.eyebrow) {
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .nav-bar,
    .hero-side,
    .panel,
    .auth-panel,
    .stream-card,
    .community-server-card,
    .filter-drawer {
        border-radius: 1rem;
    }

    .button,
    .button--compact,
    .staff-switcher__button,
    .filter-drawer__toggle,
    .mini-player__action,
    .mini-player__tab,
    .stream-pagination__button {
        min-height: 44px;
    }

    .staff-spotlight-panel h2 {
        font-size: 1.2rem;
        line-height: 1.12;
    }

    .omg-spotlight-card h3,
    .community-server-panel > .section-heading h2,
    .featured-panel .section-heading h2,
    .stream-panel .section-heading h2 {
        font-size: 1.2rem;
        line-height: 1.15;
    }

    .omg-spotlight-card .muted-copy,
    .omg-spotlight-list li {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .community-pulse {
        gap: 0.45rem;
        margin-top: 0.9rem;
    }

    .community-pill {
        min-height: 1.8rem;
        padding: 0.34rem 0.62rem;
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }

    .hero-stats {
        gap: 0.65rem;
    }

    .hero-stat {
        padding: 0.85rem 0.9rem;
    }

    .hero-stat strong {
        font-size: 1.25rem;
    }

    .hero-jumpin-card {
        margin-top: 0.75rem;
    }

    .community-server-primary-head {
        gap: 0.75rem;
    }

    .community-server-primary-actions {
        width: 100%;
        justify-items: start;
        margin-left: 0;
    }

    .community-server-facts,
    .hero-jumpin-card .community-server-facts {
        grid-template-columns: 1fr;
    }

    .community-server-fact--wide,
    .hero-jumpin-card .community-server-fact--wide {
        grid-column: auto;
    }

    .community-server-fact,
    .community-server-fact--wide {
        padding: 0.6rem 0.7rem;
    }

    .community-server-fact--address dd {
        font-size: 0.8rem;
        word-break: break-word;
    }

    .staff-spotlight-card__profile {
        align-items: flex-start;
    }

    .staff-spotlight-card__name {
        font-size: 0.86rem;
    }

    .staff-spotlight-card__meta {
        font-size: 0.68rem;
    }

    .staff-spotlight-card__title {
        font-size: 0.8rem;
    }

    .staff-spotlight-card__viewers {
        font-size: 0.6rem;
        padding: 0.24rem 0.42rem;
    }

    .eyebrow {
        letter-spacing: 0.16em;
    }

    .hero-side,
    .panel {
        padding: 1rem;
    }

    .hero-side > p:not(.eyebrow) {
        margin-bottom: 0.65rem;
    }

    .feature-list {
        margin-top: 0.75rem;
    }

    .section-heading {
        flex-direction: column;
        align-items: start;
    }

    .section-heading .muted-copy {
        max-width: none;
    }

    .featured-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-filter__field {
        max-width: none;
    }

    .featured-filter .button {
        width: 100%;
    }

    .filter-drawer {
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.025);
        overflow: hidden;
    }

    .filter-drawer__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        width: 100%;
        padding: 0.95rem 1rem;
        cursor: pointer;
        font-family: 'Orbitron', sans-serif;
    }

    .filter-drawer__toggle::after {
        content: '+';
        flex: 0 0 auto;
        font-size: 1.15rem;
        color: var(--primary-strong);
    }

    .filter-drawer[open] .filter-drawer__toggle::after {
        content: '-';
    }

    .filter-drawer__toggle-label,
    .filter-drawer__toggle-meta {
        min-width: 0;
    }

    .filter-drawer__toggle-label {
        color: var(--text);
        font-size: 0.9rem;
    }

    .filter-drawer__toggle-meta {
        margin-left: auto;
        color: var(--muted);
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.8rem;
        text-align: right;
    }

    .filter-drawer__panel {
        padding: 0 0.75rem 0.75rem;
    }

    .filter-drawer:not([open]) .filter-drawer__panel {
        display: none;
    }

    .filter-bar {
        gap: 0.75rem;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .field input,
    .field select {
        font-size: 16px;
        padding: 0.9rem 0.95rem;
    }

    .stream-card__profile {
        align-items: flex-start;
        gap: 0.7rem;
    }

    .stream-card__avatar {
        width: 2.85rem;
        height: 2.85rem;
    }

    .stream-card__title {
        font-size: 0.95rem;
        line-height: 1.38;
    }

    .stream-card__meta {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .live-pill,
    .viewer-pill {
        padding: 0.38rem 0.56rem;
        font-size: 0.68rem;
    }

    .stream-card__actions,
    .featured-stream-card .stream-card__actions,
    .staff-spotlight-card__actions {
        gap: 0.5rem;
    }

    .stream-card__actions .button,
    .featured-stream-card .stream-card__actions .button {
        flex: 1 1 calc(50% - 0.25rem);
    }

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stream-player-status,
    .stream-player-fallback {
        inset: 0.75rem;
    }

    .stream-player-hint {
        right: 1rem;
        bottom: 1rem;
    }

    .stream-player-topbar,
    .stream-chat-topbar {
        flex-direction: column;
        align-items: start;
    }

    .stream-chat-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stream-chat-toolbar {
        align-items: center;
        gap: 0.35rem;
    }

    .stream-chat-search {
        flex-wrap: wrap;
    }

    .mini-player {
        right: 0.5rem;
        bottom: 0.5rem;
        width: calc(100vw - 1rem);
    }

    .mini-player__tab {
        margin-right: 0;
    }

    .mini-player__header {
        flex-direction: column;
    }

    .mini-player__actions {
        width: 100%;
        justify-content: stretch;
    }

    .mini-player__action {
        flex: 1 1 0;
    }

    .mini-player__panel {
        padding: 0.8rem;
    }

    .stream-embed {
        min-height: 360px;
    }

    .stream-embed iframe {
        min-height: 360px;
    }

    .stream-chat-messages {
        min-height: 320px;
        max-height: 320px;
    }

    .stream-pagination__controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.4rem;
        width: 100%;
    }

    .stream-pagination__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .hero-stats,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 0.35rem;
    }

    .hero-copy h1 {
        font-size: 1.45rem;
        max-width: none;
    }

    .hero-copy > .muted-copy,
    .community-server-primary-copy .muted-copy,
    .hero-side > p:not(.eyebrow) {
        display: block;
        font-size: 0.92rem;
    }

    .hero-copy h1 {
        line-height: 1.1;
    }

    .omg-spotlight-card,
    .staff-spotlight-card {
        padding: 0.9rem;
    }

    .staff-spotlight-card__actions .button,
    .community-server-primary-actions .button,
    .stream-card__actions .button,
    .featured-stream-card .stream-card__actions .button {
        width: 100%;
        justify-content: center;
        flex-basis: 100%;
    }

    .hero-stat {
        padding: 0.85rem 0.9rem;
    }

    .featured-stream-card .viewer-pill,
    .featured-stream-card .stream-card__meta {
        display: none;
    }

    .featured-stream-card .stream-card__body {
        padding: 0.7rem;
        gap: 0.5rem;
    }

    .featured-stream-card .stream-card__avatar {
        width: 2rem;
        height: 2rem;
    }

    .featured-stream-card .stream-card__title {
        font-size: 0.84rem;
    }

    .featured-stream-card .button--ghost {
        display: none;
    }

    .stream-grid {
        grid-template-columns: 1fr;
    }

    .stream-pagination__controls {
        grid-template-columns: 1fr;
    }
}