:root {
    --bg: #07111f;
    --bg-soft: #0f1f32;
    --bg-card: #ffffff;
    --text: #102033;
    --muted: #667085;
    --white: #ffffff;
    --teal: #0f766e;
    --teal-bright: #14b8a6;
    --cyan: #06b6d4;
    --gold: #f59e0b;
    --line: rgba(15, 118, 110, 0.14);
    --shadow: 0 24px 70px rgba(2, 8, 23, 0.22);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #e8fbf8 0%, #f8fafc 22%, #ffffff 100%);
}

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

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

main {
    min-height: 70vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.96), rgba(8, 145, 178, 0.96));
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.18);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #083344;
    background: #ccfbf1;
    border-radius: 999px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.desktop-nav a,
.nav-group-button {
    color: rgba(255, 255, 255, 0.9);
    font: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.nav-group-button:hover {
    color: #ccfbf1;
    transform: translateY(-1px);
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 190px;
    padding: 8px;
    color: #164e63;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    color: #164e63;
    border-radius: 10px;
}

.nav-dropdown a:hover {
    color: #0f766e;
    background: #ecfeff;
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    padding: 6px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.header-search input,
.mobile-search input {
    width: 190px;
    color: white;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 8px 10px;
}

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

.header-search button,
.mobile-search button {
    color: #064e3b;
    background: #ccfbf1;
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 700;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    color: white;
    background: rgba(255, 255, 255, 0.18);
    border: 0;
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
}

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

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.mobile-panel a {
    padding: 10px 12px;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

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

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: white;
    background: #06111f;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 35%, rgba(20, 184, 166, 0.36), transparent 34%),
        linear-gradient(90deg, rgba(2, 8, 23, 0.94) 0%, rgba(2, 8, 23, 0.64) 46%, rgba(2, 8, 23, 0.14) 100%),
        linear-gradient(0deg, rgba(2, 8, 23, 0.96) 0%, transparent 48%);
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 760px;
    margin-left: max(16px, calc((100vw - 1180px) / 2));
    padding-top: 70px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    color: #ccfbf1;
    background: rgba(20, 184, 166, 0.18);
    border: 1px solid rgba(45, 212, 191, 0.32);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-content h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.5rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    text-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 2.4vw, 1.28rem);
    line-height: 1.75;
}

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

.hero-meta span,
.detail-meta span,
.card-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

.primary-button {
    color: #042f2e;
    background: linear-gradient(135deg, #5eead4, #67e8f9);
    box-shadow: 0 18px 40px rgba(20, 184, 166, 0.36);
}

.ghost-button {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    color: white;
    font-size: 34px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 34px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #5eead4;
}

.stats-strip {
    width: min(1180px, calc(100% - 32px));
    margin: -44px auto 34px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stats-strip div,
.copy-card,
.filter-panel,
.side-card,
.category-overview-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.11);
    backdrop-filter: blur(18px);
}

.stats-strip div {
    padding: 22px;
    text-align: center;
}

.stats-strip strong {
    display: block;
    color: #0f766e;
    font-size: 2rem;
}

.stats-strip span {
    color: var(--muted);
}

.content-section,
.detail-shell,
.text-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0;
}

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

.section-heading h2,
.filter-panel h2,
.copy-card h2,
.side-card h2,
.text-page h2 {
    margin: 8px 0 0;
    color: #0f172a;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    letter-spacing: -0.04em;
}

.section-heading a,
.text-link {
    color: #0f766e;
    font-weight: 800;
}

.ranking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li a {
    display: grid;
    grid-template-columns: 48px 70px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 96px;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-list li a:hover,
.movie-card:hover,
.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.15);
}

.rank-number {
    color: #0f766e;
    font-size: 1.35rem;
    font-weight: 900;
}

.ranking-list img {
    width: 70px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

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

.rank-info strong {
    margin-bottom: 5px;
    color: #0f172a;
}

.rank-info em {
    color: var(--muted);
    font-style: normal;
    font-size: 0.9rem;
}

.rank-score {
    color: #92400e;
    background: #fef3c7;
    border-radius: 999px;
    padding: 7px 10px;
    font-weight: 900;
}

.category-grid,
.movie-grid,
.overview-grid {
    display: grid;
    gap: 18px;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    color: white;
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 8, 23, 0.9), rgba(2, 8, 23, 0.12));
}

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

.category-tile strong {
    bottom: 64px;
    font-size: 1.25rem;
}

.category-tile em {
    bottom: 43px;
    color: #99f6e4;
    font-style: normal;
}

.category-tile small {
    bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

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

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

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

.movie-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #0f172a, #0f766e);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 8, 23, 0.55), transparent 48%);
    opacity: 0.9;
}

.card-score {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #78350f;
    background: #fef3c7;
    border-radius: 999px;
    padding: 5px 9px;
    font-weight: 900;
    font-size: 0.88rem;
}

