:root {
    --red-950: #450a0a;
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --amber-950: #451a03;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --cream: #fff7ed;
    --ink: #2f1515;
    --muted: #7c5d47;
    --line: rgba(146, 64, 14, 0.22);
    --shadow: 0 22px 45px rgba(69, 10, 10, 0.16);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(180deg, #fff7ed 0%, #fff1f2 44%, #fff7ed 100%);
}

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: 50;
    border-bottom: 2px solid rgba(217, 119, 6, 0.65);
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.96), rgba(255, 241, 242, 0.96), rgba(254, 243, 199, 0.96));
    box-shadow: 0 10px 30px rgba(69, 10, 10, 0.12);
    backdrop-filter: blur(18px);
}

.header-shell,
.footer-shell,
.section-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    box-shadow: 0 12px 24px rgba(185, 28, 28, 0.22);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    color: var(--red-900);
    font-size: 24px;
    letter-spacing: 0.02em;
}

.brand-text em {
    color: var(--amber-700);
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.18em;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.nav-link,
.mobile-link {
    color: var(--red-900);
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 13px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-700);
    background: rgba(252, 211, 77, 0.28);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(69, 10, 10, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--red-900);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    display: block;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.66);
}

.hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 78% 26%, rgba(252, 211, 77, 0.28), transparent 28%), linear-gradient(90deg, var(--red-950), var(--red-900) 45%, var(--amber-800));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: patternPulse 7s ease-in-out infinite;
}

@keyframes patternPulse {
    0%, 100% {
        opacity: 0.12;
    }
    50% {
        opacity: 0.22;
    }
}

.hero-carousel {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    min-height: 500px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.62fr);
    align-items: center;
    gap: 44px;
    padding: 62px 0 96px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.detail-hero .eyebrow {
    color: var(--amber-300);
}

.hero h1 {
    max-width: 760px;
    margin: 16px 0 12px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero h2 {
    margin: 0 0 16px;
    color: var(--amber-300);
    font-size: clamp(24px, 3vw, 38px);
}

.hero p {
    max-width: 730px;
    margin: 0 0 22px;
    color: #ffedd5;
    font-size: 19px;
    line-height: 1.8;
}

.hero-tags,
.tag-row,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
    border: 1px solid rgba(251, 191, 36, 0.34);
    border-radius: 999px;
    padding: 6px 11px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.tag-row span {
    color: var(--amber-800);
    background: rgba(254, 243, 199, 0.72);
}

.detail-meta span {
    color: var(--red-900);
    background: #fff7ed;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.primary-btn,
.ghost-btn,
.inline-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 22px;
    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(--red-700), var(--amber-600));
    box-shadow: 0 14px 28px rgba(185, 28, 28, 0.24);
}

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

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.14);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 32px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 42%, rgba(69, 10, 10, 0.88));
}

.hero-poster-title {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    font-size: 22px;
    font-weight: 900;
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 12px;
    width: min(1180px, calc(100% - 32px));
    margin: -78px auto 34px;
}

.hero-stats a {
    min-width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 18px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-stats strong {
    display: block;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.hero-stats span {
    color: #fde68a;
    font-size: 13px;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 36px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--amber-300);
}

.section-shell {
    padding: 72px 0;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-title h2,
.filter-panel h2,
.detail-content h2,
.category-overview-body h2 {
    margin: 4px 0 0;
    color: var(--red-950);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.18;
}

.section-title a,
.inline-more {
    color: var(--amber-800);
    font-weight: 900;
}

.section-band {
    background: linear-gradient(90deg, rgba(254, 243, 199, 0.72), rgba(254, 226, 226, 0.78), rgba(254, 243, 199, 0.72));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(146, 64, 14, 0.18);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(69, 10, 10, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-900), var(--amber-800));
}

.poster-link img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.04);
}

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(69, 10, 10, 0.7));
}

.card-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(185, 28, 28, 0.92);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.movie-card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 800;
}

.movie-card h2,
.rank-item h2 {
    margin: 10px 0 8px;
    color: var(--red-950);
    font-size: 20px;
    line-height: 1.25;
}

.movie-card p,
.rank-item p,
.category-overview-body p,
.footer-brand p,
.page-hero p,
.detail-one-line,
.detail-content p {
    color: var(--muted);
    line-height: 1.75;
}

.movie-card p {
    min-height: 54px;
    margin: 0 0 14px;
    font-size: 14px;
}

.tag-row {
    gap: 6px;
}

.tag-row span {
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.category-tile::after,
.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(69, 10, 10, 0.88));
}

.category-tile span {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
    bottom: 18px;
}

.category-tile strong {
    display: block;
    font-size: 24px;
}

.category-tile em {
    display: block;
    margin-top: 8px;
    color: #ffedd5;
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 12px;
}

.rank-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}

