.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 9, 15, 0.86);
    backdrop-filter: blur(18px);
}

:root[data-theme="light"] .site-header {
    background: rgba(245, 247, 251, 0.88);
    border-bottom-color: rgba(17, 24, 39, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 22px;
    width: min(100% - 32px, 1400px);
    min-height: var(--header-height);
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 800;
}

.brand.small {
    margin-bottom: 10px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: var(--surface-2);
    object-fit: cover;
}

.brand-name {
    font-size: 24px;
    letter-spacing: 0;
}

.primary-nav,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-nav a,
.site-footer nav a {
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 12px;
}

.primary-nav a:hover,
.primary-nav a.is-active,
.site-footer nav a:hover {
    background: var(--surface-2);
    color: var(--text);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 23, 34, 0.72);
    padding: 0 10px;
}

:root[data-theme="light"] .search-box {
    background: rgba(255, 255, 255, 0.86);
}

.search-box svg {
    color: var(--muted);
    flex: 0 0 auto;
}

.search-box input {
    min-height: 42px;
    border: 0;
    background: transparent;
    padding: 0;
}

.search-clear {
    display: none;
    width: 32px;
    height: 32px;
}

.search-box.has-value .search-clear {
    display: inline-grid;
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    max-height: 430px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 17, 27, 0.98);
    box-shadow: var(--shadow);
    padding: 8px;
}

:root[data-theme="light"] .search-results {
    background: rgba(255, 255, 255, 0.98);
}

.search-results.is-open {
    display: grid;
    gap: 6px;
}

.search-result {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    padding: 8px;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.search-result:hover {
    background: var(--surface-2);
}

.search-result img {
    width: 44px;
    height: 62px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--surface-2);
}

.search-result strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.search-result span {
    color: var(--muted);
    font-size: 12px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.icon-button:hover {
    border-color: var(--line-strong);
    background: var(--surface-2);
}

.search-box .search-clear {
    display: none;
}

.search-box.has-value .search-clear {
    display: inline-grid;
}

.mobile-menu-button,
.mobile-search {
    display: none;
}

.mobile-drawer {
    position: fixed;
    top: var(--header-height);
    right: 12px;
    z-index: 50;
    display: none;
    width: min(310px, calc(100% - 24px));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 8px;
}

.mobile-drawer.is-open {
    display: block;
}

.mobile-drawer nav {
    display: grid;
    gap: 4px;
}

.mobile-drawer a {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius);
    color: var(--muted);
    font-weight: 700;
    padding: 13px 12px;
}

.mobile-drawer a:hover,
.mobile-drawer a.is-active {
    background: var(--surface-2);
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 15, 0.98) 0%, rgba(7, 9, 15, 0.72) 38%, rgba(7, 9, 15, 0.1) 74%),
        linear-gradient(0deg, rgba(7, 9, 15, 0.95), transparent 55%);
}

:root[data-theme="light"] .hero::after {
    background:
        linear-gradient(90deg, rgba(245, 247, 251, 0.97) 0%, rgba(245, 247, 251, 0.72) 40%, rgba(245, 247, 251, 0.08) 75%),
        linear-gradient(0deg, rgba(245, 247, 251, 0.95), transparent 55%);
}

.hero-backdrop,
.hero-backdrop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-backdrop img {
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 16px;
    width: min(640px, 100%);
    min-height: 570px;
    padding: 56px;
}

.hero p {
    margin: 0;
    max-width: 58ch;
    color: var(--muted);
    font-size: 17px;
}

.hero-actions,
.card-actions,
.details-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 800;
}

.button {
    border: 1px solid transparent;
    padding: 0 15px;
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), #ff7f50);
    color: white;
}

.button-primary:hover {
    filter: brightness(1.06);
}

.button-secondary {
    border-color: var(--line);
    background: var(--surface-2);
    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--line-strong);
    background: var(--surface-3);
}

.button-ghost,
.text-button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.button-ghost:hover,
.text-button:hover {
    background: var(--surface-2);
}

.button.is-saved,
.button-secondary.is-saved {
    border-color: rgba(45, 212, 191, 0.5);
    background: rgba(45, 212, 191, 0.14);
    color: var(--text);
}

.text-button {
    min-height: 36px;
    padding: 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(17, 23, 34, 0.76);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    padding: 0 10px;
}

:root[data-theme="light"] .pill {
    background: rgba(255, 255, 255, 0.78);
}

.quick-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 36px;
}

.quick-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-weight: 800;
    padding: 14px;
    text-align: left;
}

.quick-tile:hover {
    border-color: var(--line-strong);
    background: var(--surface-2);
}

