:root {
    --trr-bg-1: #000000;
    --trr-bg-2: #08111f;
    --trr-bg-3: #030912;
    --trr-shell: rgba(8, 15, 28, 0.92);
    --trr-shell-2: rgba(12, 22, 39, 0.9);
    --trr-panel-header: linear-gradient(180deg, rgba(120, 168, 221, 0.96) 0%, rgba(77, 121, 184, 0.96) 100%);
    --trr-panel-body: linear-gradient(180deg, rgba(112, 159, 214, 0.16) 0%, rgba(82, 128, 187, 0.12) 100%);
    --trr-glass: linear-gradient(180deg, rgba(31, 49, 78, 0.9) 0%, rgba(15, 27, 47, 0.9) 100%);
    --trr-glass-2: linear-gradient(180deg, rgba(20, 33, 55, 0.96) 0%, rgba(10, 18, 32, 0.96) 100%);
    --trr-border: rgba(156, 197, 255, 0.22);
    --trr-border-strong: rgba(156, 197, 255, 0.34);
    --trr-text: #e6eefb;
    --trr-muted: #9fb2d3;
    --trr-accent: #7cb8ff;
    --trr-accent-2: #5d91d8;
    --trr-gold: #f2c35d;
    --trr-gold-soft: #ffd98b;
    --trr-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    --trr-shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.24);
    --trr-radius-xl: 28px;
    --trr-radius-lg: 22px;
    --trr-radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    background-color: #000000;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(3, 9, 18, 0.56) 62%, rgba(0, 0, 0, 0.80) 100%),
        url("../gallery/trr-homepage-background.png");
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body {
    margin: 0;
    min-height: 100vh;
    background: transparent;
    color: var(--trr-text);
    font-family: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

.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;
}

.skip-link {
    position: fixed;
    left: 14px;
    top: 14px;
    z-index: 9999;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffd98b 0%, #f2c35d 100%);
    color: #08111f;
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform 0.16s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.skip-link:focus {
    transform: translateY(0);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(124, 184, 255, 0.18) 0%, rgba(124, 184, 255, 0) 28%),
        radial-gradient(circle at 12% 18%, rgba(242, 195, 93, 0.08) 0%, rgba(242, 195, 93, 0) 24%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0.55;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(145, 203, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 203, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
    z-index: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
iframe:focus-visible {
    outline: 3px solid #ffd98b;
    outline-offset: 3px;
}

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

iframe {
    display: block;
    width: 100%;
    border: 1px solid rgba(156, 197, 255, 0.14);
    border-radius: var(--trr-radius-md);
    background: #0b1423;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
}

.site-shell {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 28px));
    margin: 18px auto 28px;
}

.hero,
.panel,
.site-footer {
    border: 1px solid var(--trr-border);
    border-radius: var(--trr-radius-xl);
    overflow: hidden;
    box-shadow: var(--trr-shadow);
}

.hero {
    position: relative;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(8, 16, 29, 0.96) 0%, rgba(5, 12, 23, 0.94) 100%),
        url(../gallery_gen/fd712f599614be838a2eb3e1df12b677_fit.png) center bottom repeat;
}

.hero::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 28px;
    width: min(540px, 72%);
    height: 140px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(124, 184, 255, 0.22) 0%, rgba(124, 184, 255, 0.08) 34%, rgba(124, 184, 255, 0) 72%);
    filter: blur(12px);
    pointer-events: none;
}

.hero-topbar,
.hero-main {
    position: relative;
    z-index: 1;
}

.hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.eyebrow,
.status-pill,
.footer-badge,
.panel__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(145, 203, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(16, 27, 47, 0.92) 0%, rgba(10, 18, 32, 0.92) 100%);
    color: var(--trr-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.panel__label,
.footer-badge,
.crew-player__title,
.info-card__title,
.widget-stack__title {
    margin: 0;
}

.top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.top-nav__link,
.action-button,
.crew-link,
.resource-link {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.top-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid rgba(145, 203, 255, 0.22);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(35, 57, 90, 0.94) 0%, rgba(18, 31, 53, 0.94) 100%);
    color: var(--trr-text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 22px rgba(0, 0, 0, 0.18);
}

.top-nav__link:hover,
.top-nav__link:focus-visible,
.top-nav__link.is-active {
    color: #08111f;
    border-color: rgba(255, 217, 139, 0.48);
    background: linear-gradient(180deg, #ffd98b 0%, #f2c35d 100%);
    box-shadow: 0 12px 28px rgba(242, 195, 93, 0.22);
    transform: translateY(-1px);
}

.hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    width: 100%;
}

.hero-brand {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    margin: 0;
    padding: 8px 10px;
    overflow: visible;
}

.hero-brand__glow {
    position: absolute;
    left: 50%;
    top: 46%;
    width: min(760px, 90%);
    height: min(300px, 100%);
    transform: translate(-50%, -50%) scale(1.58);
    transform-origin: center;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 217, 139, 0.26) 0%, rgba(124, 184, 255, 0.16) 42%, rgba(124, 184, 255, 0) 74%);
    filter: blur(26px);
}

