:root {
    --bg: #0f172a;
    --bg-soft: #111827;
    --panel: rgba(30, 41, 59, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --border: rgba(148, 163, 184, 0.18);
    --border-strong: rgba(16, 185, 129, 0.48);
    --text: #f8fafc;
    --text-soft: #d1d5db;
    --muted: #94a3b8;
    --accent: #10b981;
    --accent-2: #14b8a6;
    --accent-soft: rgba(16, 185, 129, 0.18);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --radius-sm: 14px;
}

* {
    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(16, 185, 129, 0.16), transparent 30rem),
        radial-gradient(circle at 80% 10%, rgba(20, 184, 166, 0.12), transparent 24rem),
        linear-gradient(135deg, #0f172a 0%, #111827 48%, #0f172a 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

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

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

.brand__icon {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #052e2b;
    background: linear-gradient(135deg, #34d399, #14b8a6);
    border-radius: 999px;
    box-shadow: 0 0 32px rgba(16, 185, 129, 0.36);
}

.brand__text {
    font-size: 20px;
    background: linear-gradient(90deg, #6ee7b7, #5eead4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: var(--text-soft);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #6ee7b7;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 16px 18px;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid var(--border);
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    display: block;
    padding: 11px 10px;
    border-radius: 10px;
}

.mobile-link:hover,
.mobile-link.active {
    background: rgba(16, 185, 129, 0.12);
}

main {
    padding-top: 68px;
}

.hero-slider {
    position: relative;
    height: min(650px, calc(100vh - 68px));
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-slide__image,
.detail-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-slide__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.84) 42%, rgba(15, 23, 42, 0.24) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.12) 45%);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    max-width: 1180px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #6ee7b7;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-slide h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-summary {
    max-width: 700px;
    margin: 22px 0 0;
    color: var(--text-soft);
    font-size: clamp(18px, 2vw, 24px);
}

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

.hero-tags span,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    color: #a7f3d0;
    background: var(--accent-soft);
    border: 1px solid rgba(16, 185, 129, 0.32);
    border-radius: 999px;
    font-size: 13px;
}

.hero-actions,
.detail-copy .primary-button {
    margin-top: 34px;
}

.primary-button,
.ghost-button,
.site-search button,
.filter-grid button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(16, 185, 129, 0.28);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover,
.site-search button:hover,
.filter-grid button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 42px rgba(16, 185, 129, 0.4);
}

.ghost-button {
    margin-left: 12px;
    color: #d1fae5;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: none;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: white;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
}

.hero-control--prev {
    left: 24px;
}

.hero-control--next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(148, 163, 184, 0.7);
    border: 0;
    border-radius: 999px;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.search-panel {
    position: relative;
    z-index: 5;
    margin-top: -45px;
}

.site-search,
.filter-panel {
    padding: 22px;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.site-search label,
.filter-grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-soft);
    font-weight: 700;
}

.site-search__row,
.filter-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
}

.site-search input,
.filter-grid input,
.filter-grid select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    color: var(--text);
    background: rgba(30, 41, 59, 0.72);
    border: 1px solid var(--border);
    border-radius: 999px;
    outline: 0;
}

.filter-panel {
    margin-top: 28px;
}

.filter-grid {
    grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
    align-items: end;
}

.content-section {
    padding-top: 66px;
    padding-bottom: 66px;
}

.content-section--tint {
    background: rgba(30, 41, 59, 0.3);
}

.compact-section {
    padding-top: 42px;
    padding-bottom: 42px;
}

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

.section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
}

.section-heading--simple {
    align-items: center;
}

.text-link {
    color: #6ee7b7;
    font-weight: 800;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card__link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.58);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card__link:hover {
    border-color: var(--border-strong);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
    transform: translateY(-5px);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.26), transparent 12rem),
        linear-gradient(135deg, #1e293b, #020617);
}

.movie-card__poster {
    height: 250px;
}

.movie-card--small .movie-card__poster {
    height: 210px;
}

.movie-card--wide {
    flex: 0 0 280px;
}

.movie-card--wide .movie-card__poster {
    height: 320px;
}

.movie-card__poster img,
.detail-poster img,
.category-card img,
.category-overview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.2s ease;
}

.movie-card__link:hover .movie-card__poster img {
    transform: scale(1.08);
}

.movie-card__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.08));
    opacity: 0.85;
}