.quick-tile svg {
    width: 24px;
    height: 24px;
    color: var(--accent-3);
}

.content-band {
    margin: 0 0 42px;
}

.rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 184px;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-snap-type: x proximity;
}

.media-card {
    position: relative;
    display: grid;
    gap: 9px;
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    text-align: left;
    scroll-snap-align: start;
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease, opacity 240ms ease;
}

.media-card:hover .poster-wrap img {
    transform: scale(1.045);
}

.poster-fade {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent);
    padding: 26px 10px 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    border-radius: 999px;
    background: rgba(246, 196, 83, 0.16);
    color: var(--accent-3);
    font-size: 12px;
    font-weight: 800;
    padding: 0 8px;
}

.badge svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.media-title {
    min-height: 42px;
    overflow: hidden;
}

.media-title strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.media-title span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.grid-shell {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 18px 14px;
}

.grid-shell > .empty-state,
.grid-shell > .error-state {
    grid-column: 1 / -1;
}

.grid-shell .media-card {
    min-width: 0;
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(140px, 0.7fr) minmax(160px, 1fr) auto;
    align-items: end;
    gap: 12px;
    margin: 0 0 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 14px;
}

.catalog-toolbar label,
.side-panel label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.catalog-toolbar label span,
.side-panel label span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-toolbar select,
.side-panel select {
    min-height: 42px;
    padding: 0 10px;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin: 28px 0 0;
}

.empty-state,
.error-state {
    display: grid;
    place-items: center;
    min-height: 260px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    padding: 28px;
    text-align: center;
}

.empty-state svg,
.error-state svg,
.player-empty svg {
    width: 48px;
    height: 48px;
    color: var(--accent-2);
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
}

.player-main,
.player-side {
    min-width: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    margin-bottom: 12px;
    color: var(--muted);
    font-weight: 800;
}

.back-link:hover {
    color: var(--text);
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #000;
    box-shadow: var(--shadow);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
}

.player-empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: var(--muted);
}

.player-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    margin: 18px 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 18px;
}

.player-meta p {
    margin: 10px 0 0;
    color: var(--muted);
}

.meta-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.meta-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 12px;
}

.meta-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.meta-item strong {
    display: block;
    margin-top: 3px;
}

.side-panel {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 14px;
}

.episode-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 430px;
    overflow: auto;
}

.episode-button {
    display: grid;
    gap: 2px;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    text-align: left;
}

.episode-button:hover,
.episode-button.is-active {
    border-color: var(--accent);
    background: rgba(255, 77, 109, 0.15);
}

.episode-button strong {
    font-size: 13px;
}

.episode-button span {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-list {
    display: grid;
    gap: 10px;
}

.mini-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.mini-card:hover {
    background: var(--surface-2);
}

.mini-card img {
    width: 58px;
    height: 84px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--surface-2);
}

.mini-card strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mini-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.details-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
}

.details-sheet {
    position: fixed;
    inset: 50% auto auto 50%;
    z-index: 90;
    width: min(1040px, calc(100% - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;
    transform: translate(-50%, -50%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.details-close {
    position: sticky;
    top: 12px;
    float: right;
    z-index: 2;
    margin: 12px 12px 0 0;
    background: rgba(0, 0, 0, 0.54);
    color: white;
}

.details-hero {
    position: relative;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    min-height: 430px;
    padding: 110px 28px 28px;
}

.details-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.details-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.details-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent, var(--surface) 88%),
        linear-gradient(90deg, var(--surface), transparent 70%);
}

.details-poster,
.details-info {
    position: relative;
    z-index: 1;
}

.details-poster img {
    width: 240px;
    aspect-ratio: 2 / 3;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--surface-2);
}

.details-info {
    align-self: end;
    display: grid;
    gap: 14px;
}

.details-info h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.08;
}

.details-info p {
    margin: 0;
    max-width: 74ch;
    color: var(--muted);
}

.details-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 28px 28px;
    min-width: 0;
}
.details-body > * {
    min-width: 0;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.cast-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
    padding: 10px;
}

.cast-card strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cast-card span {
    display: block;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.toast-region {
    position: fixed;
    right: 18px;
    bottom: 92px;
    z-index: 100;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100% - 36px));
}

.toast {
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent-2);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 12px 14px;
    color: var(--text);
    font-weight: 700;
}



.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding: 34px 0 96px;
    color: var(--muted);
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}

.text-page {
    max-width: 760px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 28px;
}

.text-page p {
    color: var(--muted);
}

/* Cineby-inspired visual pass: flatter, darker, more cinematic. */
.app-shell {
    padding-top: 0;
}