.hero-brand__logo {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: 300px;
    transform: translateY(-14px) scale(1.58);
    transform-origin: center;
    object-fit: contain;
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.34));
}

.hero-copy h1 {
    margin: 16px 0 14px;
    font-family: "Fugaz One", "Inter", sans-serif;
    font-size: clamp(2rem, 4vw, 3.65rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.hero-copy p {
    max-width: 62ch;
    margin: 0;
    color: var(--trr-muted);
    font-size: 16px;
    text-align: center;
}

.hero-copy {
    width: min(760px, 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 10px 8px 10px 18px;
}

.hero-live-banner {
    position: relative;
    display: block;
    width: min(100%, 560px);
    aspect-ratio: 16 / 9;
    margin-left: auto;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: #000;
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.34),
        0 0 24px rgba(0, 140, 255, 0.12);
}

.hero-live-banner__bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-live-banner__livebox {
    position: absolute;
    left: 6.45%;
    top: 39.5%;
    width: 30%;
    height: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-live-banner__livetext {
    font-family: "Seven Segment", monospace;
    font-size: clamp(14px, 2vw, 34px);
    line-height: 0.86;
    letter-spacing: 0.04em;
    color: #fff5f5;
    text-shadow:
        0 0 2px #fff,
        0 0 6px #ff4040,
        0 0 14px #ff2020,
        0 0 28px rgba(255, 0, 0, 1),
        0 0 50px rgba(255, 0, 0, 0.7);
    animation:
        trrHeroLivePulse 1s ease-in-out infinite alternate,
        trrHeroLiveFlicker 3s infinite;
}

@keyframes trrHeroLivePulse {
    0% {
        opacity: 0.6;
        transform: scale(0.97);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes trrHeroLiveFlicker {
    0%, 18%, 22%, 60%, 64%, 100% {
        opacity: 1;
    }

    20% {
        opacity: 0.6;
    }

    62% {
        opacity: 0.8;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 16px;
    border: 1px solid rgba(145, 203, 255, 0.18);
    background: linear-gradient(180deg, rgba(33, 52, 82, 0.96) 0%, rgba(20, 33, 55, 0.96) 100%);
    color: var(--trr-text);
    font-size: 15px;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 18px rgba(0, 0, 0, 0.14);
}

.action-button:hover,
.action-button:focus-visible,
.crew-link:hover,
.crew-link:focus-visible,
.resource-link:hover,
.resource-link:focus-visible {
    transform: translateY(-2px);
}

.action-button--primary {
    color: #08111f;
    border-color: rgba(255, 217, 139, 0.48);
    background: linear-gradient(180deg, #ffd98b 0%, #f2c35d 100%);
    box-shadow: 0 12px 28px rgba(242, 195, 93, 0.22);
}

.action-button--ghost {
    background: transparent;
}

.page-grid {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.panel {
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(12, 22, 39, 0.94) 0%, rgba(9, 17, 31, 0.90) 100%),
        linear-gradient(180deg, rgba(112, 159, 214, 0.08) 0%, rgba(82, 128, 187, 0.02) 100%);
}

.panel--announcement {
    padding: 18px 22px 18px 26px;
    background: linear-gradient(180deg, rgba(28, 45, 73, 0.94) 0%, rgba(18, 31, 53, 0.94) 100%);
    box-shadow: var(--trr-shadow-soft);
    position: relative;
}

.panel--announcement::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd98b 0%, #78a8dd 100%);
}

.panel--announcement p {
    margin: 0;
    padding-left: 8px;
    font-size: 18px;
    font-weight: 700;
}

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

.panel__kicker {
    min-height: 32px;
    margin-bottom: 10px;
    color: var(--trr-muted);
    letter-spacing: 0.14em;
}

.panel__header h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.1;
}

.panel__subtle {
    margin: 0;
    color: var(--trr-muted);
    font-size: 14px;
}

.crew-grid,
.studio-grid,
.resources-grid {
    display: grid;
    gap: 18px;
}

.crew-grid {
    grid-template-columns: minmax(220px, 320px) minmax(520px, 620px);
    align-items: center;
    gap: 22px;
}

.crew-column,
.crew-player,
.quick-actions,
.stack-panel,
.player-panel,
.memorial-panel,
.resource-links,
.info-card,
.widget-stack {
    border: 1px solid rgba(156, 197, 255, 0.18);
    border-radius: var(--trr-radius-lg);
    background:
        linear-gradient(180deg, rgba(12, 20, 36, 0.94) 0%, rgba(9, 16, 29, 0.92) 100%),
        linear-gradient(180deg, rgba(112, 159, 214, 0.08) 0%, rgba(82, 128, 187, 0.02) 100%);
    box-shadow: var(--trr-shadow-soft);
    overflow: hidden;
}

.crew-column__title,
.quick-actions__title,
.stack-panel__title,
.player-panel__title,
.memorial-panel__title,
.info-card__title,
.widget-stack__title {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    background: var(--trr-panel-header);
    color: #f5f8ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.crew-player__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    padding: 16px 18px 4px;
    background: transparent;
    color: #9cd3ff;
    font-family: "Fugaz One", "Inter", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(0, 210, 255, 0.22),
        0 0 24px rgba(0, 210, 255, 0.12);
}

.crew-player__title::before,
.crew-player__title::after {
    content: "";
    flex: 1 1 auto;
    max-width: 88px;
    height: 1px;
    background: linear-gradient(90deg, rgba(124, 184, 255, 0) 0%, rgba(124, 184, 255, 0.42) 100%);
}

.crew-player__title::after {
    background: linear-gradient(90deg, rgba(124, 184, 255, 0.42) 0%, rgba(124, 184, 255, 0) 100%);
}

.crew-links,
.resource-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.crew-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.crew-column .crew-links {
    justify-content: flex-start;
}

.crew-player {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
    isolation: isolate;
    justify-self: center;
    width: 100%;
    max-width: 620px;
    align-self: center;
    overflow: visible;
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(124, 184, 255, 0.12),
        0 0 36px rgba(124, 184, 255, 0.12);
}

.crew-player__body {
    display: flex;
    position: relative;
    z-index: 4;
    align-items: center;
    justify-content: center;
    padding: 18px 18px 24px;
    overflow: visible;
}

.crew-player__body::after {
    content: "";
    position: absolute;
    inset: 18px 18px 24px;
    border-radius: var(--trr-radius-lg);
    border: 2px solid rgba(0, 210, 255, 0.94);
    box-shadow:
        inset 0 0 10px rgba(0, 210, 255, 0.12),
        0 0 12px rgba(0, 210, 255, 0.54),
        0 0 24px rgba(0, 210, 255, 0.34),
        0 0 42px rgba(0, 210, 255, 0.18);
    pointer-events: none;
    z-index: 6;
}

.crew-player__body iframe {
    width: 100%;
    height: 536px;
    min-height: 536px;
    position: relative;
    z-index: 5;
    border-radius: var(--trr-radius-lg);
    overflow: hidden;
}

.crew-link,
.resource-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid rgba(124, 184, 255, 0.18);
    border-radius: var(--trr-radius-md);
    background: linear-gradient(180deg, rgba(33, 52, 82, 0.96) 0%, rgba(20, 33, 55, 0.96) 100%);
    color: var(--trr-gold-soft);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 18px rgba(0, 0, 0, 0.14);
}

.crew-link:hover,
.crew-link:focus-visible,
.resource-link:hover,
.resource-link:focus-visible {
    color: #08111f;
    border-color: rgba(255, 217, 139, 0.50);
    background: linear-gradient(180deg, #ffd98b 0%, #f2c35d 100%);
    box-shadow: 0 14px 26px rgba(242, 195, 93, 0.22);
}

.crew-link--placeholder {
    color: var(--trr-muted);
    background: linear-gradient(180deg, rgba(24, 38, 61, 0.96) 0%, rgba(13, 23, 40, 0.96) 100%);
}

.quick-actions {
    display: flex;
    flex-direction: column;
}

.promo-card {
    display: block;
    margin: 16px;
    border: 1px solid rgba(156, 197, 255, 0.12);
    border-radius: var(--trr-radius-md);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30, 47, 74, 0.58) 0%, rgba(14, 26, 46, 0.58) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promo-card:hover,
.promo-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.promo-card img {
    width: 100%;
}

.promo-card span {
    display: block;
    padding: 12px 14px 14px;
    font-weight: 700;
    text-align: center;
}

.studio-grid {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr) minmax(170px, 210px);
    align-items: start;
}

.stack-panel,
.player-panel,
.memorial-panel,
.widget-stack {
    padding-bottom: 16px;
}

.stack-panel__title,
.player-panel__title,
.memorial-panel__title,
.widget-stack__title {
    margin-bottom: 16px;
}

.embed-shell {
    margin: 0 16px 16px;
    padding: 12px;
    border: 1px solid rgba(156, 197, 255, 0.12);
    border-radius: var(--trr-radius-md);
    background: linear-gradient(180deg, rgba(30, 47, 74, 0.58) 0%, rgba(14, 26, 46, 0.58) 100%);
}

.embed-shell--pill iframe {
    min-height: 44px;
    border-radius: 999px;
}

.embed-shell--tall iframe {
    min-height: 200px;
}

.embed-shell--player iframe {
    min-height: 240px;
}

.memorial-card {
    display: block;
    margin: 0 16px;
    border: 1px solid rgba(156, 197, 255, 0.12);
    border-radius: var(--trr-radius-md);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30, 47, 74, 0.58) 0%, rgba(14, 26, 46, 0.58) 100%);
}

.widget-stack .memorial-card {
    margin: 0 16px 16px;
}

.memorial-card span {
    display: block;
    padding: 14px;
    color: var(--trr-gold-soft);
    font-weight: 700;
    text-align: center;
}

.resources-grid {
    grid-template-columns: minmax(220px, 290px) minmax(300px, 1fr) minmax(300px, 1fr);
    align-items: stretch;
}

.resource-links,
.info-card,
.widget-stack {
    height: 100%;
}

.info-card,
.widget-stack {
    display: flex;
    flex-direction: column;
}

.info-card img {
    width: 100%;
    display: block;
}

.info-card__body {
    padding: 16px;
    flex: 1 1 auto;
}

.info-card__copy {
    margin: 0 0 14px;
    color: var(--trr-muted);
    font-size: 17px;
    line-height: 1.85;
}

.info-card__copy:last-child {
    margin-bottom: 0;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 16px 16px;
    align-items: stretch;
}

.mini-card {
    position: relative;
    border: 1px solid rgba(156, 197, 255, 0.12);
    border-radius: var(--trr-radius-md);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30, 47, 74, 0.58) 0%, rgba(14, 26, 46, 0.58) 100%);
}