.play-mark {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: white;
    background: rgba(20, 184, 166, 0.82);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.3);
}

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    min-height: 2.7em;
    overflow: hidden;
    color: #0f172a;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-desc {
    display: -webkit-box;
    min-height: 4.8em;
    margin: 10px 0 12px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.94rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-meta span {
    color: #0f766e;
    background: #ecfeff;
    border: 0;
    font-size: 0.82rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-row span {
    color: #475569;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.8rem;
}

.compact-card .card-desc {
    min-height: 3.2em;
    -webkit-line-clamp: 2;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
}

.filter-controls {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 10px;
}

.filter-controls input,
.filter-controls select,
.big-search-box input {
    width: 100%;
    height: 46px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    outline: 0;
    padding: 0 14px;
}

.filter-controls input:focus,
.filter-controls select:focus,
.big-search-box input:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.filter-count,
.search-summary,
.empty-tip {
    margin: 8px 0 0;
    color: var(--muted);
}

.empty-tip {
    display: none;
    text-align: center;
    padding: 24px;
}

.empty-tip.is-visible {
    display: block;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.28), transparent 30%),
        linear-gradient(135deg, #06111f, #0f766e 62%, #0891b2);
}

.page-hero > div {
    width: min(1180px, calc(100% - 32px));
    min-height: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 56px 0;
}

.compact-hero > div {
    min-height: 280px;
}

.page-hero h1 {
    max-width: 850px;
    margin: 16px 0 14px;
    font-size: clamp(2rem, 5vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.08rem;
    line-height: 1.8;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 18px;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-poster-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
}

.overview-poster-stack img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border-radius: 14px;
    background: #0f172a;
}

.category-overview-card p,
.text-page p,
.copy-card p,
.side-card p {
    color: var(--muted);
    line-height: 1.8;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.ranking-layout .ranking-list {
    grid-template-columns: 1fr;
}

.side-card {
    position: sticky;
    top: 96px;
    padding: 22px;
}

.side-card a {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    color: #0f766e;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
}

.big-search-box {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 10px;
    margin-bottom: 16px;
}

.big-search-box button {
    color: white;
    background: #0f766e;
    border: 0;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
}

.detail-shell {
    padding-top: 34px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #0f766e;
    font-weight: 700;
}

.detail-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: stretch;
}

.detail-poster,
.detail-info {
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    background: #0f172a;
}

.detail-info {
    padding: clamp(24px, 4vw, 42px);
}

.detail-info h1 {
    margin: 18px 0 12px;
    color: #0f172a;
    font-size: clamp(2.1rem, 5vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.detail-one-line {
    color: #334155;
    font-size: 1.15rem;
    line-height: 1.8;
}

.detail-meta span {
    color: #0f766e;
    background: #ecfeff;
    border-color: #cffafe;
}

.player-section {
    padding-top: 12px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    background: #020617;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.site-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    background: radial-gradient(circle at center, rgba(15, 118, 110, 0.4), rgba(2, 6, 23, 0.62));
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    background: rgba(20, 184, 166, 0.88);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(20, 184, 166, 0.35);
}

.player-shell.is-playing .player-start {
    opacity: 0;
    visibility: hidden;
}

.player-error {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: none;
    margin: 0;
    padding: 12px 14px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.82);
    border-radius: 14px;
}

.player-error.is-visible {
    display: block;
}

.detail-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.copy-card,
.text-page {
    padding: 24px;
}

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

.text-page {
    margin-top: 34px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.site-footer {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
    background: #06111f;
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: white;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
    color: white;
    font-size: 1.35rem;
}

.footer-copy {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: rgba(255, 255, 255, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .header-inner {
        gap: 12px;
    }

    .hero-arrow {
        display: none;
    }

    .stats-strip,
    .category-grid,
    .movie-grid,
    .dense-grid,
    .featured-grid,
    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .overview-grid,
    .ranking-layout,
    .detail-copy {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .brand span:last-child {
        max-width: 10em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .hero-carousel,
    .hero-content {
        min-height: 560px;
    }

    .hero-content {
        margin-left: 16px;
        padding-right: 16px;
    }

    .stats-strip,
    .category-grid,
    .movie-grid,
    .dense-grid,
    .featured-grid,
    .related-grid,
    .footer-grid,
    .filter-controls,
    .big-search-box,
    .detail-grid,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .ranking-list {
        grid-template-columns: 1fr;
    }

    .ranking-list li a {
        grid-template-columns: 40px 58px 1fr;
    }

    .rank-score {
        grid-column: 3;
        width: fit-content;
    }

    .stats-strip {
        margin-top: 18px;
    }

    .detail-poster img {
        min-height: auto;
        aspect-ratio: 3 / 4;
    }

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