.rank-cover strong {
    position: absolute;
    top: 8px;
    left: 8px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    box-shadow: 0 10px 20px rgba(69, 10, 10, 0.24);
}

.rank-score {
    display: inline-flex;
    margin-bottom: 4px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    background: var(--red-700);
}

.rank-item h2 {
    font-size: 18px;
}

.rank-item p {
    margin: 0 0 7px;
    font-size: 14px;
}

.rank-item em {
    color: var(--amber-800);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.filter-panel {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: end;
    gap: 18px;
    margin-bottom: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(69, 10, 10, 0.08);
}

.filter-controls {
    display: grid;
    grid-template-columns: 1fr 160px 150px;
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(146, 64, 14, 0.22);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--ink);
    background: #fffaf0;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--amber-600);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.empty-state {
    display: none;
    margin: 26px 0 0;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 255, 255, 0.76);
}

.empty-state.show {
    display: block;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 82% 20%, rgba(252, 211, 77, 0.26), transparent 30%), linear-gradient(90deg, var(--red-950), var(--red-900), var(--amber-800));
}

.page-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.45fr;
    align-items: center;
    gap: 38px;
    min-height: 370px;
    padding: 58px max(16px, calc((100vw - 1180px) / 2));
}

.small-hero {
    display: block;
    min-height: 310px;
    padding-top: 78px;
}

.page-hero h1,
.detail-info h1 {
    margin: 12px 0 14px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.12;
}

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

.page-hero-cover {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.page-hero-cover span {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
    font-weight: 900;
}

.category-overview-grid {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(69, 10, 10, 0.08);
}

.category-cover {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 20px;
}

.category-overview-body {
    display: grid;
    align-content: center;
}

.category-overview-body p {
    margin: 12px 0 16px;
}

.compact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.compact-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    border-radius: 16px;
    padding: 8px;
    background: #fff7ed;
}

.compact-card img {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
}

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

.compact-card strong {
    color: var(--red-950);
    font-size: 14px;
}

.compact-card em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.detail-hero {
    padding: 34px max(16px, calc((100vw - 1180px) / 2)) 62px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: #fde68a;
    font-size: 14px;
}

.breadcrumb em {
    color: #ffffff;
    font-style: normal;
}

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

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

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

.detail-meta {
    margin: 20px 0 14px;
}

.detail-tags {
    margin-bottom: 26px;
}

.player-section {
    padding-bottom: 40px;
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(146, 64, 14, 0.24);
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(69, 10, 10, 0.76));
    cursor: pointer;
}

.player-overlay.is-hidden {
    display: none;
}

.play-circle {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    padding-left: 5px;
    color: #ffffff;
    font-size: 32px;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.player-overlay strong {
    max-width: min(80%, 720px);
    font-size: clamp(20px, 4vw, 34px);
    text-align: center;
}

.player-error {
    position: absolute;
    inset: auto 24px 24px;
    z-index: 3;
    display: none;
    border-radius: 16px;
    padding: 12px 16px;
    color: #ffffff;
    text-align: center;
    background: rgba(127, 29, 29, 0.9);
}

.player-error.show {
    display: block;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 34px;
}

.detail-content article {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(69, 10, 10, 0.08);
}

.detail-content p {
    margin: 12px 0 0;
    font-size: 16px;
}

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

.site-footer {
    color: #ffedd5;
    background: linear-gradient(90deg, var(--red-950), var(--amber-950), var(--red-950));
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    padding: 52px 0 34px;
}

.brand.mini .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.footer-brand p {
    max-width: 520px;
    color: #fed7aa;
}

.footer-links h2 {
    margin: 0 0 14px;
    color: var(--amber-300);
    font-size: 18px;
}

.footer-links div {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: #fed7aa;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding: 18px 16px;
    color: #fcd34d;
    text-align: center;
    font-size: 13px;
}

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

    .menu-toggle {
        display: block;
    }

    .hero-slide,
    .page-hero,
    .detail-grid,
    .category-overview-card,
    .detail-content,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        position: relative;
        display: none;
        min-height: auto;
        padding: 42px 0 132px;
    }

    .hero-slide.active {
        display: grid;
    }

    .hero-poster {
        min-height: 360px;
        transform: none;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

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

    .filter-panel,
    .filter-controls {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-shell,
    .footer-shell,
    .section-shell,
    .hero-carousel,
    .hero-stats {
        width: min(100% - 24px, 1180px);
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text em {
        font-size: 10px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-stats a {
        flex: 1 1 110px;
        min-width: 0;
    }

    .movie-grid,
    .featured-grid,
    .rank-grid,
    .category-grid,
    .related-grid,
    .compact-list {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
    }

    .page-hero,
    .detail-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .section-title {
        display: grid;
        align-items: start;
    }

    .player-box {
        border-radius: 18px;
    }
}