.mini-card--badge {
    display: grid;
    place-items: center;
    min-height: 176px;
    padding: 0;
    background:
        radial-gradient(circle at center, rgba(124, 184, 255, 0.14) 0%, rgba(124, 184, 255, 0.04) 46%, rgba(14, 26, 46, 0.58) 100%),
        linear-gradient(180deg, rgba(30, 47, 74, 0.58) 0%, rgba(14, 26, 46, 0.58) 100%);
  }

.mini-card--badge img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
    filter: none;
    background: linear-gradient(180deg, rgba(12, 20, 36, 0.12) 0%, rgba(9, 16, 29, 0.08) 100%);
}

.mini-card--logo {
    display: grid;
    place-items: center;
    min-height: 176px;
    padding: 0;
}

.mini-card--logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    filter: none;
    background: linear-gradient(180deg, rgba(12, 20, 36, 0.12) 0%, rgba(9, 16, 29, 0.08) 100%);
}


.embed-shell--compact-player iframe {
    min-height: 150px;
}

.site-footer {
    margin-top: 18px;
    padding: 22px 24px;
    background:
        linear-gradient(180deg, rgba(7, 14, 27, 0.96) 0%, rgba(4, 11, 21, 0.96) 100%),
        url(../gallery_gen/fd712f599614be838a2eb3e1df12b677_fit.png) center bottom repeat;
}

