:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(59, 130, 246, 0.28);
    --line-soft: rgba(148, 163, 184, 0.16);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --dim: #94a3b8;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --green: #22c55e;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --purple: #a855f7;
    --shadow: 0 28px 70px rgba(2, 6, 23, 0.5);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.26), transparent 32rem), linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.94), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(30, 64, 175, 0.45);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
}

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

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

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    font-size: 14px;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.42);
}

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

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

.nav-link,
.mobile-link {
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #93c5fd;
}

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

.header-search input,
.mobile-search input,
.filter-controls input,
.filter-controls select {
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(59, 130, 246, 0.32);
    border-radius: 999px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-search input {
    width: 230px;
    padding: 10px 16px;
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    color: white;
    padding: 10px 16px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.header-search input:focus,
.mobile-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
}

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

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.mobile-search {
    display: flex;
    gap: 10px;
    padding: 0 16px 18px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 11px 16px;
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #020617;
}

.hero-stage,
.hero-slide,
.hero-slide > img,
.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 520ms ease;
}

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

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

.hero-layer-left {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.1));
}

.hero-layer-bottom {
    background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.42) 42%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(660px, 100%);
    padding-bottom: 56px;
}

.hero-pill,
.section-head span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(59, 130, 246, 0.38);
    border-radius: 999px;
    padding: 8px 16px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.18);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy p {
    margin: 0;
    color: #dbeafe;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.75;
}

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

.hero-meta span,
.detail-meta span,
.detail-tags span,
.tag-row span {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    padding: 6px 10px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.58);
    font-size: 13px;
}

.hero-actions,
.detail-copy .primary-button {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-button {
    padding: 14px 24px;
    color: white;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    box-shadow: 0 16px 34px rgba(30, 64, 175, 0.42);
}

.ghost-button {
    padding: 13px 22px;
    color: #bfdbfe;
    background: rgba(15, 23, 42, 0.54);
    border: 1px solid rgba(59, 130, 246, 0.36);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 132px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
    border: 1px solid rgba(59, 130, 246, 0.36);
    color: white;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
}

.hero-dot.active {
    background: #60a5fa;
}

.hero-thumbs {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    transform: translateX(-50%);
}

.hero-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    border: 1px solid rgba(59, 130, 246, 0.26);
    border-radius: 18px;
    padding: 10px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(12px);
    text-align: left;
    transition: border-color 180ms ease, background 180ms ease;
}

.hero-thumb.active,
.hero-thumb:hover {
    border-color: rgba(96, 165, 250, 0.72);
    background: rgba(30, 64, 175, 0.44);
}

.hero-thumb img {
    width: 54px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    flex: 0 0 auto;
}

.hero-thumb span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 700;
}

.quick-entry {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.quick-entry a,
.category-tile,
.category-card,
.content-card,
.filter-panel,
.rank-side {
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.68);
    box-shadow: var(--shadow);
}

.quick-entry a {
    padding: 20px;
    color: #dbeafe;
    font-weight: 800;
    text-align: center;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quick-entry a:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.58);
    background: rgba(30, 64, 175, 0.35);
}

.section-block {
    padding: 54px 0 0;
}

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

.section-head h2,
.page-hero h1 {
    margin: 12px 0 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head a,
.text-link {
    color: #93c5fd;
    font-weight: 800;
}

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

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

.movie-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.74);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.62);
    box-shadow: 0 20px 44px rgba(30, 64, 175, 0.26);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease, opacity 300ms ease;
}

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

.poster-type,
.poster-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 9px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    background: rgba(37, 99, 235, 0.88);
    backdrop-filter: blur(8px);
}

.poster-type {
    top: 10px;
    left: 10px;
}

.poster-year {
    right: 10px;
    bottom: 10px;
    background: rgba(15, 23, 42, 0.78);
}

.rank-badge {
    right: 10px;
    top: 10px;
    background: linear-gradient(135deg, #f97316, #eab308);
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover {
    color: #93c5fd;
}

.card-meta,
.card-desc {
    margin: 9px 0 0;
    color: var(--dim);
    font-size: 14px;
    line-height: 1.55;
}

.card-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #cbd5e1;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    transition: transform 300ms ease, opacity 300ms ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.2));
}

.category-tile span,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile span {
    font-size: 24px;
    font-weight: 900;
}

.category-tile em {
    margin-top: 10px;
    color: #cbd5e1;
    font-style: normal;
    line-height: 1.55;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.5;
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.rank-side {
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 92px;
}

.rank-side h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 38px 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.55);
    transition: background 180ms ease, transform 180ms ease;
}

