:root {
    color-scheme: light;
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --orange-700: #c2410c;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --orange-100: #ffedd5;
    --amber-100: #fef3c7;
    --amber-50: #fffbeb;
    --white: #ffffff;
    --slate-950: #020617;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --shadow-soft: 0 12px 36px rgba(120, 53, 15, 0.12);
    --shadow-hover: 0 20px 46px rgba(120, 53, 15, 0.2);
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--slate-800);
    background: linear-gradient(180deg, #fff7ed 0%, #fff 36%, #fffaf0 100%);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(217, 119, 6, 0.14);
    backdrop-filter: blur(18px);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--amber-900);
    font-weight: 900;
    font-size: 22px;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
}

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

.nav-link {
    padding: 10px 14px;
    color: var(--amber-900);
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.22);
}

.header-search {
    width: 280px;
    display: flex;
    align-items: center;
    background: var(--amber-50);
    border: 1px solid rgba(217, 119, 6, 0.22);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 10px 0 10px 16px;
    color: var(--amber-950);
    background: transparent;
}

.header-search button {
    border: 0;
    padding: 10px 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    cursor: pointer;
}

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

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--amber-900);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 10px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    color: var(--amber-900);
    border-radius: 12px;
    font-weight: 700;
}

.mobile-nav a:hover {
    background: var(--amber-50);
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--amber-900), var(--orange-700));
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.55) 52%, rgba(2, 6, 23, 0.08));
}

.hero-content {
    position: absolute;
    inset: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-kicker span {
    padding: 6px 12px;
    color: #fff7ed;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-content h1,
.hero-content h2 {
    max-width: 720px;
    margin: 0 0 12px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content strong {
    display: block;
    margin-bottom: 16px;
    color: #fde68a;
    font-size: clamp(24px, 3vw, 40px);
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 30px;
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.8;
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    transition: all 0.22s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.34);
}

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

.ghost-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(2, 6, 23, 0.38);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.22s ease;
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: rgba(217, 119, 6, 0.82);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transition: all 0.22s ease;
}

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

.quick-panel {
    position: relative;
    z-index: 3;
    margin-top: -34px;
}

.quick-panel-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) 2fr;
    gap: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.quick-copy h2 {
    margin: 0 0 8px;
    color: var(--amber-900);
    font-size: 26px;
}

.quick-copy p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.7;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
}

.quick-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--amber-900);
    background: var(--amber-50);
    border: 1px solid rgba(217, 119, 6, 0.18);
    font-weight: 700;
}

.quick-links a:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.content-section,
.category-overview-block {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0 0;
}

.section-heading,
.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.heading-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.heading-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.22);
}

.section-heading h2,
.category-overview-head h2 {
    margin: 0;
    color: var(--amber-900);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.section-heading p,
.category-overview-head p {
    margin: 4px 0 0;
    color: var(--slate-600);
}

.section-more {
    flex: none;
    padding: 10px 14px;
    color: var(--orange-700);
    border-radius: 999px;
    background: var(--orange-100);
    font-weight: 800;
}

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

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

.poster-grid-eight {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

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

.movie-card {
    min-width: 0;
}

.card-link,
.wide-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: all 0.24s ease;
}

.card-link:hover,
.wide-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.poster-wrap,
.wide-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
}

.poster-wrap {
    aspect-ratio: 3 / 4;
}

.poster-wrap img,
.wide-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-link:hover img,
.wide-link:hover img,
.feature-main:hover img {
    transform: scale(1.08);
}

.type-pill,
.rank-badge {
    position: absolute;
    z-index: 2;
    color: var(--white);
    border-radius: 999px;
    background: var(--amber-600);
    font-size: 12px;
    font-weight: 800;
}

.type-pill {
    top: 10px;
    right: 10px;
    padding: 5px 9px;
}

.rank-badge {
    top: 10px;
    left: 10px;
    min-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.18);
}

.card-body {
    padding: 15px;
}

.card-body h3,
.wide-body h3 {
    margin: 0 0 8px;
    color: var(--amber-900);
    font-size: 16px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body p,
.wide-body p {
    margin: 0 0 12px;
    color: var(--slate-600);
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--slate-500);
    font-size: 12px;
}

.movie-meta span:first-child {
    max-width: 60%;
    padding: 4px 8px;
    color: var(--amber-700);
    border-radius: 999px;
    background: var(--amber-100);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.movie-card-wide .wide-link {
    flex-direction: row;
}

.wide-cover {
    width: 150px;
    min-height: 200px;
    flex: none;
}

.wide-body {
    min-width: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    padding: 5px 9px;
    color: var(--orange-700);
    border-radius: 999px;
    background: var(--orange-100);
    font-size: 12px;
    font-weight: 700;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

.feature-main a {
    position: relative;
    min-height: 480px;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: var(--slate-950);
    box-shadow: var(--shadow-soft);
}

.feature-main img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-main div {
    position: absolute;
    inset: auto 0 0;
    padding: 34px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.08));
}

.feature-main span {
    color: #fde68a;
    font-weight: 800;
}

.feature-main h2 {
    margin: 8px 0;
    font-size: clamp(26px, 4vw, 42px);
}

.feature-main p {
    margin: 0;
    color: #e2e8f0;
    line-height: 1.8;
}

