:root {
    --bg: #f8fafc;
    --paper: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #ecfdf5;
    --brand: #059669;
    --brand-2: #0d9488;
    --brand-3: #14b8a6;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

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

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

img.is-empty {
    opacity: 0;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    backdrop-filter: blur(18px);
}

.nav-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand);
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.32);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #334155;
    font-weight: 700;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--brand);
}

.mobile-toggle {
    display: none;
    border: 0;
    color: #0f172a;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 18px;
    gap: 12px;
    flex-direction: column;
    font-weight: 700;
}

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

.page-main {
    padding-top: 68px;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #020617;
}

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

.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.45), transparent 28%), linear-gradient(135deg, #064e3b, #0f172a 70%);
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.66) 42%, rgba(2, 6, 23, 0.22) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.88) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    height: 100%;
    min-height: 620px;
    padding: 90px 20px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.eyebrow,
.content-section .section-head span,
.rank-intro span,
.page-hero span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #d1fae5;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(167, 243, 208, 0.25);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.hero-one {
    max-width: 640px;
    margin: 26px 0 12px;
    font-size: clamp(18px, 2.4vw, 24px);
    color: #e2e8f0;
}

.hero-meta {
    margin: 0 0 28px;
    color: #a7f3d0;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.primary-btn,
.ghost-btn,
.site-search button,
.filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.site-search button,
.filter-reset {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 14px 34px rgba(5, 150, 105, 0.28);
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.site-search button:hover,
.filter-reset:hover {
    transform: translateY(-2px);
}

.primary-btn.small,
.ghost-btn.small {
    padding: 10px 18px;
    font-size: 14px;
}

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

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.search-band {
    max-width: 1180px;
    margin: -44px auto 0;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 460px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-band span {
    color: var(--brand);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.search-band h2 {
    margin: 4px 0 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
}

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

.site-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 13px 16px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
}

.site-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.category-strip,
.content-section,
.rank-section,
.category-layout,
.detail-layout,
.ranking-page {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 38px;
    padding-bottom: 10px;
}

.category-strip a,
.quick-filters button,
.side-cats a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 15px;
    color: #0f766e;
    background: #ffffff;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.category-strip a:hover,
.quick-filters button:hover,
.side-cats a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent;
}

.content-section {
    padding-top: 66px;
    padding-bottom: 42px;
}

.content-section.soft-bg {
    max-width: none;
    margin-top: 30px;
    padding-left: max(20px, calc((100vw - 1180px) / 2 + 20px));
    padding-right: max(20px, calc((100vw - 1180px) / 2 + 20px));
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

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

.content-section .section-head span,
.rank-intro span,
.page-hero span {
    color: var(--brand);
    background: #d1fae5;
    border-color: #a7f3d0;
}

.section-head h2,
.rank-intro h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head a {
    color: var(--brand);
    font-weight: 900;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.14);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: radial-gradient(circle at 30% 16%, rgba(20, 184, 166, 0.44), transparent 30%), linear-gradient(135deg, #064e3b, #0f172a 70%);
}

.movie-card.featured .poster-link {
    aspect-ratio: 16 / 10;
}

.movie-card.wide {
    display: grid;
    grid-template-columns: 150px 1fr;
}

.movie-card.wide .poster-link {
    aspect-ratio: auto;
    min-height: 220px;
}

.poster-link img,
.category-cover img,
.detail-poster img,
.small-card img,
.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.year-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    border-radius: 999px;
    padding: 6px 10px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 900;
}

.rank-badge {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.play-mark {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.32);
}

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

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.card-meta a {
    color: var(--brand);
}

.movie-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
}

.movie-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.mini-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.mini-tags span,
.detail-tags span {
    border-radius: 999px;
    padding: 5px 9px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 12px;
    font-weight: 800;
}

.rank-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
    gap: 36px;
    padding-top: 78px;
    padding-bottom: 76px;
}