.site-header {
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.58), transparent);
    backdrop-filter: none;
}

.header-inner {
    grid-template-columns: auto minmax(0, 1fr) minmax(220px, 360px) auto;
    width: min(100% - 32px, 1500px);
}

.brand-mark {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    object-fit: contain;
}

.brand-name {
    color: #fff;
    font-size: 26px;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.52);
}

.primary-nav {
    justify-content: flex-end;
}

.primary-nav a,
.site-footer nav a {
    color: rgba(238, 241, 246, 0.82);
}

.primary-nav a:hover,
.primary-nav a.is-active,
.site-footer nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.search-box {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(5, 7, 10, 0.46);
}

.search-box input {
    color: #fff;
}

.icon-button {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(5, 7, 10, 0.48);
    color: #fff;
}

.page:not(#home) {
    padding-top: calc(var(--header-height) + 26px);
}

#home.page {
    width: 100%;
    padding: 0 0 88px;
}

#home .content-band {
    width: min(100% - 32px, 1500px);
    margin-right: auto;
    margin-left: auto;
}

.hero {
    min-height: 760px;
    border: 0;
    border-radius: 0;
    background: #05070a;
    box-shadow: none;
}

.hero::after {
    background:
        radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.08), transparent 22rem),
        linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(5, 7, 10, 0.76) 36%, rgba(5, 7, 10, 0.13) 74%),
        linear-gradient(0deg, #05070a 0%, rgba(5, 7, 10, 0.72) 19%, transparent 48%);
}

.hero-backdrop img {
    filter: saturate(0.9) contrast(1.03);
}

.hero-content {
    width: min(720px, 100%);
    min-height: 760px;
    padding: 110px 32px 132px clamp(20px, 4vw, 74px);
}

.hero h1 {
    font-size: clamp(38px, 5.1vw, 72px);
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.78);
}

.hero p {
    display: -webkit-box;
    max-width: 58ch;
    overflow: hidden;
    color: rgba(238, 241, 246, 0.83);
    font-size: 17px;
    font-weight: 600;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.eyebrow {
    color: #ff3344;
}

.pill {
    min-height: 0;
    border: 0;
    background: transparent;
    color: rgba(238, 241, 246, 0.82);
    padding: 0;
}

.pill + .pill::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(238, 241, 246, 0.28);
}

.pill:first-child {
    color: #ff3344;
}

.button {
    min-height: 46px;
    border-radius: 999px;
    padding: 0 24px;
}

.hero .button-primary {
    background: #f4f6fb;
    color: #05070a;
}

.hero .button-secondary,
.hero .button-ghost {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(5, 7, 10, 0.46);
    color: #eef1f6;
}

.button-primary {
    background: #ef2435;
}

.top-ten-band {
    margin-top: -74px;
    position: relative;
    z-index: 2;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2,
.page-head h1 {
    color: #fff;
    font-weight: 900;
}

.section-heading .eyebrow {
    display: none;
}

.top-ten-band .section-heading h2::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 24px;
    margin-right: 10px;
    background: #ef2435;
    vertical-align: -4px;
}

.rail {
    grid-auto-columns: 190px;
    gap: 12px;
}

.top-rail {
    grid-auto-columns: 220px;
}

.top-rail .poster-wrap {
    aspect-ratio: 16 / 9;
}

.top-rail .media-title strong {
    font-size: 13px;
}

.poster-wrap {
    border-color: rgba(255, 255, 255, 0.09);
    background: #11151c;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.poster-fade {
    min-height: 72px;
    opacity: 0;
    transition: opacity 180ms ease;
}

.media-card:hover .poster-fade {
    opacity: 1;
}

.badge {
    background: rgba(5, 7, 10, 0.72);
    color: #ff3344;
}

.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    min-width: 34px;
    min-height: 40px;
    border-radius: 0 0 8px 0;
    background: #ef2435;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 0.9;
    padding: 5px 6px;
}

.rank-badge span {
    display: block;
    font-size: 9px;
}

.catalog-toolbar,
.player-meta,
.side-panel,
.text-page,
.details-sheet {
    background: rgba(13, 17, 24, 0.92);
}




@keyframes live-tv-glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 77, 109, 0.5);
        color: #ff4d6d;
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 77, 109, 1), 0 0 10px rgba(255, 77, 109, 0.8);
        color: #ff8fa3;
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 77, 109, 0.5);
        color: #ff4d6d;
    }
}

.live-tv-glow {
    animation: live-tv-glow 2s infinite alternate !important;
    font-weight: 800 !important;
}
.live-tv-glow svg, .live-tv-glow i {
    color: inherit !important;
}