.feature-side {
    display: grid;
    gap: 18px;
}

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

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

.category-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: all 0.24s ease;
}

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

.category-main-link {
    display: block;
    padding: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-700), var(--orange-600));
}

.category-main-link span {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
}

.category-main-link p {
    margin: 0;
    color: #fff7ed;
    line-height: 1.65;
}

.category-samples {
    display: grid;
    gap: 0;
    padding: 12px 16px 16px;
}

.category-samples a {
    padding: 8px 0;
    color: var(--amber-900);
    border-bottom: 1px solid rgba(217, 119, 6, 0.12);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-samples a:last-child {
    border-bottom: 0;
}

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

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

.page-hero {
    min-height: 310px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(253, 186, 116, 0.26), transparent 28%),
        linear-gradient(135deg, var(--amber-900), var(--orange-700));
}

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

.page-hero span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

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

.page-hero p {
    max-width: 650px;
    margin: 0;
    color: #fff7ed;
    font-size: 18px;
    line-height: 1.8;
}

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

.filter-panel,
.related-box,
.detail-card,
.review-card,
.search-panel,
.list-toolbar {
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.filter-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
}

.filter-panel h2 {
    margin: 0 0 16px;
    color: var(--amber-900);
}

.filter-panel nav {
    display: grid;
    gap: 8px;
}

.filter-panel a {
    padding: 10px 12px;
    color: var(--amber-900);
    border-radius: 12px;
    font-weight: 800;
}

.filter-panel a:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.list-toolbar,
.search-panel {
    margin-bottom: 22px;
    padding: 18px;
}

.list-toolbar label,
.search-panel label {
    display: grid;
    gap: 8px;
    color: var(--amber-900);
    font-weight: 900;
}

.list-toolbar input,
.search-panel input {
    width: 100%;
    border: 1px solid rgba(217, 119, 6, 0.22);
    border-radius: 14px;
    outline: none;
    padding: 13px 15px;
    color: var(--amber-950);
    background: var(--amber-50);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-600);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange-700);
    font-weight: 800;
}

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

.detail-main {
    min-width: 0;
    display: grid;
    gap: 24px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 24px 54px rgba(2, 6, 23, 0.28);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.82));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-ring {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 20px 44px rgba(234, 88, 12, 0.36);
    font-size: 34px;
}

.detail-card,
.review-card {
    padding: 28px;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.detail-card h1 {
    margin: 0;
    color: var(--amber-900);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

.detail-type {
    flex: none;
    padding: 8px 14px;
    color: var(--amber-900);
    border-radius: 999px;
    background: var(--amber-100);
    font-weight: 900;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
    color: var(--slate-600);
}

.detail-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--slate-100);
}

.detail-tags {
    margin-bottom: 20px;
}

.text-block {
    padding-top: 22px;
    border-top: 1px solid var(--slate-200);
}

.text-block + .text-block {
    margin-top: 22px;
}

.text-block h2,
.review-card h2,
.related-box h2 {
    margin: 0 0 12px;
    color: var(--amber-900);
    font-size: 22px;
}

.text-block p,
.review-card p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.9;
}

.review-card {
    border-left: 5px solid var(--amber-600);
    background: linear-gradient(135deg, var(--amber-50), var(--white));
}

.related-sidebar {
    position: sticky;
    top: 96px;
}

.related-box {
    padding: 22px;
}

.related-box .movie-card-wide + .movie-card-wide {
    margin-top: 14px;
}

.related-box .wide-cover {
    width: 96px;
    min-height: 128px;
}

.related-box .wide-body {
    padding: 12px;
}

.related-box .tag-row {
    display: none;
}

.site-footer {
    margin-top: 70px;
    color: #fde68a;
    background: linear-gradient(135deg, var(--amber-950), var(--orange-700));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.footer-inner p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer-links a {
    color: #fff7ed;
}

[data-filter-hidden="true"] {
    display: none;
}

@media (max-width: 1100px) {
    .header-search {
        width: 220px;
    }

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

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

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

    .filter-panel,
    .related-sidebar {
        position: static;
    }
}

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

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

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

    .hero {
        height: 560px;
    }

    .hero-content {
        padding-right: 60px;
    }

    .quick-panel-inner,
    .wide-grid,
    .ranking-list,
    .ranking-page-list {
        grid-template-columns: 1fr;
    }

    .poster-grid-four,
    .poster-grid-six,
    .poster-grid-eight {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .header-inner {
        width: min(100% - 24px, 1180px);
        min-height: 64px;
    }

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

    .hero {
        height: 520px;
    }

    .hero-content {
        width: min(100% - 32px, 1180px);
        padding-right: 0;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .content-section,
    .category-overview-block {
        width: min(100% - 24px, 1180px);
        padding-top: 42px;
    }

    .section-heading,
    .category-overview-head,
    .detail-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .poster-grid-four,
    .poster-grid-six,
    .poster-grid-eight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-card-wide .wide-link {
        flex-direction: row;
    }

    .wide-cover {
        width: 118px;
        min-height: 158px;
    }

    .card-body,
    .wide-body {
        padding: 12px;
    }

    .detail-card,
    .review-card,
    .related-box {
        padding: 20px;
    }

    .play-ring {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
