:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #ea580c;
    --secondary-dark: #c2410c;
    --accent: #f59e0b;
    --dark-900: #0f172a;
    --dark-800: #1e293b;
    --dark-700: #334155;
    --dark-600: #475569;
    --dark-500: #64748b;
    --dark-300: #cbd5e1;
    --dark-100: #f1f5f9;
    --light: #f8fafc;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.08);
    --shadow-medium: 0 14px 36px rgba(15, 23, 42, 0.14);
    --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.28);
    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;
}

body {
    margin: 0;
    background: var(--light);
    color: var(--dark-800);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.nav-shell {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #eff6ff;
}

.brand-text,
.footer-brand {
    font-size: 25px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 650;
    color: var(--dark-700);
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

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

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--dark-700);
}

.mobile-menu {
    display: none;
    border-top: 1px solid #e2e8f0;
    background: var(--white);
}

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

.mobile-menu-inner {
    padding: 12px 0 18px;
    display: grid;
    gap: 8px;
}

.mobile-nav-link {
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--dark-700);
    font-weight: 650;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    background: #eff6ff;
    color: var(--primary);
}

.hero-carousel {
    position: relative;
    min-height: 610px;
    background: linear-gradient(180deg, var(--dark-900), var(--dark-800));
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease, transform 0.75s ease;
    transform: scale(1.015);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.12);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(37, 99, 235, 0.38), transparent 34%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.58) 44%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.88), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(760px, 100%);
    color: var(--white);
    padding-bottom: 72px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--secondary);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.25);
}

.hero-copy h1,
.hero-copy h2 {
    margin: 18px 0 14px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.hero-copy p {
    margin: 0;
    max-width: 720px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
    color: #e2e8f0;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #eff6ff;
    font-size: 14px;
    font-weight: 650;
}

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

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

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

.btn-primary {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.34);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(15, 23, 42, 0.15);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(0, 0, 0, 0.42);
    font-size: 34px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.62);
    transform: translateY(-50%) scale(1.05);
}

.hero-arrow.prev {
    left: 20px;
}

.hero-arrow.next {
    right: 20px;
}

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

.hero-dot {
    width: 18px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.hero-search-panel {
    position: absolute;
    z-index: 7;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-strong);
}

.hero-search {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    background: var(--white);
}

.hero-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 18px;
    outline: none;
}

.hero-search button {
    border: 0;
    padding: 0 22px;
    color: var(--white);
    background: var(--primary);
    font-weight: 750;
}

.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-quick-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 700;
}

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

.band-section,
.year-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff7ed, var(--white));
}

.year-section {
    background: linear-gradient(180deg, #eff6ff, var(--white));
}

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

.section-heading.with-controls {
    justify-content: space-between;
}

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

.section-mark {
    width: 10px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    flex: none;
}

.section-heading h2 {
    margin: 0;
    color: var(--dark-900);
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 6px 0 0;
    color: var(--dark-500);
    line-height: 1.7;
}

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

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

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

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

.movie-card {
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-card a {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-900), var(--dark-700));
}

.movie-card.large .poster-wrap {
    height: 300px;
}

.movie-card.small .poster-wrap {
    height: 190px;
}

.movie-card.rank .poster-wrap {
    height: 210px;
}

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

.movie-card:hover .poster-wrap img {
    transform: scale(1.08);
}

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.82));
}

.poster-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 750;
}

.poster-badge.left {
    left: 12px;
    background: var(--primary);
}

.poster-badge.right {
    right: 12px;
    background: var(--secondary);
}

.rank-badge {
    left: 12px;
    top: auto;
    bottom: 12px;
    min-width: 42px;
    text-align: center;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
}

.poster-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.84);
    color: var(--white);
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.36);
}

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

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

.movie-card-body h3 {
    margin: 0;
    color: var(--dark-800);
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 48px;
    transition: color 0.2s ease;
}

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

.movie-card-body p {
    margin: 10px 0 0;
    color: var(--dark-500);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    color: var(--dark-500);
    font-size: 13px;
}

.movie-meta span:last-child {
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 16px;
    scrollbar-width: none;
}

.movie-scroller::-webkit-scrollbar {
    display: none;
}

.scroll-item {
    width: 320px;
    flex: 0 0 auto;
}

.scroll-controls {
    display: flex;
    gap: 10px;
}

.scroll-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-700);
    box-shadow: var(--shadow-soft);
    font-size: 28px;
}

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

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

.category-card {
    min-height: 164px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--white), #eff6ff);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(even) {
    background: linear-gradient(135deg, var(--white), #fff7ed);
}

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

.category-card span {
    color: var(--dark-900);
    font-size: 22px;
    font-weight: 800;
}

