* {
    box-sizing: border-box;
}

:root {
    --bg: #030712;
    --bg-soft: #0f172a;
    --panel: rgba(31, 41, 55, 0.58);
    --panel-strong: rgba(17, 24, 39, 0.92);
    --line: rgba(75, 85, 99, 0.55);
    --text: #f9fafb;
    --muted: #9ca3af;
    --muted-2: #6b7280;
    --accent: #f59e0b;
    --accent-2: #ea580c;
    --danger: #ef4444;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 34rem),
        radial-gradient(circle at 90% 18%, rgba(234, 88, 12, 0.10), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #111827 45%, #030712 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(31, 41, 55, 0.92);
    background: rgba(17, 24, 39, 0.94);
    backdrop-filter: blur(16px);
}

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

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

.logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
    font-size: 13px;
}

.logo-text,
.footer-logo span:last-child {
    font-size: clamp(20px, 2vw, 28px);
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    color: #d1d5db;
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(31, 41, 55, 0.9);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #e5e7eb;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    border-top: 1px solid rgba(55, 65, 81, 0.8);
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #d1d5db;
    font-weight: 650;
}

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

.hero-carousel {
    position: relative;
    min-height: clamp(620px, 72vh, 820px);
    overflow: hidden;
    background: #020617;
}

.hero-track,
.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-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) brightness(0.58);
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72) 46%, rgba(2, 6, 23, 0.46)),
        linear-gradient(0deg, #030712 0%, rgba(3, 7, 18, 0.18) 45%, rgba(3, 7, 18, 0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: clamp(620px, 72vh, 820px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: 74px 0;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(245, 158, 11, 0.32);
    border-radius: 999px;
    color: var(--accent);
    background: rgba(245, 158, 11, 0.10);
    font-size: 13px;
    font-weight: 750;
}

.hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.08;
    background: linear-gradient(90deg, #fff7ed, #fbbf24 58%, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 690px;
    margin: 0 0 22px;
    color: #d1d5db;
    font-size: clamp(16px, 1.65vw, 20px);
}

.hero-tags,
.detail-meta,
.card-meta,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-meta span,
.card-meta span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.82);
    color: #d1d5db;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span:first-child,
.card-meta span:first-child {
    color: #fff7ed;
    background: rgba(245, 158, 11, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #111827;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.30);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f9fafb;
    background: rgba(17, 24, 39, 0.72);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(245, 158, 11, 0.22);
    background: rgba(17, 24, 39, 0.88);
    box-shadow: var(--shadow);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-poster span,
.play-badge,
.play-circle {
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #111827;
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.32);
}

.hero-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #f9fafb;
    background: rgba(17, 24, 39, 0.68);
    cursor: pointer;
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-control:hover {
    color: #111827;
    background: var(--accent);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.search-band {
    position: relative;
    z-index: 3;
    margin-top: -42px;
}

.search-panel,
.filter-wrap {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(260px, 2.2fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(75, 85, 99, 0.55);
    border-radius: 22px;
    background: rgba(17, 24, 39, 0.92);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.search-panel select:first-of-type:last-child {
    grid-column: auto;
}

.search-label {
    color: #f9fafb;
    font-weight: 800;
}

input[type="search"],
select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(75, 85, 99, 0.76);
    border-radius: 14px;
    color: #f9fafb;
    background: rgba(3, 7, 18, 0.72);
    outline: none;
    padding: 0 14px;
}

input[type="search"]:focus,
select:focus {
    border-color: rgba(245, 158, 11, 0.75);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

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

.surface-section {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.86), rgba(31, 41, 55, 0.54));
}

.deep-section {
    background: rgba(3, 7, 18, 0.42);
}

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

.section-heading > div:first-child {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    align-items: center;
}

.section-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-weight: 900;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.1;
}

.section-heading p {
    grid-column: 2;
    margin: 0;
    color: var(--muted);
}

.section-more,
.text-link {
    color: var(--accent);
    font-weight: 800;
}

.movie-grid,
.featured-grid,
.category-grid,
.horizontal-grid,
.overview-grid {
    display: grid;
    gap: 22px;
}

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

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(75, 85, 99, 0.48);
    border-radius: 18px;
    background: rgba(31, 41, 55, 0.48);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.72);
    background: rgba(31, 41, 55, 0.86);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.card-cover {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #111827;
    aspect-ratio: 16 / 9;
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.movie-card:hover .card-cover img {
    transform: scale(1.08);
    filter: brightness(0.72);
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-body {
    padding: 16px;
}

.card-meta {
    gap: 8px;
    margin-bottom: 10px;
}

.card-meta span {
    min-height: 23px;
    padding: 2px 8px;
    font-size: 11px;
}

.movie-card h3 {
    margin: 0 0 8px;
    display: -webkit-box;
    min-height: 2.7em;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--accent);
}

.movie-card p {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--muted);
    font-size: 13px;
}

