:root {
    --primary-50: #fef3e2;
    --primary-100: #fde8c4;
    --primary-300: #f7ad18;
    --primary-500: #d89410;
    --primary-600: #b6790d;
    --accent-50: #fff5ed;
    --accent-500: #f95c16;
    --accent-600: #ea420c;
    --secondary-50: #f5f7fa;
    --secondary-700: #4b587c;
    --secondary-800: #353d59;
    --secondary-900: #2f344c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    --radius-xl: 18px;
    --radius-2xl: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: var(--gray-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

button,
input {
    font: inherit;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(16px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    height: 66px;
    margin: 0 auto;
}

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: 0 10px 24px rgba(216, 148, 16, 0.28);
}

.logo-text {
    font-size: 21px;
    line-height: 1;
    background: linear-gradient(90deg, var(--primary-600), var(--accent-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    color: var(--gray-700);
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--gray-100);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--gray-700);
    transition: transform 0.2s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 18px 18px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

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

.mobile-nav .nav-link {
    padding: 9px 12px;
    border-radius: 12px;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    background: var(--primary-50);
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--secondary-900);
}

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

.hero-slide {
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.12)),
        radial-gradient(circle at 20% 20%, rgba(249, 92, 22, 0.28), transparent 38%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.hero-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 82px;
    color: var(--white);
}

.hero-tags,
.hero-meta,
.hero-actions,
.detail-meta,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-tags span,
.hero-tags a,
.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    color: var(--white);
    border-radius: 999px;
    background: rgba(216, 148, 16, 0.92);
    font-size: 14px;
    font-weight: 700;
}

.hero-tags a {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.hero h1 {
    max-width: 760px;
    margin: 18px 0 12px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.hero-meta {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
}

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

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.24);
}

.hero-arrow-left {
    left: 22px;
}

.hero-arrow-right {
    right: 22px;
}

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

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

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

.content-section {
    padding: 74px 0;
    background: var(--gray-50);
}

.section-white {
    background: var(--white);
}

.section-dark {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-900), var(--secondary-800));
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

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

.section-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: var(--shadow-soft);
}

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

.section-heading p {
    margin: 6px 0 0;
    color: var(--gray-600);
}

.section-dark .section-heading p,
.section-dark .movie-row-meta,
.section-dark .movie-row-desc {
    color: rgba(255, 255, 255, 0.74);
}

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

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

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

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

.movie-card,
.movie-row,
.overview-card,
.category-card,
.text-card,
.side-card,
.player-card,
.ranking-item {
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.movie-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.movie-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.poster-bg {
    position: relative;
    display: block;
    background-image:
        linear-gradient(145deg, rgba(47, 52, 76, 0.20), rgba(216, 148, 16, 0.22)),
        var(--poster-image);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.poster-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 45%);
    pointer-events: none;
}

.movie-cover {
    aspect-ratio: 16 / 9;
    transition: transform 0.35s ease;
}

.movie-card:hover .movie-cover {
    transform: scale(1.04);
}

.movie-badge,
.movie-score,
.category-count {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 8px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.68);
    font-size: 12px;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.movie-badge {
    top: 12px;
    left: 12px;
    background: rgba(216, 148, 16, 0.92);
}

.movie-score {
    top: 12px;
    right: 12px;
}

.movie-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.movie-title {
    color: var(--gray-900);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.movie-card:hover .movie-title,
.movie-row:hover .movie-row-title,
.ranking-item:hover strong {
    color: var(--primary-600);
}

.movie-meta,
.movie-desc {
    color: var(--gray-600);
    font-size: 13px;
}

.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-compact .movie-cover {
    aspect-ratio: 2 / 3;
    border-radius: 16px;
}

.movie-card-compact {
    background: transparent;
    box-shadow: none;
}

.movie-card-compact .movie-info {
    padding: 12px 2px 0;
}

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

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

.movie-info-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
}

.movie-info-overlay .movie-title,
.movie-info-overlay .movie-meta,
.movie-info-overlay .movie-desc {
    color: var(--white);
}

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

.category-card,
.overview-card a {
    position: relative;
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 22px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-900), var(--secondary-700));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before,
.overview-card a::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(249, 92, 22, 0.28);
}

.category-card:hover,
.overview-card a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.category-card strong,
.overview-card h2 {
    position: relative;
    margin: 0;
    font-size: 22px;
}

.category-card span,
.overview-card p,
.overview-card small {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
}

.category-count {
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.16);
}

.section-actions {
    margin-top: 30px;
    text-align: center;
}

.movie-row {
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.movie-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.movie-row-link {
    display: flex;
    gap: 16px;
    padding: 14px;
}

.movie-row-poster {
    flex: 0 0 150px;
    height: 92px;
    border-radius: 12px;
}

.movie-row-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 5px;
}

.movie-row-title {
    color: var(--gray-900);
    font-weight: 800;
}

.movie-row-meta,
.movie-row-desc {
    color: var(--gray-600);
    font-size: 13px;
}

