:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --border: rgba(148, 163, 184, 0.18);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --cyan: #22d3ee;
    --cyan-dark: #0891b2;
    --blue: #2563eb;
    --orange: #fb923c;
    --purple: #c084fc;
    --radius: 18px;
    --shadow: 0 20px 70px rgba(8, 145, 178, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.94);
    border-bottom: 1px solid rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

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

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

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #04111e;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 999px;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.38);
}

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

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

.nav-link {
    color: #cbd5e1;
    font-weight: 650;
    transition: color 0.2s ease;
}

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

.header-search {
    position: relative;
    width: 260px;
}

.header-search input,
.mobile-search input,
.big-search input,
.search-page-form input {
    width: 100%;
    color: var(--text);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid #334155;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.search-page-form input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

.mobile-menu-button {
    display: none;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 0;
    border-radius: 12px;
    color: var(--text);
    background: rgba(30, 41, 59, 0.88);
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 16px;
    border-top: 1px solid #1e293b;
    background: #0f172a;
}

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

.mobile-search input {
    height: 44px;
    padding: 0 14px;
    margin-bottom: 12px;
    border-radius: 12px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

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

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

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

.hero-bg {
    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) 0%, rgba(2, 6, 23, 0.72) 44%, rgba(2, 6, 23, 0.16) 100%),
        linear-gradient(0deg, #020617 0%, transparent 42%);
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 74px;
}

.hero-copy {
    width: min(680px, 100%);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker span,
.pill {
    padding: 5px 12px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.14);
    border: 1px solid rgba(34, 211, 238, 0.42);
    border-radius: 999px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.hero-copy p,
.page-hero p,
.intro-panel p {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.hero-meta,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    color: #cbd5e1;
}

.hero-meta svg,
.detail-meta svg,
.movie-meta svg {
    width: 17px;
    height: 17px;
    margin-right: 6px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    vertical-align: -3px;
}

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

.inline-actions {
    margin-top: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 13px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(90deg, #06b6d4, #2563eb);
    box-shadow: 0 18px 35px rgba(8, 145, 178, 0.28);
}

.button-ghost {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.24);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    right: 48px;
    bottom: 34px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.section-block {
    margin-top: 68px;
}

.intro-panel,
.stats-panel,
.prose-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-panel h2,
.section-heading h2,
.stats-panel h2,
.prose-panel h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.big-search {
    display: flex;
    width: min(520px, 100%);
    background: rgba(2, 6, 23, 0.86);
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
}

.big-search input {
    height: 54px;
    padding: 0 18px;
    border: 0;
    background: transparent;
}

.big-search button,
.search-page-form button {
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(90deg, #06b6d4, #2563eb);
    border: 0;
    font-weight: 800;
    cursor: pointer;
}

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

.section-heading a {
    color: var(--cyan);
    font-weight: 800;
}

.section-heading.no-link {
    align-items: center;
}

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

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

.movie-card {
    overflow: hidden;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: var(--shadow);
}

.movie-thumb {
    position: relative;
    display: block;
    height: 244px;
    overflow: hidden;
    background: #020617;
}

.movie-thumb img,
.large-poster img,
.category-tile img,
.category-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover img,
.category-tile:hover img,
.category-card:hover img {
    transform: scale(1.08);
}

.duration-badge,
.rank-badge {
    position: absolute;
    z-index: 3;
    padding: 5px 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 8px;
}

.duration-badge {
    right: 10px;
    top: 10px;
}

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

.play-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.play-mask svg {
    width: 52px;
    height: 52px;
    fill: currentColor;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.movie-card:hover .play-mask,
.large-poster:hover .play-mask {
    opacity: 1;
}

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

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    color: #f8fafc;
    font-weight: 800;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

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

.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 42px;
    margin: 8px 0 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-info-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted-2);
    font-size: 12px;
}

.movie-meta {
    margin-top: 10px;
    gap: 13px;
    color: #94a3b8;
    font-size: 13px;
}

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

.category-tile {
    position: relative;
    min-height: 154px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
}

.category-tile img,
.tile-shade {
    position: absolute;
    inset: 0;
}

.tile-shade {
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.28));
}

.category-tile strong,
.category-tile small {
    position: relative;
    z-index: 2;
    display: block;
}

.category-tile strong {
    margin-top: 64px;
    color: #fff;
    font-size: 21px;
}

.category-tile small {
    margin-top: 6px;
    color: #cbd5e1;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
}

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

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: stretch;
}

.horizontal-thumb {
    height: 128px;
}

.movie-card-horizontal .movie-card-body {
    padding: 14px 16px;
}

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

