/*
  Static movie site styles.
  Visual direction follows the uploaded site's dark slate theme, cyan accent color,
  glassy sticky navigation, large hero carousel, rounded cards, hover scale effects,
  poster overlays, and responsive card grids.
*/

:root {
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111827;
    --panel-card: #1e293b;
    --line: #1f2937;
    --line-light: rgba(148, 163, 184, 0.24);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --cyan: #06b6d4;
    --cyan-soft: rgba(6, 182, 212, 0.2);
    --cyan-bright: #67e8f9;
    --blue: #3b82f6;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.12), transparent 34rem),
        radial-gradient(circle at 85% 5%, rgba(59, 130, 246, 0.1), transparent 30rem),
        var(--bg);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.94);
    border-bottom: 1px solid rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(14px);
}

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

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

.brand-icon {
    position: relative;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 12px;
    box-shadow: 0 0 28px rgba(6, 182, 212, 0.35);
}

.brand-text {
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--cyan-bright), #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link,
.mobile-nav-link {
    color: var(--muted-strong);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: white;
}

.header-search {
    display: flex;
    align-items: center;
    width: min(280px, 28vw);
    padding: 2px;
    border: 1px solid #334155;
    border-radius: 14px;
    background: #0f172a;
}

.header-search input {
    width: 100%;
    min-width: 0;
    color: var(--muted-strong);
    background: transparent;
    border: 0;
    outline: 0;
    padding: 8px 6px 8px 14px;
}

.header-search button {
    width: 34px;
    height: 34px;
    color: var(--muted-strong);
    border: 0;
    border-radius: 10px;
    background: transparent;
}

.header-search:focus-within {
    border-color: var(--cyan);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #334155;
    border-radius: 12px;
    background: #0f172a;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--muted-strong);
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

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

.mobile-nav-inner {
    display: grid;
    gap: 14px;
    padding: 18px 0;
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.mobile-search input,
.mobile-search button,
.large-search input,
.large-search button,
.filter-field input,
.filter-field select {
    color: var(--text);
    border: 1px solid #334155;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
    outline: 0;
}

.mobile-search input,
.large-search input,
.filter-field input,
.filter-field select {
    padding: 12px 14px;
}

.mobile-search button,
.large-search button {
    padding: 12px 18px;
    color: white;
    border: 0;
    background: var(--cyan);
}

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: #0f172a;
}

.hero-track,
.hero-slide,
.hero-slide > img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

img.is-missing {
    opacity: 0;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.78), transparent),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.28) 45%, rgba(2, 6, 23, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    max-width: 1180px;
}

.hero-content h1 {
    max-width: 760px;
    margin: 20px 0 14px;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 28px;
    color: var(--muted-strong);
    font-size: 1.12rem;
}

.eyebrow-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--cyan-bright);
    font-size: 0.92rem;
}

.eyebrow-row span,
.eyebrow-row b {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 12px;
    border: 1px solid rgba(103, 232, 249, 0.26);
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.16);
    backdrop-filter: blur(8px);
}

.eyebrow-row b {
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.42);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 40px rgba(6, 182, 212, 0.22);
}

.ghost-button {
    color: var(--muted-strong);
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.58);
}

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

.ghost-button:hover {
    color: white;
    border-color: rgba(103, 232, 249, 0.45);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: white;
    font-size: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.58);
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--cyan);
}

.home-search-panel {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: -42px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.large-search label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted-strong);
    font-weight: 700;
}

.large-search div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.quick-tags a,
.tag-cloud a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    color: var(--cyan-bright);
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.1);
}

.page-stack {
    display: grid;
    gap: 72px;
    padding: 72px 0;
}

.content-section {
    display: grid;
    gap: 26px;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.section-marker {
    width: 5px;
    height: 36px;
    margin-top: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.section-heading h2,
.page-title-block h1,
.spotlight-panel h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.15;
}

.section-heading p,
.page-title-block p,
.spotlight-panel p {
    max-width: 760px;
    margin: 6px 0 0;
    color: var(--muted);
}

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

.small-grid {
    gap: 18px;
}

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.76);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card-link:hover {
    border-color: rgba(103, 232, 249, 0.26);
    box-shadow: 0 24px 45px rgba(6, 182, 212, 0.16);
    transform: translateY(-6px) scale(1.02);
}

.poster-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(59, 130, 246, 0.12)),
        #0f172a;
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card-link:hover .poster-frame img {
    transform: scale(1.09);
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.18), transparent);
}

.type-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 3px 9px;
    color: white;
    font-size: 0.76rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
}