.movie-row-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.filter-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.sticky-filter {
    position: sticky;
    top: 82px;
    z-index: 10;
}

.filter-input {
    flex: 1 1 280px;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(216, 148, 16, 0.13);
}

.filter-meta {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 700;
}

.year-filters,
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.year-filters button,
.category-filters button {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
}

.year-filters button.active,
.category-filters button.active,
.year-filters button:hover,
.category-filters button:hover {
    color: var(--white);
    border-color: transparent;
    background: var(--primary-500);
}

.empty-state {
    margin-top: 24px;
    padding: 36px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-xl);
    color: var(--gray-600);
    text-align: center;
    background: var(--white);
}

.page-hero,
.detail-head {
    padding: 70px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 12%, rgba(249, 92, 22, 0.28), transparent 32%),
        linear-gradient(135deg, var(--secondary-900), var(--secondary-800));
}

.compact-hero {
    padding: 62px 0;
}

.category-hero {
    padding: 58px 0;
}

.page-hero h1,
.detail-info h1 {
    max-width: 900px;
    margin: 12px 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.page-hero p,
.detail-info p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

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

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

.detail-poster {
    aspect-ratio: 2 / 3;
    border: 4px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-hover);
}

.detail-info .eyebrow {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
}

.detail-meta {
    margin: 20px 0;
}

.detail-meta span,
.tag-list span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.tag-list span {
    color: var(--gray-700);
    background: var(--gray-100);
}

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

.detail-main,
.detail-side {
    min-width: 0;
}

.player-card,
.text-card,
.side-card {
    padding: 20px;
    margin-bottom: 24px;
}

.hls-player {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--black);
    aspect-ratio: 16 / 9;
}

.player-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
}

.player-start {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.player-start:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.player-start span {
    margin-left: 5px;
    font-size: 30px;
}

.hls-player.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.player-status {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.58);
    font-size: 13px;
    backdrop-filter: blur(8px);
}

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

.text-card p {
    margin: 0;
    color: var(--gray-700);
    white-space: pre-line;
}

.meta-table dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.meta-table dl div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.meta-table dt {
    color: var(--gray-500);
    font-weight: 700;
}

.meta-table dd {
    margin: 0;
    color: var(--gray-900);
}

.meta-table a {
    color: var(--primary-600);
    font-weight: 800;
}

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

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

.side-list .movie-row {
    box-shadow: none;
    border: 1px solid var(--gray-200);
}

.side-list .movie-row-link {
    padding: 10px;
}

.side-list .movie-row-poster {
    flex-basis: 96px;
    height: 64px;
}

.ranking-list {
    display: grid;
    gap: 14px;
}

.ranking-item {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.ranking-item a {
    display: grid;
    grid-template-columns: 68px 120px minmax(0, 1fr) 90px;
    gap: 16px;
    align-items: center;
    padding: 12px 18px;
}

.ranking-number {
    color: var(--primary-600);
    font-size: 24px;
    font-weight: 900;
}

.ranking-poster {
    height: 72px;
    border-radius: 12px;
}

.ranking-content {
    display: grid;
    gap: 4px;
}

.ranking-content strong {
    font-size: 18px;
}

.ranking-content small,
.ranking-content em {
    color: var(--gray-600);
    font-size: 13px;
    font-style: normal;
}

.ranking-score {
    justify-self: end;
    color: var(--primary-600);
    font-weight: 900;
}

.site-footer {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-900), var(--secondary-800));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 28px;
}

.footer-brand p,
.site-footer a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
    color: var(--primary-300);
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--primary-300);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

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

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

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

    .detail-side {
        position: static;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 600px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-content {
        padding-bottom: 72px;
    }

    .movie-grid-four,
    .movie-grid-six,
    .movie-grid-eight,
    .category-grid,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-poster {
        width: min(240px, 78vw);
    }

    .ranking-item a {
        grid-template-columns: 42px 82px minmax(0, 1fr);
    }

    .ranking-score {
        grid-column: 3;
        justify-self: start;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .container,
    .nav-inner,
    .footer-inner {
        width: min(100% - 22px, 1180px);
    }

    .logo-text {
        font-size: 18px;
    }

    .hero {
        height: 78vh;
        min-height: 560px;
    }

    .hero h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 34px;
    }

    .hero p,
    .page-hero p,
    .detail-info p {
        font-size: 16px;
    }

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

    .movie-grid-four,
    .movie-grid-six,
    .movie-grid-eight,
    .category-grid,
    .overview-grid {
        gap: 16px;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-title {
        font-size: 15px;
    }

    .movie-row-link {
        gap: 12px;
    }

    .movie-row-poster {
        flex-basis: 108px;
        height: 72px;
    }

    .filter-panel {
        align-items: stretch;
    }

    .filter-input {
        flex-basis: 100%;
    }

    .player-start {
        width: 62px;
        height: 62px;
    }

    .meta-table dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