.rank-item:hover {
    transform: translateX(4px);
    background: rgba(30, 64, 175, 0.34);
}

.rank-number {
    color: #60a5fa;
    font-weight: 900;
}

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

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

.rank-info strong,
.rank-info em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em {
    margin-top: 5px;
    color: var(--dim);
    font-size: 13px;
    font-style: normal;
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid rgba(59, 130, 246, 0.22);
    background: rgba(2, 6, 23, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    padding: 38px 0;
}

.footer-grid p {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--dim);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #bfdbfe;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding: 18px;
    color: var(--dim);
    text-align: center;
}

.page-main {
    padding-top: 36px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 32px;
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.24), transparent 24rem), linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 58, 138, 0.52));
    box-shadow: var(--shadow);
}

.small-hero {
    padding: 48px;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 22px;
    color: #bfdbfe;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: white;
}

.category-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.category-card {
    overflow: hidden;
}

.category-cover {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 170px;
    background: rgba(15, 23, 42, 0.8);
}

.category-cover img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.category-body {
    padding: 22px;
}

.category-body h2 {
    margin: 0;
    font-size: 23px;
}

.category-body p {
    min-height: 58px;
    margin: 12px 0 16px;
    color: var(--muted);
    line-height: 1.65;
}

.filter-panel {
    width: min(1280px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 20px;
}

.filter-title {
    margin-bottom: 14px;
    color: #bfdbfe;
    font-weight: 900;
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    padding: 12px 16px;
}

.empty-result {
    display: none;
    margin: 28px 0 0;
    padding: 22px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 18px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.65);
    text-align: center;
}

.empty-result.show {
    display: block;
}

.detail-main {
    padding-top: 0;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

.detail-bg,
.detail-bg-layer {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    filter: blur(1px);
    transform: scale(1.04);
}

.detail-bg-layer {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.64), rgba(2, 6, 23, 0.92)), linear-gradient(0deg, #020617, transparent 50%);
}

.detail-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    min-height: 560px;
    padding: 54px 0;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.36);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    margin: 18px 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 860px;
    margin: 0;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.8;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.34);
    border-radius: 28px;
    background: black;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.player-shell video,
.player-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.player-shell video {
    background: black;
}

.player-poster {
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    color: white;
    background: #020617;
}

.player-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
}

.player-start {
    position: absolute;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.95));
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.36);
    font-size: 32px;
    text-indent: 5px;
}

.player-shell.is-playing .player-poster {
    display: none;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
    padding-top: 34px;
}

.content-card {
    padding: 28px;
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: #dbeafe;
    line-height: 1.95;
}

.info-card {
    grid-column: 1 / -1;
}

.info-card dl {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.info-card dl div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.58);
}

.info-card dt {
    color: var(--dim);
    font-size: 13px;
}

.info-card dd {
    margin: 8px 0 0;
    color: white;
    font-weight: 800;
}

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

.movie-card.compact .card-desc {
    display: none;
}

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

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

    .menu-toggle {
        display: block;
    }

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

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

    .rank-side {
        position: static;
    }

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

    .hero-thumb:nth-child(n + 4) {
        display: none;
    }

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

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

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

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

    .hero-carousel {
        height: 680px;
    }

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

    .hero-meta {
        gap: 8px;
    }

    .hero-controls {
        bottom: 94px;
    }

    .hero-thumbs {
        bottom: 16px;
        grid-template-columns: 1fr;
    }

    .hero-thumb:not(.active) {
        display: none;
    }

    .quick-entry,
    .movie-grid,
    .movie-grid.three,
    .category-grid,
    .category-list-grid,
    .rank-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .small-hero {
        padding: 30px 22px;
        border-radius: 24px;
    }

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

    .filter-controls {
        grid-template-columns: 1fr;
    }

    .detail-head {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 0;
    }

    .detail-poster {
        width: min(260px, 72%);
    }

    .detail-copy h1 {
        font-size: 40px;
    }

    .player-start {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

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

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

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 460px) {
    .brand-text {
        font-size: 20px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .quick-entry,
    .movie-grid,
    .movie-grid.three,
    .category-grid,
    .category-list-grid,
    .rank-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .card-body h3 {
        font-size: 17px;
    }
}