.category-card p {
    margin: 16px 0 0;
    color: var(--dark-600);
    line-height: 1.75;
}

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

.year-columns h3 {
    margin: 0 0 20px;
    color: var(--dark-800);
    font-size: 24px;
}

.year-columns h3 span {
    display: inline-flex;
    padding: 9px 16px;
    border-radius: 13px;
    color: var(--white);
    background: var(--primary);
}

.year-columns > div:nth-child(2) h3 span {
    background: var(--secondary);
}

.rank-preview,
.rank-listing {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

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

.center-action {
    justify-content: center;
}

.page-hero,
.detail-hero {
    padding: 70px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.page-hero.category-hero {
    background: linear-gradient(135deg, #0f172a, var(--primary));
}

.page-hero.ranking-hero {
    background: linear-gradient(135deg, #111827, var(--secondary));
}

.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

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

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

.filter-panel {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.filter-panel input {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 16px;
    padding: 15px 18px;
    outline: none;
    color: var(--dark-800);
    background: #f8fafc;
}

.filter-panel input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chips button {
    border: 0;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--dark-700);
    background: #f1f5f9;
    font-weight: 700;
}

.filter-chips button.is-active,
.filter-chips button:hover {
    color: var(--white);
    background: var(--primary);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.45), transparent 32%),
        linear-gradient(135deg, var(--dark-900), var(--dark-800));
}

.detail-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: center;
}

.detail-poster {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: var(--dark-800);
}

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

.detail-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--secondary);
    font-weight: 800;
    margin-bottom: 18px;
}

.detail-one-line {
    max-width: 820px;
    color: #e2e8f0;
    font-size: 20px;
    line-height: 1.75;
    margin: 18px 0 0;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.player-section {
    padding-top: 54px;
}

.player-shell {
    border-radius: 28px;
    padding: 12px;
    background: linear-gradient(135deg, var(--dark-900), var(--dark-800));
    box-shadow: var(--shadow-strong);
}

.player-area {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
}

.player-poster {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.player-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.62);
}

.player-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), rgba(15, 23, 42, 0.8));
}

.player-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 92px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 42px;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.46);
}

.detail-content {
    padding-top: 54px;
}

.detail-article {
    padding: 34px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.detail-article h2 {
    margin: 0 0 14px;
    color: var(--dark-900);
    font-size: 28px;
}

.detail-article h2:not(:first-child) {
    margin-top: 32px;
}

.detail-article p {
    margin: 0;
    color: var(--dark-700);
    font-size: 17px;
    line-height: 1.9;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}

.info-list div {
    padding: 16px;
    border-radius: 16px;
    background: #f8fafc;
}

.info-list dt {
    color: var(--dark-500);
    font-size: 13px;
    font-weight: 800;
}

.info-list dd {
    margin: 6px 0 0;
    color: var(--dark-800);
    font-weight: 750;
}

.site-footer {
    margin-top: 76px;
    background: var(--dark-900);
    color: var(--dark-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 42px;
    padding: 48px 0;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 18px;
}

.footer-grid p {
    max-width: 520px;
    line-height: 1.75;
}

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

.footer-grid a:hover {
    color: #93c5fd;
}

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

.is-hidden-by-filter {
    display: none !important;
}

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

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

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

    .mobile-toggle {
        display: inline-flex;
    }

    .hero-carousel {
        min-height: 700px;
    }

    .hero-content {
        min-height: 610px;
        align-items: flex-start;
        padding-top: 78px;
    }

    .hero-copy {
        padding-bottom: 160px;
    }

    .hero-search-panel {
        grid-template-columns: 1fr;
        bottom: 18px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 150px;
    }

    .featured-grid,
    .movie-grid,
    .compact-grid,
    .listing-grid,
    .rank-listing,
    .rank-preview,
    .category-grid,
    .category-grid-large,
    .year-columns,
    .footer-grid,
    .detail-layout,
    .info-list {
        grid-template-columns: 1fr 1fr;
    }

    .detail-layout {
        align-items: start;
    }

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

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

    .brand-text {
        font-size: 21px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 40px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-search {
        display: grid;
    }

    .hero-search input,
    .hero-search button {
        min-height: 46px;
    }

    .featured-grid,
    .movie-grid,
    .compact-grid,
    .listing-grid,
    .rank-listing,
    .rank-preview,
    .category-grid,
    .category-grid-large,
    .year-columns,
    .footer-grid,
    .detail-layout,
    .info-list {
        grid-template-columns: 1fr;
    }

    .poster-wrap,
    .movie-card.large .poster-wrap,
    .movie-card.small .poster-wrap,
    .movie-card.rank .poster-wrap {
        height: 250px;
    }

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

    .detail-article {
        padding: 24px;
    }

    .player-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }
}
