:root {
    --blue-950: #172554;
    --blue-900: #1e3a8a;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --indigo-700: #4338ca;
    --purple-700: #6d28d9;
    --orange-600: #ea580c;
    --amber-500: #f59e0b;
    --amber-50: #fffbeb;
    --stone-950: #0c0a09;
    --stone-900: #1c1917;
    --stone-800: #292524;
    --stone-700: #44403c;
    --stone-600: #57534e;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(30, 41, 59, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--stone-800);
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 48%, #fff7ed 100%);
    line-height: 1.7;
}

body.locked {
    overflow: hidden;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.08);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand strong,
.footer-brand strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--blue-900), var(--purple-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand em {
    display: block;
    margin-top: 5px;
    color: var(--blue-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--blue-600), var(--purple-700));
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
    font-size: 18px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 16px;
    border-radius: 12px;
    color: var(--blue-950);
    font-weight: 700;
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: white;
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-700));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.nav-toggle {
    display: none;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-950);
    font-size: 24px;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.45), transparent 28%), linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #581c87 100%);
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.34) 55%, rgba(15, 23, 42, 0.88)), radial-gradient(circle at 80% 10%, rgba(244, 114, 182, 0.28), transparent 32%);
    z-index: 1;
}

.hero-track {
    position: relative;
    z-index: 2;
    min-height: 680px;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 48px;
    align-items: center;
    min-height: 680px;
    padding: 78px 0 100px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 22px 0 16px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero h1 span {
    background: linear-gradient(90deg, #bfdbfe, #f5d0fe, #fbcfe8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(219, 234, 254, 0.88);
    font-size: 18px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-tags span,
.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 13px;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 14px;
    padding: 13px 20px;
    min-height: 48px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    color: white;
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-700));
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.4);
}

.btn-ghost {
    color: white;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-poster {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
    transform: rotate(1deg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-poster-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(14px);
}

.hero-poster-info strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

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

.hero-dot {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.hero-dot.is-active {
    background: white;
}

.section {
    padding: 72px 0;
}

.section.alt {
    background: rgba(255, 255, 255, 0.52);
}

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

.section-head h1,
.section-head h2 {
    margin: 0;
    color: var(--stone-800);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.section-head p,
.page-intro {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--stone-600);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 12px 34px rgba(30, 41, 59, 0.09);
    transition: 0.3s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #e7e5e4, #d6d3d1);
}

.movie-card .poster-link {
    aspect-ratio: 3 / 4;
}

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

.movie-card:hover .poster-link img,
.feature-card:hover img,
.rank-card:hover img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72));
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-700);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: 0.25s ease;
    font-size: 19px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

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

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(37, 99, 235, 0.92);
    color: white;
    font-size: 12px;
    font-weight: 800;
}

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

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    margin-bottom: 8px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--stone-800);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-title:hover {
    color: var(--blue-700);
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 45px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--stone-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.tag-row span {
    border-radius: 8px;
    padding: 3px 7px;
    background: var(--stone-100);
    color: var(--stone-600);
    font-size: 12px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--stone-600);
    font-size: 13px;
}

.movie-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #a8a29e;
}

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

.feature-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--stone-900);
    box-shadow: var(--shadow);
    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86));
}

.feature-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: white;
}

.feature-info h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.feature-info p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.82);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    border-radius: 22px;
    padding: 24px;
    background: white;
    box-shadow: 0 12px 34px rgba(30, 41, 59, 0.08);
    transition: 0.3s ease;
}

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

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background: linear-gradient(135deg, var(--blue-600), var(--purple-700));
}

.category-card.color-orange::before,
.category-card.color-amber::before,
.category-card.color-red::before {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.category-card.color-pink::before,
.category-card.color-rose::before,
.category-card.color-violet::before {
    background: linear-gradient(135deg, #ec4899, var(--purple-700));
}

.category-card.color-green::before,
.category-card.color-cyan::before,
.category-card.color-sky::before {
    background: linear-gradient(135deg, #06b6d4, #16a34a);
}

.category-card h2,
.category-card h3,
.category-card p,
.category-card span {
    position: relative;
    z-index: 1;
}

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    color: var(--stone-800);
    font-size: 22px;
}

.category-card p {
    margin: 0;
    color: var(--stone-600);
    font-size: 14px;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 12px 34px rgba(30, 41, 59, 0.08);
    transition: 0.3s ease;
}

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

.rank-card .poster-link {
    min-height: 210px;
}

.rank-body {
    padding: 20px;
}

.rank-num {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--blue-600), var(--purple-700));
    font-weight: 900;
}