.card-large {
    position: relative;
    min-height: 280px;
}

.card-large .card-cover {
    height: 100%;
    min-height: 280px;
    aspect-ratio: auto;
}

.card-large .card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.card-large h3 {
    font-size: 22px;
}

.card-horizontal {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.card-horizontal .card-cover {
    aspect-ratio: auto;
    height: 100%;
    min-height: 130px;
}

.category-card,
.overview-card,
.detail-card,
.side-box,
.tag-panel {
    border: 1px solid rgba(75, 85, 99, 0.48);
    border-radius: 20px;
    background: rgba(31, 41, 55, 0.50);
}

.category-card {
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.72);
}

.category-mosaic,
.overview-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(17, 24, 39, 0.9);
}

.category-mosaic img,
.overview-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.category-card div:last-child {
    padding: 18px;
}

.category-card h3,
.overview-card h2,
.side-box h2,
.tag-panel h2,
.detail-card h2 {
    margin: 0 0 10px;
}

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

.page-hero {
    padding: 70px 0 64px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.16), transparent 34%),
        linear-gradient(90deg, rgba(3, 7, 18, 0.98), rgba(17, 24, 39, 0.82));
    border-bottom: 1px solid rgba(75, 85, 99, 0.45);
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: #d1d5db;
    font-size: 18px;
}

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

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

.filter-wrap {
    margin-top: 32px;
    grid-template-columns: minmax(150px, 0.7fr) minmax(260px, 2fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr);
}

.empty-result {
    margin-top: 30px;
    padding: 24px;
    border-radius: 18px;
    color: var(--muted);
    background: rgba(31, 41, 55, 0.58);
    text-align: center;
}

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

.overview-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
}

.overview-image {
    height: 100%;
}

.overview-image img {
    height: 100%;
}

.overview-body {
    padding: 22px;
}

.overview-body ul {
    margin: 14px 0;
    padding-left: 18px;
    color: #d1d5db;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 90px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(75, 85, 99, 0.48);
    border-radius: 18px;
    background: rgba(31, 41, 55, 0.52);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    border-color: rgba(245, 158, 11, 0.72);
    background: rgba(31, 41, 55, 0.86);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-weight: 900;
}

.rank-row img {
    width: 90px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-main {
    min-width: 0;
}

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

.rank-main strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px;
}

.rank-main em {
    overflow: hidden;
    color: var(--muted);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.rank-meta {
    color: var(--muted);
    font-size: 14px;
}

.player-shell {
    padding: 26px 0 38px;
    background: #000;
}

.player-breadcrumb {
    margin-top: 4px;
}

.video-frame {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 22px;
    background: #030712;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow);
}

.stream-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72)),
        rgba(3, 7, 18, 0.18);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    width: 82px;
    height: 82px;
    font-size: 28px;
}

.player-overlay strong {
    max-width: 80%;
    text-align: center;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.15;
}

.player-overlay small {
    color: #fde68a;
    font-size: 16px;
    font-weight: 750;
}

.player-message {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fee2e2;
    background: rgba(127, 29, 29, 0.82);
    transform: translateX(-50%);
}

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

.detail-main h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.detail-meta {
    margin-bottom: 24px;
}

.detail-card,
.tag-panel,
.side-box {
    padding: 24px;
    margin-bottom: 22px;
}

.detail-card p {
    margin: 0;
    color: #d1d5db;
    font-size: 16px;
}

.detail-card .one-line {
    margin-bottom: 16px;
    color: #fbbf24;
    font-weight: 750;
}

.side-poster {
    display: block;
    overflow: hidden;
    margin-bottom: 22px;
    border-radius: 22px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    box-shadow: var(--shadow);
}

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

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(75, 85, 99, 0.48);
    background: rgba(3, 7, 18, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 42px;
    padding: 44px 0;
}

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

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 17px;
}

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

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(75, 85, 99, 0.34);
    text-align: center;
    font-size: 14px;
}

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

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

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding-right: 40px;
        padding-left: 40px;
    }

    .hero-poster {
        display: none;
    }

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

    .featured-grid,
    .horizontal-grid,
    .overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-row {
        grid-template-columns: 44px 76px minmax(0, 1fr);
    }

    .rank-meta {
        grid-column: 3;
    }
}

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

    .header-inner {
        min-height: 64px;
    }

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

    .hero-content {
        padding: 72px 10px 80px;
    }

    .hero-control {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

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

    .movie-card h3 {
        font-size: 14px;
    }

    .card-body {
        padding: 12px;
    }

    .card-horizontal {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .card-horizontal .card-cover {
        min-height: 120px;
    }

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

    .section-heading > div:first-child {
        grid-template-columns: auto 1fr;
    }

    .page-hero {
        padding: 46px 0;
    }

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

    .side-poster {
        max-width: 280px;
    }

    .play-circle {
        width: 64px;
        height: 64px;
    }

    .footer-grid {
        gap: 24px;
    }
}