.large-poster {
    position: relative;
    display: block;
    height: 318px;
    overflow: hidden;
    border-radius: 18px;
    background: #020617;
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.22));
}

.large-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3;
}

.large-content strong,
.large-content small {
    display: block;
}

.large-content strong {
    margin: 10px 0 7px;
    color: #fff;
    font-size: 25px;
    line-height: 1.15;
}

.large-content small {
    display: -webkit-box;
    overflow: hidden;
    color: #cbd5e1;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-main {
    min-height: 70vh;
    padding-top: 42px;
}

.page-hero {
    padding: 58px 32px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 32rem),
        rgba(15, 23, 42, 0.72);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.small-hero h1,
.category-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
}

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

.category-card {
    display: grid;
    grid-template-columns: 138px 1fr;
    gap: 18px;
    padding: 18px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.5);
}

.category-card-cover {
    position: relative;
    height: 120px;
    overflow: hidden;
    border-radius: 14px;
}

.category-card-cover span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(2, 6, 23, 0.32);
}

.category-card-cover svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.category-card h2 {
    margin: 0 0 8px;
    color: #fff;
}

.category-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.category-card strong {
    color: var(--cyan);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag-cloud span,
.tag-list a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
}

.tag-cloud em {
    color: var(--cyan);
    font-style: normal;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.page-link {
    display: inline-grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.page-link.is-active,
.page-link:hover {
    color: #fff;
    background: linear-gradient(90deg, #06b6d4, #2563eb);
    border-color: transparent;
}

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

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

.search-page-form {
    display: flex;
    width: min(760px, 100%);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid #334155;
    border-radius: 18px;
}

.search-page-form input {
    height: 58px;
    padding: 0 18px;
    border: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

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

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

.player-card,
.detail-title-card,
.detail-panel,
.sidebar-sticky,
.prose-panel {
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
}

.video-shell {
    position: relative;
    background: #000;
}

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

.video-start {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.video-start.is-hidden {
    display: none;
}

.video-start svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.video-status {
    position: absolute;
    left: 16px;
    bottom: 14px;
    margin: 0;
    padding: 6px 10px;
    color: #cbd5e1;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 999px;
}

.detail-title-card,
.detail-panel {
    margin-top: 20px;
    padding: 24px;
}

.detail-title-card h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.detail-title-card p,
.detail-panel p,
.prose-panel p {
    color: #cbd5e1;
    line-height: 1.9;
}

.detail-panel h2,
.sidebar-sticky h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
}

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

.detail-tags dl div {
    padding: 12px;
    background: rgba(2, 6, 23, 0.42);
    border-radius: 12px;
}

.detail-tags dt {
    color: var(--muted-2);
    font-size: 13px;
}

.detail-tags dd {
    margin: 4px 0 0;
    color: #e2e8f0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-list a:hover {
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.44);
}

.sidebar-sticky {
    position: sticky;
    top: 92px;
    padding: 18px;
}

.sidebar-list .movie-card-horizontal {
    grid-template-columns: 132px 1fr;
}

.sidebar-list .horizontal-thumb {
    height: 96px;
}

.site-footer {
    margin-top: 80px;
    padding: 44px 0 22px;
    background: rgba(15, 23, 42, 0.96);
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
}

.footer-brand {
    margin-bottom: 14px;
    color: #fff;
    font-size: 20px;
}

.site-footer p {
    color: var(--muted);
    line-height: 1.7;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 20px;
    color: var(--muted-2);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

    .category-card-grid,
    .wide-rank-list,
    .detail-layout,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        order: 2;
    }
}

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

    .mobile-menu-button {
        display: block;
    }

    .hero-slider {
        height: 76vh;
        min-height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.88) 54%, rgba(2, 6, 23, 0.32) 100%);
    }

    .hero-content {
        padding-bottom: 86px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        right: 24px;
        bottom: 26px;
    }

    .intro-panel,
    .stats-panel,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .big-search,
    .search-page-form {
        width: 100%;
    }

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

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

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

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

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

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

    .movie-grid,
    .compact-grid,
    .category-grid,
    .large-grid,
    .ranking-featured {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal,
    .sidebar-list .movie-card-horizontal,
    .category-card {
        grid-template-columns: 1fr;
    }

    .horizontal-thumb,
    .sidebar-list .horizontal-thumb,
    .movie-thumb {
        height: 214px;
    }

    .detail-tags dl,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-page-form,
    .big-search {
        display: grid;
        grid-template-columns: 1fr;
    }

    .search-page-form button,
    .big-search button {
        min-height: 48px;
    }
}