.site-footer__copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: var(--trr-muted);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer__copy p {
    margin: 0;
}

.site-footer__copy p + p {
    margin-top: 6px;
}

.site-footer__copy a {
    color: var(--trr-accent);
    font-weight: 700;
}

.site-footer__copy a:hover,
.site-footer__copy a:focus-visible {
    color: #c5e2ff;
}

@media (max-width: 1199px) {
    .hero-main {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

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

    .widget-stack,
    .info-card {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .site-shell {
        width: calc(100% - 20px);
        margin-top: 12px;
    }

    .hero {
        padding: 18px;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-copy {
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .hero-live-banner {
        margin: 0 auto;
    }

    .hero-brand__logo {
        max-height: 240px;
        transform: translateY(-8px) scale(1.38);
    }

    .hero-brand {
        justify-content: center;
        min-height: 260px;
        padding: 4px 0 2px;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }

    .crew-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .crew-player,
    .widget-stack,
    .info-card {
        grid-column: auto;
    }

    .crew-player__body iframe {
        height: 536px;
        min-height: 536px;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: calc(100% - 12px);
    }

    .hero,
    .panel,
    .site-footer {
        border-radius: 20px;
    }

    .hero-topbar {
        margin-bottom: 20px;
    }

    .top-nav {
        justify-content: stretch;
    }

    .top-nav__link,
    .action-button {
        width: 100%;
    }

    .panel,
    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .panel--announcement {
        padding: 16px 16px 16px 20px;
    }

    .panel--announcement p {
        font-size: 16px;
    }

    .badge-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 18px 14px;
    }
}