.play-hover {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: white;
    font-size: 1.35rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card-link:hover .play-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
    position: relative;
    z-index: 4;
    min-height: 118px;
    padding: 14px;
}

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 3.1em;
    margin: 0 0 8px;
    overflow: hidden;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.movie-card-body .movie-genre {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.spotlight-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 40px;
    border: 1px solid rgba(103, 232, 249, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 10%, rgba(6, 182, 212, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.86));
    box-shadow: var(--shadow);
}

.panel-kicker {
    color: var(--cyan-bright);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 800;
}

.section-more {
    display: flex;
    justify-content: center;
}

.page-shell {
    padding: 52px 0 80px;
}

.page-title-block {
    margin-bottom: 32px;
}

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

.category-card a {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 170px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.88);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card a:hover {
    border-color: rgba(103, 232, 249, 0.34);
    transform: translateY(-4px);
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 10px;
    background: rgba(2, 6, 23, 0.5);
}

.category-covers img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    background: #0f172a;
}

.category-card-body {
    padding: 22px;
}

.category-card-body h2 {
    margin: 0 0 8px;
}

.category-card-body p {
    margin: 0 0 16px;
    color: var(--muted);
}

.category-card-body span {
    color: var(--cyan-bright);
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumb a:hover {
    color: white;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    gap: 18px;
    align-items: end;
    margin-bottom: 30px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
}

.filter-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted-strong);
    font-weight: 700;
}

.filter-field input,
.filter-field select {
    width: 100%;
}

.filter-field input:focus,
.filter-field select:focus {
    border-color: var(--cyan);
}

.filter-result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    color: var(--cyan-bright);
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 14px;
    background: rgba(6, 182, 212, 0.1);
    white-space: nowrap;
}

.empty-state {
    padding: 50px 16px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed rgba(148, 163, 184, 0.22);
    border-radius: 20px;
}

.ranking-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ranking-row a {
    display: grid;
    grid-template-columns: 60px 68px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.78);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-row a:hover {
    border-color: rgba(103, 232, 249, 0.32);
    transform: translateX(4px);
}

.rank-num {
    color: var(--cyan-bright);
    font-size: 1.35rem;
    font-weight: 900;
}

.ranking-row img {
    width: 68px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info em {
    margin-top: 4px;
    color: var(--muted);
    font-style: normal;
}

.rank-action {
    color: var(--cyan-bright);
    font-weight: 700;
}

.search-page-panel {
    grid-template-columns: minmax(0, 1fr) auto;
}

.detail-page {
    background: var(--bg);
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #0f172a;
}

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

.detail-hero > img {
    object-fit: cover;
    filter: blur(3px) saturate(1.1);
    transform: scale(1.04);
}

.detail-hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.3)),
        linear-gradient(0deg, #020617, rgba(2, 6, 23, 0.35));
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 44px 0 64px;
}

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

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-copy h1 {
    max-width: 820px;
    margin: 22px 0 16px;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-copy p {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--muted-strong);
    font-size: 1.1rem;
}

.detail-layout {
    display: grid;
    gap: 34px;
    padding: 42px 0 82px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 26px;
    background: #000;
    box-shadow: var(--shadow);
}

.player-box video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: white;
    border: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(15, 23, 42, 0.28));
}

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

.play-circle {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    padding-left: 4px;
    font-size: 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 45px rgba(6, 182, 212, 0.36);
}

.player-overlay strong {
    font-size: 1.3rem;
}

.player-overlay em {
    color: var(--muted-strong);
    font-style: normal;
}

.player-message {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    margin: 0;
    padding: 10px 14px;
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.35);
    border-radius: 12px;
    background: rgba(127, 29, 29, 0.82);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
    gap: 24px;
}

.detail-panel {
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
}

.detail-panel h2 {
    margin: 0 0 16px;
}

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

.detail-panel p {
    margin: 0;
    color: var(--muted-strong);
}

.info-panel dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 16px;
    margin: 0 0 22px;
}

.info-panel dt {
    color: var(--muted);
}

.info-panel dd {
    margin: 0;
    color: white;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-section {
    margin-top: 10px;
}

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(15, 23, 42, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    padding: 44px 0;
}

.site-footer p {
    max-width: 540px;
    color: var(--muted);
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a:not(.brand) {
    color: var(--muted);
}

.site-footer a:not(.brand):hover {
    color: white;
}

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

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

@media (max-width: 860px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 520px;
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel,
    .spotlight-panel,
    .filter-panel,
    .search-page-panel,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-tags {
        justify-content: flex-start;
    }

    .detail-title-grid {
        grid-template-columns: 160px minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2.45rem;
    }

    .large-search div,
    .mobile-search {
        grid-template-columns: 1fr;
    }

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

    .movie-card-body {
        min-height: 112px;
        padding: 12px;
    }

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

    .category-covers {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-title-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(210px, 68vw);
    }

    .ranking-row a {
        grid-template-columns: 42px 58px 1fr;
    }

    .rank-action {
        display: none;
    }
}