.page-hero {
    padding: 70px 0;
    color: white;
    background: radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.35), transparent 28%), linear-gradient(100deg, var(--blue-950), var(--blue-900), #581c87);
}

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

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(219, 234, 254, 0.86);
    font-size: 18px;
}

.filter-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 14px;
    margin: -34px auto 34px;
    padding: 18px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 2px solid var(--stone-200);
    border-radius: 14px;
    padding: 13px 14px;
    background: white;
    color: var(--stone-800);
    font: inherit;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--blue-600);
}

.empty-state {
    display: none;
    padding: 50px 18px;
    border-radius: 22px;
    background: white;
    color: var(--stone-600);
    text-align: center;
    box-shadow: 0 10px 28px rgba(30, 41, 59, 0.08);
}

.empty-state.is-visible {
    display: block;
}

.detail-hero {
    padding: 44px 0 30px;
    color: white;
    background: linear-gradient(135deg, var(--stone-950), var(--blue-950) 55%, #581c87);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(219, 234, 254, 0.76);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: white;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.36);
}

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

.detail-info h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-info .lead {
    max-width: 860px;
    margin: 0 0 18px;
    color: rgba(219, 234, 254, 0.9);
    font-size: 18px;
}

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

.detail-tags span {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 700;
    font-size: 13px;
}

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

.panel {
    border-radius: 24px;
    background: white;
    box-shadow: 0 12px 34px rgba(30, 41, 59, 0.08);
}

.panel-pad {
    padding: 28px;
}

.panel h2 {
    margin: 0 0 18px;
    font-size: 26px;
    color: var(--stone-800);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: var(--shadow);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #020617;
    cursor: pointer;
    z-index: 5;
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    filter: blur(1px);
}

.play-circle {
    position: absolute;
    display: inline-flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue-700);
    background: rgba(255, 255, 255, 0.94);
    font-size: 30px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.info-table {
    display: grid;
    gap: 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--stone-100);
}

.info-row span:first-child {
    color: var(--stone-600);
}

.info-row span:last-child {
    color: var(--stone-800);
    font-weight: 800;
    text-align: right;
}

.article-content p {
    margin: 0 0 18px;
    color: var(--stone-700);
}

.search-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: center;
}

.search-box-large {
    display: flex;
    overflow: hidden;
    margin-top: 28px;
    border-radius: 18px;
    background: white;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.22);
}

.search-box-large input {
    flex: 1;
    border: 0;
    padding: 18px 20px;
    font: inherit;
    outline: 0;
}

.search-box-large a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: white;
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-700));
    font-weight: 900;
}

.site-footer {
    margin-top: 42px;
    background: linear-gradient(135deg, var(--stone-900), var(--blue-950));
    color: #bfdbfe;
    border-top: 4px solid var(--blue-700);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 38px;
    padding: 46px 0;
}

.footer-brand strong {
    color: #bfdbfe;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #dbeafe;
    font-size: 18px;
}

.site-footer p {
    margin: 14px 0 0;
    color: #93c5fd;
}

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

.footer-links a {
    border-radius: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #bfdbfe;
    font-size: 13px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
    padding: 18px 0 24px;
    color: #93c5fd;
    border-top: 1px solid rgba(147, 197, 253, 0.14);
    font-size: 13px;
}

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

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

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

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow);
    }

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

    .hero,
    .hero-track,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        gap: 24px;
        padding-top: 54px;
    }

    .section-head {
        display: block;
    }

    .movie-grid,
    .movie-grid.dense,
    .feature-grid,
    .category-grid,
    .rank-list,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-head {
        grid-template-columns: 180px minmax(0, 1fr);
    }

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

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

    .brand strong {
        font-size: 20px;
    }

    .brand em {
        font-size: 11px;
    }

    .hero,
    .hero-track,
    .hero-content {
        min-height: 820px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-poster {
        max-width: 260px;
    }

    .movie-grid,
    .movie-grid.dense,
    .feature-grid,
    .category-grid,
    .rank-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-card,
    .detail-head {
        grid-template-columns: 1fr;
    }

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

    .search-box-large {
        display: grid;
    }

    .search-box-large a {
        min-height: 52px;
    }
}