.play-badge {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #052e2b;
    background: linear-gradient(135deg, #6ee7b7, #14b8a6);
    border-radius: 999px;
    transform: scale(0.92);
    transition: transform 0.2s ease;
}

.movie-card__link:hover .play-badge {
    transform: scale(1.05);
}

.movie-card__tags {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.movie-card__tags .tag {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11px;
}

.movie-card__body {
    padding: 16px;
}

.movie-card__body h3 {
    margin: 0 0 8px;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card__body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
}

.movie-card__meta span {
    padding: 3px 8px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border);
    border-radius: 999px;
}

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

.category-card {
    position: relative;
    display: flex;
    min-height: 180px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: #111827;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.category-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.08));
}

.category-card img {
    position: absolute;
    inset: 0;
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
}

.category-card strong {
    color: #fff;
    font-size: 22px;
}

.category-card em {
    margin-top: 6px;
    color: var(--text-soft);
    font-style: normal;
}

.horizontal-movies {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.horizontal-movies::-webkit-scrollbar {
    display: none;
}

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

.scroll-actions button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: white;
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 30px;
}

.ranking-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list--page {
    gap: 14px;
}

.ranking-row a {
    display: grid;
    grid-template-columns: 56px 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(30, 41, 59, 0.62);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.ranking-row a:hover {
    border-color: var(--border-strong);
    transform: translateX(4px);
}

.ranking-row__number {
    color: #6ee7b7;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.ranking-row img {
    width: 70px;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
    background: #111827;
}

.ranking-row__content {
    min-width: 0;
}

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

.ranking-row__content strong {
    color: #fff;
    font-size: 17px;
}

.ranking-row__content em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.ranking-row__action {
    color: #6ee7b7;
    font-weight: 800;
}

.highlight-panel,
.detail-side-card,
.detail-article,
.category-overview-card {
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.highlight-panel {
    align-self: start;
    padding: 28px;
    position: sticky;
    top: 92px;
}

.highlight-panel h2 {
    margin: 0 0 14px;
    font-size: 30px;
}

.highlight-panel p {
    color: var(--text-soft);
}

.page-hero {
    position: relative;
    padding: 78px 0 42px;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.14), transparent 45%),
        rgba(15, 23, 42, 0.56);
    border-bottom: 1px solid var(--border);
}

.page-hero--compact h1 {
    max-width: 880px;
    font-size: clamp(34px, 5vw, 56px);
}

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    color: var(--text-soft);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
}

.breadcrumb a {
    color: #6ee7b7;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    overflow: hidden;
}

.category-overview-card__media {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.category-overview-card__media span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    color: #a7f3d0;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 999px;
    font-weight: 800;
}

.category-overview-card__body {
    padding: 22px;
}

.category-overview-card__body h2 {
    margin: 0 0 10px;
}

.category-overview-card__body p {
    color: var(--text-soft);
}

.category-overview-card__links {
    display: grid;
    gap: 8px;
    margin: 16px 0;
}

.category-overview-card__links a {
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.detail-hero__bg,
.detail-hero__shade {
    position: absolute;
    inset: 0;
}

.detail-hero__shade {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.24)),
        linear-gradient(0deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.12));
}

.detail-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    padding-bottom: 48px;
}

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

.detail-poster {
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.detail-copy h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.detail-one-line {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--text-soft);
    font-size: 21px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-soft);
}

.detail-meta span {
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    background: #020617;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    background: #000;
}

.video-play-button {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    color: #fff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.26));
    border: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-play-button span {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    color: #052e2b;
    background: linear-gradient(135deg, #6ee7b7, #14b8a6);
    border-radius: 999px;
    box-shadow: 0 24px 56px rgba(16, 185, 129, 0.36);
    font-size: 32px;
}

.video-play-button strong {
    font-size: 20px;
}

.video-shell.is-playing .video-play-button {
    visibility: hidden;
    opacity: 0;
}

.video-status {
    position: absolute;
    left: 18px;
    bottom: 14px;
    margin: 0;
    padding: 6px 12px;
    color: #d1fae5;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 999px;
    font-size: 13px;
}

.video-shell.is-playing .video-status {
    display: none;
}

.detail-text-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
}

.detail-article,
.detail-side-card {
    padding: 28px;
}

.detail-article h2,
.detail-side-card h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 26px;
}

.detail-article p {
    margin: 0 0 24px;
    color: var(--text-soft);
    font-size: 17px;
}

.detail-side-card dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.detail-side-card div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
}

.detail-side-card dt {
    color: var(--muted);
}

.detail-side-card dd {
    margin: 0;
    color: var(--text);
}

.empty-state {
    margin: 28px 0 0;
    padding: 28px;
    color: var(--text-soft);
    text-align: center;
    background: rgba(30, 41, 59, 0.58);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.site-footer {
    padding: 48px 0;
    background: rgba(2, 6, 23, 0.54);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.site-footer p {
    max-width: 520px;
    color: var(--muted);
}

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

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: #6ee7b7;
}

[hidden] {
    display: none !important;
}

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

    .category-overview-grid,
    .two-column-section,
    .detail-text-section {
        grid-template-columns: 1fr;
    }

    .highlight-panel {
        position: static;
    }
}

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

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

    .hero-slider {
        min-height: 620px;
    }

    .hero-slide__shade,
    .detail-hero__shade {
        background: linear-gradient(0deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.52));
    }

    .hero-slide__content {
        justify-content: flex-end;
        padding-bottom: 92px;
    }

    .hero-control {
        display: none;
    }

    .site-search__row,
    .filter-grid,
    .detail-layout,
    .footer-grid,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .filter-grid button {
        width: 100%;
    }

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

    .detail-poster {
        width: min(320px, 100%);
        height: 430px;
    }

    .ranking-row a {
        grid-template-columns: 44px 58px minmax(0, 1fr);
    }

    .ranking-row__action {
        display: none;
    }
}

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

    .brand__text {
        font-size: 18px;
    }

    .hero-slider {
        min-height: 600px;
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .ghost-button {
        margin-left: 0;
    }

    .movie-grid,
    .movie-grid--small,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card__poster,
    .movie-card--small .movie-card__poster {
        height: 280px;
    }

    .category-overview-card__media {
        min-height: 210px;
    }

    .detail-poster {
        height: 390px;
    }

    .video-status {
        display: none;
    }
}
