:root {
    color-scheme: dark;
    --bg: #0c0a09;
    --panel: #1c1917;
    --panel-2: #292524;
    --line: #44403c;
    --soft-line: rgba(120, 113, 108, 0.28);
    --text: #fafaf9;
    --muted: #a8a29e;
    --muted-2: #78716c;
    --amber: #f59e0b;
    --amber-2: #d97706;
    --amber-soft: rgba(245, 158, 11, 0.18);
    --red: #ef4444;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    --max: 1180px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 34rem),
        radial-gradient(circle at 90% 12%, rgba(239, 68, 68, 0.08), transparent 26rem),
        linear-gradient(180deg, #1c1917 0%, #0c0a09 24rem, #0c0a09 100%);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(68, 64, 60, 0.72);
    background: rgba(28, 25, 23, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.nav-shell {
    width: min(var(--max), calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand strong {
    font-size: 1.08rem;
    letter-spacing: 0.02em;
}

.brand small {
    color: var(--muted);
    font-size: 0.72rem;
    margin-top: 3px;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #d6d3d1;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff7ed;
    background: rgba(245, 158, 11, 0.16);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 320px;
}

.nav-search input,
.filter-box input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    color: var(--text);
    background: rgba(41, 37, 36, 0.9);
    padding: 11px 14px;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search input:focus,
.filter-box input:focus {
    border-color: rgba(245, 158, 11, 0.78);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
    background: #1c1917;
}

.nav-search button,
.button,
.quick-filter-row button {
    border: 0;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 11px 16px;
    cursor: pointer;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button:hover,
.button:hover,
.quick-filter-row button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.22);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(41, 37, 36, 0.9);
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #f5f5f4;
}

main {
    min-height: 60vh;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(68, 64, 60, 0.54);
    background: linear-gradient(180deg, #1c1917, #0c0a09);
}

.hero-slider {
    position: relative;
    min-height: 650px;
    width: 100%;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    filter: saturate(1.1);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, #0c0a09, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 32px));
    min-height: 650px;
    margin: 0 auto;
    padding: 110px 0 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    margin-left: max(16px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--amber);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-summary,
.page-hero p,
.detail-lead {
    max-width: 760px;
    color: #d6d3d1;
    font-size: 1.15rem;
    line-height: 1.8;
}

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

.hero-tags span,
.detail-meta span,
.genre-tags span,
.detail-tags a,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(245, 158, 11, 0.26);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(12, 10, 9, 0.48);
    padding: 6px 11px;
    font-size: 0.82rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.button.ghost {
    color: #fff7ed;
    background: rgba(250, 250, 249, 0.08);
    border: 1px solid rgba(250, 250, 249, 0.18);
}

.button.small {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.92rem;
}

.hero-poster {
    position: absolute;
    z-index: 3;
    right: max(16px, calc((100vw - var(--max)) / 2));
    bottom: 84px;
    width: min(28vw, 280px);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #292524, #1c1917);
    box-shadow: var(--shadow);
    border: 1px solid rgba(250, 250, 249, 0.1);
}

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

.hero-poster span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(12, 10, 9, 0.72);
    color: #fff;
    font-size: 0.88rem;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(250, 250, 249, 0.16);
    border-radius: 999px;
    color: #fff;
    background: rgba(28, 25, 23, 0.78);
    cursor: pointer;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots .hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(250, 250, 249, 0.32);
}

.hero-dots .hero-dot.active {
    width: 28px;
    background: var(--amber);
}

.hero-category-bar {
    position: relative;
    z-index: 6;
    width: min(var(--max), calc(100% - 32px));
    margin: -34px auto 44px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.hero-category-bar a,
.category-card,
.category-large-card,
.movie-card,
.text-panel,
.rank-panel,
.filter-box,
.detail-side {
    border: 1px solid var(--soft-line);
    background: linear-gradient(180deg, rgba(41, 37, 36, 0.92), rgba(28, 25, 23, 0.92));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.hero-category-bar a {
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-category-bar a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(41, 37, 36, 0.94));
}

.content-section,
.split-section,
.ranking-layout,
.detail-content,
.detail-hero,
.player-section {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.content-section {
    padding: 50px 0;
}

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

.section-head h2,
.rank-panel h2,
.text-panel h2,
.detail-side h2,
.category-large-card h2 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.section-head p,
.rank-panel p,
.category-large-card p,
.text-panel p,
.detail-side dd,
.movie-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-more {
    color: var(--amber);
    font-weight: 800;
    white-space: nowrap;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.32);
}

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(68, 64, 60, 0.12)),
        #292524;
}

.movie-card .poster-frame img,
.detail-poster img,
.category-card img,
.category-large-cover img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.36s ease, opacity 0.25s ease;
}

.movie-card:hover .poster-frame img,
.category-card:hover img,
.category-large-card:hover img {
    transform: scale(1.05);
}

img.is-missing {
    opacity: 0;
}

.poster-year,
.poster-play,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.poster-year {
    top: 10px;
    left: 10px;
    color: #fff;
    background: rgba(12, 10, 9, 0.62);
    padding: 5px 9px;
    font-size: 0.76rem;
}

.rank-badge {
    top: 10px;
    right: 10px;
    color: #111827;
    background: var(--amber);
    padding: 5px 9px;
    font-size: 0.78rem;
    font-weight: 900;
}

.poster-play {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #111827;
    background: rgba(245, 158, 11, 0.95);
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.movie-card:hover .poster-play {
    transform: translateY(0);
    opacity: 1;
}

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

.movie-card-title {
    display: -webkit-box;
    min-height: 2.9em;
    margin-bottom: 8px;
    overflow: hidden;
    color: #fff;
    font-weight: 900;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-title:hover {
    color: #fbbf24;
}

.movie-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.9rem;
}

.movie-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    color: var(--muted-2);
    font-size: 0.82rem;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    padding: 4px 8px;
    font-size: 0.72rem;
    color: #d6d3d1;
    border-color: rgba(120, 113, 108, 0.26);
    background: rgba(12, 10, 9, 0.24);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    opacity: 0.22;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(12, 10, 9, 0.92));
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 1.25rem;
    font-weight: 900;
}

.category-card p {
    margin: 8px 0 0;
    color: #d6d3d1;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.split-section .content-section {
    width: 100%;
    padding-top: 50px;
}

.rank-panel {
    position: sticky;
    top: 92px;
    border-radius: var(--radius);
    padding: 22px;
}

.rank-panel ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.rank-panel li a {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border-radius: 14px;
    color: #e7e5e4;
    background: rgba(12, 10, 9, 0.28);
    transition: background 0.2s ease;
}

.rank-panel li a:hover {
    background: rgba(245, 158, 11, 0.15);
}

.rank-panel strong {
    color: var(--amber);
    font-size: 1.02rem;
}

.rank-panel span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
}

.rank-panel em {
    color: var(--muted-2);
    font-style: normal;
    font-size: 0.82rem;
}

.page-hero {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 80px 0 36px;
}

.page-hero.slim {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero p {
    margin: 14px 0 0;
}

.inline-actions {
    margin-top: 22px;
}

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

.category-large-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    border-radius: var(--radius);
    padding: 16px;
}

.category-large-cover {
    border-radius: 15px;
    overflow: hidden;
    background: #292524;
}

.category-samples {
    color: #d6d3d1 !important;
    margin: 10px 0 16px !important;
}

.filter-box {
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 22px;
}

.quick-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.quick-filter-row button {
    min-height: 36px;
    padding: 8px 12px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.empty-state {
    display: none;
    padding: 34px;
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
    border: 1px solid var(--soft-line);
    background: rgba(41, 37, 36, 0.72);
}

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

.ranking-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.ranking-grid-section {
    width: 100%;
    padding-top: 0;
}

.detail-hero {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 64px 0 38px;
}

.detail-poster {
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.detail-info h1 {
    font-size: clamp(2rem, 4vw, 4rem);
}

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

.breadcrumb a {
    color: #fbbf24;
}

.detail-meta {
    margin-top: 18px;
}

.player-section {
    padding: 20px 0 44px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    border: 1px solid rgba(250, 250, 249, 0.12);
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.24), rgba(12, 10, 9, 0.76));
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 1.1rem;
    font-weight: 900;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-ring {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 18px 58px rgba(245, 158, 11, 0.32);
    font-size: 2rem;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    align-items: start;
}

.text-panel,
.detail-side {
    border-radius: var(--radius);
    padding: 24px;
}

.text-panel + .text-panel {
    margin-top: 20px;
}

.text-panel p {
    font-size: 1.02rem;
}

.detail-side {
    position: sticky;
    top: 92px;
}

.detail-side dl {
    display: grid;
    gap: 14px;
    margin: 18px 0;
}

.detail-side dl div {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
}

.detail-side dt {
    color: var(--muted-2);
}

.detail-side a {
    color: #fbbf24;
}

.genre-tags,
.detail-tags {
    margin-top: 14px;
}

.text-only {
    display: grid;
    gap: 18px;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(68, 64, 60, 0.7);
    background: rgba(28, 25, 23, 0.86);
}

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

.footer-grid h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: var(--muted);
    line-height: 1.7;
}

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

.footer-grid a:hover,
.footer-bottom a:hover {
    color: var(--amber);
}

.footer-bottom {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(68, 64, 60, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.92rem;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    width: 46px;
    height: 46px;
    display: none;
    border: 0;
    border-radius: 999px;
    color: #111827;
    background: var(--amber);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    font-weight: 900;
}

.back-top.show {
    display: block;
}

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

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

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

    .rank-panel,
    .detail-side {
        position: static;
    }
}

@media (max-width: 860px) {
    .nav-shell {
        min-height: 64px;
        flex-wrap: wrap;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 16px;
    }

    .nav-menu.open {
        display: flex;
    }

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

    .nav-search {
        min-width: 0;
        width: 100%;
    }

    .hero-slider,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
        padding-top: 92px;
        padding-bottom: 210px;
    }

    .hero-poster {
        width: 150px;
        right: 16px;
        bottom: 86px;
    }

    .hero-category-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -28px;
    }

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

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

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

@media (max-width: 640px) {
    .hero h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 2.35rem;
    }

    .hero-summary,
    .page-hero p,
    .detail-lead {
        font-size: 1rem;
    }

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

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

    .category-large-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }

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

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

    .detail-content,
    .player-section,
    .content-section {
        padding-top: 30px;
    }

    .play-ring {
        width: 72px;
        height: 72px;
    }
}
