:root {
    --bg: #f8fafc;
    --paper: #ffffff;
    --paper-soft: #f0f9ff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --sky: #0ea5e9;
    --sky-dark: #0284c7;
    --blue: #2563eb;
    --black: #020617;
    --radius: 24px;
    --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 48%, #f8fafc 100%);
    color: var(--ink);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(226, 232, 240, 0.78);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
}

.logo-text {
    font-size: 19px;
}

.desktop-nav,
.mobile-menu,
.footer-links,
.hero-actions,
.hero-shortcuts,
.detail-meta,
.card-meta,
.chip-row {
    display: flex;
    align-items: center;
}

.desktop-nav {
    gap: 8px;
}

.nav-link {
    padding: 10px 15px;
    border-radius: 999px;
    color: #475569;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sky-dark);
    background: #e0f2fe;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    color: var(--ink);
    background: #ffffff;
    padding: 9px 14px;
    border-radius: 14px;
    font-weight: 800;
}

.mobile-menu {
    display: none;
    padding: 0 22px 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-carousel {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    color: #ffffff;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    transform: scale(1.03);
    filter: saturate(1.06) contrast(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 35%, rgba(14, 165, 233, 0.22), transparent 34%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.68) 45%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.05));
}

.hero-content {
    position: absolute;
    left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    right: max(22px, calc((100vw - 1280px) / 2 + 22px));
    bottom: 112px;
    max-width: 760px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #0369a1;
    background: #e0f2fe;
}

.hero-kicker {
    color: #ffffff;
    background: rgba(14, 165, 233, 0.78);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 6.5vw, 86px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.07em;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-meta span,
.detail-meta span,
.card-meta span,
.chip-row span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 750;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.ghost-btn,
.text-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: var(--sky-dark);
    background: #eff6ff;
}

.ghost-btn.light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-panel {
    position: absolute;
    left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    right: max(22px, calc((100vw - 1280px) / 2 + 22px));
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero-search {
    display: flex;
    width: min(520px, 100%);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 0 16px;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.hero-search button {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--sky);
    padding: 10px 18px;
    font-weight: 900;
}

.hero-shortcuts {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-shortcuts a {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    font-weight: 800;
}

.hero-dots {
    position: absolute;
    z-index: 6;
    right: max(22px, calc((100vw - 1280px) / 2 + 22px));
    bottom: 104px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #ffffff;
}

.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 22px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.section-heading h2,
.page-hero h1,
.story-panel h2,
.detail-info h1 {
    margin: 12px 0 0;
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1.06;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.page-hero p,
.category-overview-card p,
.update-panel p,
.story-panel p,
.detail-one-line {
    color: var(--muted);
    line-height: 1.85;
}

.section-heading p {
    margin: 12px 0 0;
    max-width: 760px;
}

.section-more,
.text-link {
    color: var(--sky-dark);
    background: #e0f2fe;
}

.catalog-tools {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 22px;
}

.search-label,
.select-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    padding: 0 14px;
}

.search-label span,
.select-label span {
    color: var(--sky-dark);
    font-weight: 900;
}

.catalog-input,
.select-label select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

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

.dense-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: var(--shadow);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.1;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
}

.poster-wrap img,
.category-tile img,
.mini-poster img,
.detail-poster img {
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-wrap img,
.category-tile:hover img,
.mini-card:hover .mini-poster img,
.detail-poster:hover img {
    transform: scale(1.06);
}

.poster-gradient {
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent);
}

.type-badge,
.rank-badge,
.mini-rank {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
}

.type-badge {
    left: 12px;
    top: 12px;
    padding: 7px 10px;
    background: rgba(14, 165, 233, 0.9);
}

.rank-badge {
    right: 12px;
    top: 12px;
    padding: 7px 10px;
    background: rgba(2, 6, 23, 0.74);
}

.card-content {
    padding: 16px;
}

.card-meta {
    gap: 8px;
    margin-bottom: 10px;
}

.card-meta span,
.chip-row span,
.detail-meta span {
    border-color: #e0f2fe;
    color: #0369a1;
    background: #f0f9ff;
}

.card-content h3,
.mini-content h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.card-content h3 a:hover,
.mini-content h3 a:hover,
.category-overview-card h2 a:hover {
    color: var(--sky-dark);
}

.card-content p {
    min-height: 52px;
    margin: 10px 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.chip-row {
    gap: 7px;
    flex-wrap: wrap;
}

.chip-row span {
    padding: 5px 9px;
    font-size: 12px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    background: #0f172a;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.16));
}

.category-tile strong,
.category-tile em {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
}

.category-tile strong {
    bottom: 66px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
}

.category-tile em {
    bottom: 18px;
    color: #dbeafe;
    font-size: 13px;
    line-height: 1.55;
    font-style: normal;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.ranking-list {
    display: grid;
    gap: 14px;
}

.wide-list,
.related-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    padding: 10px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.1);
}

.mini-poster {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 14px;
    background: #dbeafe;
}

.mini-rank {
    left: 7px;
    top: 7px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--sky), var(--blue));
}

