:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.88);
    --bg-elevated: rgba(30, 41, 59, 0.82);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-bright: #cbd5e1;
    --cyan: #06b6d4;
    --cyan-deep: #0891b2;
    --blue: #2563eb;
    --orange: #f97316;
    --green: #22c55e;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(8, 145, 178, 0.18), transparent 32rem),
        radial-gradient(circle at 80% 8%, rgba(37, 99, 235, 0.12), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.logo-text,
.footer-logo span:last-child {
    font-size: 24px;
    background: linear-gradient(90deg, #67e8f9, #38bdf8, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 28px rgba(6, 182, 212, 0.24);
}

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

.nav-link {
    color: var(--muted-bright);
    font-weight: 650;
    font-size: 15px;
    transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #67e8f9;
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    border: 0;
    background: transparent;
    padding: 0;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 180px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--muted-bright);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(30, 41, 59, 0.86);
    color: #67e8f9;
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(15, 23, 42, 0.82);
    outline: none;
    border-radius: 999px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    width: 210px;
    padding: 10px 14px;
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 700;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(103, 232, 249, 0.78);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
    background: rgba(15, 23, 42, 0.95);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.88);
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #e2e8f0;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    padding: 0 22px 18px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.96);
}

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

.mobile-panel nav {
    display: grid;
    gap: 8px;
    padding: 14px 0;
}

.mobile-panel .nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.65);
}

.mobile-search input {
    flex: 1;
    padding: 11px 14px;
}

.hero-carousel {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.58) 42%, rgba(2, 6, 23, 0.16)),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.44) 42%, rgba(2, 6, 23, 0.18) 100%);
}

.hero-content {
    position: absolute;
    left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    right: 22px;
    bottom: 78px;
    max-width: 760px;
}

.hero-pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 26px rgba(6, 182, 212, 0.18);
}

.hero-content h1,
.hero-main-title {
    margin: 18px 0 8px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hero-content h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.12;
    color: #e0f2fe;
    font-weight: 850;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 18px;
    color: #dbeafe;
    font-size: clamp(16px, 2vw, 19px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.hero-meta span,
.meta-line span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-meta span {
    padding: 6px 12px;
    font-size: 13px;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.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.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 32px rgba(6, 182, 212, 0.22);
}

.btn-ghost {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(226, 232, 240, 0.14);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 38px;
    height: 4px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.28);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 22px 0;
}

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

.section-heading h2 {
    margin: 10px 0 0;
    color: var(--text);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.section-more {
    color: #67e8f9;
    font-weight: 750;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 232, 249, 0.42);
    box-shadow: 0 24px 58px rgba(6, 182, 212, 0.14);
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: rgba(15, 23, 42, 0.74);
}

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

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

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent);
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 820;
}

.card-content h3 a:hover {
    color: #67e8f9;
}

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

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.meta-line span {
    padding: 4px 8px;
    color: #bae6fd;
    font-size: 12px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-row span {
    padding: 5px 8px;
    color: #cbd5e1;
    font-size: 12px;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 132px 1fr;
    min-height: 184px;
}

.movie-card-horizontal .poster-wrap {
    height: 100%;
    aspect-ratio: auto;
}

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

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.rank-panel,
.rank-side {
    position: sticky;
    top: 92px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
    box-shadow: var(--shadow);
    padding: 22px;
}

.rank-panel-head span {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.rank-panel-head h2,
.rank-side h2 {
    margin: 4px 0 18px;
    font-size: 26px;
    line-height: 1.15;
}

.rank-list,
.rank-side ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rank-list li + li,
.rank-side li + li {
    border-top: 1px solid var(--line);
}

.rank-list a,
.rank-side a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 11px 0;
    color: var(--muted-bright);
}

.rank-list span,
.rank-side span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.14);
    color: #67e8f9;
    font-weight: 900;
}

.rank-list strong,
.rank-side a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-list em,
.rank-side em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.rank-more {
    display: block;
    margin-top: 16px;
    padding: 12px 14px;
    text-align: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 800;
}

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

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

.category-tile,
.category-card-link {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(103, 232, 249, 0.38);
}

.category-preview,
.category-card-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    padding: 4px;
    height: 126px;
    overflow: hidden;
}

.category-card-images {
    grid-template-columns: repeat(3, 1fr);
    height: 178px;
}

.category-preview img,
.category-card-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.category-tile h3,
.category-card-body h2 {
    margin: 14px 16px 6px;
    font-size: 21px;
}

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

.category-card-body span {
    display: inline-flex;
    margin: 0 16px 18px;
    color: #67e8f9;
    font-weight: 800;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 26px auto 0;
    padding: 56px 42px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.16), rgba(37, 99, 235, 0.08)),
        rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
}

.inner-hero h1 {
    margin: 16px 0 10px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.inner-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted-bright);
    font-size: 18px;
}

.rank-hero {
    background:
        radial-gradient(circle at 88% 15%, rgba(251, 191, 36, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(6, 182, 212, 0.16), rgba(37, 99, 235, 0.08)),
        rgba(15, 23, 42, 0.78);
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.64);
}

.filter-bar-wide {
    grid-template-columns: 1.6fr 180px 180px 180px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    padding: 0 15px;
}

.rank-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 28px;
    align-items: start;
}

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

.breadcrumb {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #67e8f9;
}

.detail-hero {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 22px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.18), transparent 24rem),
        rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(2, 6, 23, 0.7);
}

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

.detail-info {
    align-self: center;
}

.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-one-line {
    margin: 0 0 22px;
    color: #dbeafe;
    font-size: 18px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.detail-meta div {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.34);
}

.detail-meta dt {
    color: var(--muted);
    font-size: 12px;
}

.detail-meta dd {
    margin: 3px 0 0;
    color: var(--text);
    font-weight: 750;
}

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

.player-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 22px 0;
}

.video-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.24);
    border-radius: 28px;
    background: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background:
        radial-gradient(circle at center, rgba(6, 182, 212, 0.24), transparent 16rem),
        rgba(0, 0, 0, 0.28);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-cover span {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 32px;
    box-shadow: 0 22px 54px rgba(6, 182, 212, 0.38);
}

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

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

.detail-copy article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.74);
}

.detail-copy h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.detail-copy p {
    margin: 0;
    color: var(--muted-bright);
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.44), rgba(2, 6, 23, 0.94));
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 22px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo span:last-child {
    font-size: 21px;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 17px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    font-size: 14px;
}

.site-footer a:hover {
    color: #67e8f9;
}

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

.footer-bottom {
    padding: 18px 22px 26px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.is-filtered-out {
    display: none !important;
}

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

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

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

    .two-column-section,
    .rank-layout {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .nav-wrap {
        gap: 12px;
    }

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

    .hero-carousel {
        min-height: 78vh;
    }

    .hero-content {
        left: 22px;
        bottom: 74px;
    }

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

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

    .horizontal-list {
        grid-template-columns: 1fr;
    }

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

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

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

    .filter-bar,
    .filter-bar-wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .content-section,
    .player-section {
        padding-top: 42px;
    }

    .large-grid,
    .feature-grid,
    .category-grid,
    .category-page-grid,
    .detail-copy {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal {
        grid-template-columns: 110px 1fr;
        min-height: 156px;
    }

    .card-content {
        padding: 12px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .inner-hero {
        margin: 18px 14px 0;
        padding: 34px 22px;
        border-radius: 24px;
    }

    .detail-hero {
        margin: 18px 14px 0;
        padding: 14px;
        border-radius: 24px;
    }

    .breadcrumb {
        padding: 0 14px;
    }

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

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