.rank-intro {
    border-radius: 30px;
    padding: 34px;
    color: #ffffff;
    background: radial-gradient(circle at 16% 12%, rgba(45, 212, 191, 0.42), transparent 30%), linear-gradient(135deg, #064e3b, #0f172a 82%);
    box-shadow: var(--shadow);
}

.rank-intro span {
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.rank-intro p {
    margin: 18px 0 28px;
    color: #d1fae5;
}

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

.small-card {
    display: grid;
    grid-template-columns: auto 64px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.small-rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    font-weight: 900;
}

.small-card img {
    width: 64px;
    height: 84px;
    border-radius: 14px;
    background: linear-gradient(135deg, #064e3b, #0f172a);
}

.small-card strong,
.small-card em {
    display: block;
}

.small-card strong {
    margin-bottom: 4px;
    font-size: 16px;
}

.small-card em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.page-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 86px 20px 62px;
}

.page-hero.slim {
    text-align: center;
}

.page-hero p {
    max-width: 780px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.category-hero {
    border-bottom: 1px solid var(--line);
}

.category-hero p {
    margin-left: 0;
}

.category-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 46px;
    padding-bottom: 50px;
}

.category-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}

.category-cover {
    position: relative;
    display: block;
    min-height: 190px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #064e3b, #0f172a);
}

.category-cover span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.72);
    font-weight: 900;
}

.category-card h2 {
    margin: 8px 0 10px;
    font-size: 24px;
}

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

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sample-links a {
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--brand);
    background: #d1fae5;
    font-size: 13px;
    font-weight: 800;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 170px auto;
    gap: 12px;
    margin-bottom: 22px;
}

.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.empty-tip {
    display: none;
    margin: 30px 0 0;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

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

.ranking-page {
    padding-bottom: 60px;
}

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

.player-wrap {
    background: #020617;
    padding: 28px 20px;
}

.player-shell {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 0;
    color: #ffffff;
    background: #000000;
    cursor: pointer;
    overflow: hidden;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.28));
}

.player-cover img {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 16%, rgba(20, 184, 166, 0.44), transparent 30%), linear-gradient(135deg, #064e3b, #0f172a 70%);
}

.player-cover strong,
.big-play {
    position: relative;
    z-index: 2;
}

.big-play {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 18px 44px rgba(5, 150, 105, 0.38);
    font-size: 28px;
}

.player-cover strong {
    font-size: clamp(22px, 4vw, 42px);
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 60px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 700;
}

.breadcrumb a {
    color: var(--brand);
}

.detail-card,
.text-panel,
.side-panel {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}

.detail-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 26px;
    padding: 24px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #064e3b, #0f172a);
}

.detail-info h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
    font-size: 13px;
}

.detail-one {
    margin: 0;
    color: #334155;
    font-size: 17px;
}

.text-panel {
    margin-top: 22px;
    padding: 26px;
}

.text-panel h2,
.side-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.text-panel p {
    margin: 0;
    color: #334155;
    font-size: 17px;
}

.inline-section {
    padding-left: 0;
    padding-right: 0;
}

.detail-side {
    display: grid;
    gap: 20px;
    align-content: start;
}

.side-panel {
    padding: 20px;
}

.side-rank .small-card {
    grid-template-columns: auto 54px 1fr;
    padding: 8px;
}

.side-rank .small-card img {
    width: 54px;
    height: 70px;
}

.side-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer {
    background: #0f172a;
    color: #ffffff;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 34px;
}

.footer-logo {
    color: #ffffff;
}

.footer-brand p {
    margin: 18px 0 0;
    max-width: 520px;
    color: #cbd5e1;
}

.footer-links h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 20px;
    color: #94a3b8;
    text-align: center;
}

@media (max-width: 1080px) {
    .featured-grid,
    .compact-grid,
    .page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .mobile-toggle {
        display: block;
    }

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

    .hero-content {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .hero-arrow {
        display: none;
    }

    .search-band {
        grid-template-columns: 1fr;
        margin: -32px 20px 0;
    }

    .featured-grid,
    .compact-grid,
    .page-grid,
    .ranking-cards,
    .category-layout,
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .rank-section {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 560px) {
    .nav-shell {
        height: 62px;
    }

    .page-main {
        padding-top: 62px;
    }

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

    .logo-icon {
        width: 32px;
        height: 32px;
    }

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

    .hero-content h1 {
        letter-spacing: -0.05em;
    }

    .hero-actions,
    .site-search {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .ghost-btn,
    .site-search button,
    .filter-reset {
        width: 100%;
    }

    .featured-grid,
    .compact-grid,
    .page-grid,
    .ranking-cards,
    .category-layout,
    .footer-inner,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .movie-card.wide {
        grid-template-columns: 120px 1fr;
    }

    .movie-card.wide .poster-link {
        min-height: 178px;
    }

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

    .player-wrap {
        padding: 12px;
    }

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