.mini-content h3 {
    font-size: 16px;
}

.mini-content p {
    margin: 6px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.mini-content span {
    color: #0369a1;
    font-size: 12px;
    font-weight: 800;
}

.update-panel {
    position: sticky;
    top: 96px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(125, 211, 252, 0.35), transparent 35%),
        linear-gradient(135deg, #0f172a, #075985 62%, #0284c7);
    box-shadow: var(--shadow);
    padding: 30px;
}

.update-panel span {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    color: #0f172a;
    background: #bae6fd;
    font-weight: 950;
}

.update-panel h2 {
    margin: 20px 0 12px;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.update-panel p {
    color: #dbeafe;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 20%, rgba(14, 165, 233, 0.34), transparent 28%),
        linear-gradient(135deg, #020617, #075985 64%, #0ea5e9);
}

.page-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
}

.page-hero > div {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 22px;
}

.small-hero h1,
.ranking-hero h1 {
    max-width: 900px;
    font-size: clamp(42px, 6vw, 72px);
}

.page-hero p {
    max-width: 760px;
    color: #dbeafe;
    font-size: 18px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 750;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: 16px;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    height: 150px;
    overflow: hidden;
    border-radius: 20px;
    background: #dbeafe;
}

.category-cover-stack img:nth-child(2) {
    transform: translateY(12px);
}

.category-cover-stack img:nth-child(3) {
    transform: translateY(24px);
}

.category-overview-card span {
    color: var(--sky-dark);
    font-weight: 950;
}

.category-overview-card h2 {
    margin: 8px 0;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-hero {
    min-height: 640px;
}

.detail-bg,
.detail-bg-shade {
    position: absolute;
    inset: 0;
}

.detail-bg {
    filter: blur(14px) saturate(1.05);
    transform: scale(1.08);
    opacity: 0.58;
}

.detail-bg-shade {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.2)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.1));
}

.detail-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 22px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: end;
}

.detail-poster {
    aspect-ratio: 3 / 4.1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    background: #dbeafe;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.detail-info h1 {
    max-width: 860px;
    color: #ffffff;
    font-size: clamp(44px, 7vw, 88px);
}

.detail-one-line {
    max-width: 850px;
    color: #e0f2fe;
    font-size: 19px;
}

.detail-meta,
.detail-chips {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.detail-meta span,
.detail-chips span {
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 26px;
    align-items: start;
}

.watch-panel,
.story-panel {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    padding: 20px;
}

.compact-heading {
    margin-bottom: 16px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #020617;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #020617;
    object-fit: cover;
}

.player-trigger {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.24));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-trigger.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-symbol {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    box-shadow: 0 20px 46px rgba(14, 165, 233, 0.42);
}

.play-symbol::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #ffffff;
}

.player-trigger strong {
    font-size: 18px;
}

.story-panel {
    padding: 30px;
}

.story-panel h2 {
    margin-top: 0;
    font-size: 28px;
}

.story-panel h2:not(:first-child) {
    margin-top: 28px;
}

.story-panel p {
    margin: 12px 0 0;
    font-size: 16px;
}

.empty-state {
    border: 1px dashed #bae6fd;
    border-radius: 22px;
    color: var(--sky-dark);
    background: #f0f9ff;
    padding: 28px;
    text-align: center;
    font-weight: 900;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #0369a1;
    font-weight: 800;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1120px) {
    .movie-grid,
    .dense-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-section,
    .detail-content,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .update-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 820px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-menu.is-open {
        display: flex;
    }

    .hero-carousel {
        min-height: 760px;
    }

    .hero-content {
        bottom: 230px;
    }

    .hero-panel {
        align-items: stretch;
        flex-direction: column;
        bottom: 74px;
    }

    .hero-dots {
        left: 22px;
        right: auto;
        bottom: 30px;
    }

    .hero-shortcuts {
        justify-content: flex-start;
    }

    .catalog-tools {
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .dense-grid,
    .ranking-grid,
    .wide-list,
    .related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .detail-poster {
        max-width: 260px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding-inline: 16px;
    }

    .logo-text {
        font-size: 16px;
    }

    .section {
        padding: 54px 16px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .dense-grid,
    .ranking-grid,
    .wide-list,
    .related-list,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .mini-card {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .category-cover-stack {
        height: 190px;
    }

    .hero-content h1,
    .detail-info h1,
    .page-hero h1 {
        letter-spacing: -0.045em;
    }

    .detail-inner,
    .page-hero > div {
        padding-inline: 16px;
    }

    .watch-panel,
    .story-panel {
        border-radius: 24px;
        padding: 16px;
    }
}
