:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-900: #7c2d12;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --shadow-lg: 0 18px 45px rgba(120, 53, 15, 0.16);
    --shadow-xl: 0 24px 70px rgba(120, 53, 15, 0.24);
    --radius-xl: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--amber-50) 0%, #ffffff 42%, var(--amber-50) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--amber-50);
    background: linear-gradient(90deg, var(--amber-800), var(--orange-700), var(--amber-900));
    box-shadow: 0 10px 32px rgba(120, 53, 15, 0.32);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--amber-900);
    background: var(--amber-100);
    border-radius: 14px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.brand:hover .brand-icon {
    transform: translateY(-2px) scale(1.04);
    background: var(--amber-200);
}

.brand-text strong,
.brand-text em {
    display: block;
}

.brand-text strong {
    font-size: 1.45rem;
    line-height: 1.1;
}

.brand-text em {
    margin-top: 2px;
    color: var(--amber-200);
    font-size: 0.78rem;
    font-style: normal;
}

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

.nav-link {
    position: relative;
    color: var(--amber-50);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--amber-200);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    background: rgba(120, 53, 15, 0.52);
    border: 1px solid rgba(253, 230, 138, 0.28);
    border-radius: 999px;
}

.header-search input,
.mobile-search input,
.big-search input,
.list-search input,
.sort-select select {
    border: 0;
    outline: 0;
}

.header-search input {
    width: 210px;
    padding: 9px 12px;
    color: var(--amber-50);
    background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: var(--amber-300);
}

.header-search button,
.mobile-search button,
.big-search button {
    cursor: pointer;
    border: 0;
    color: #ffffff;
    background: var(--amber-600);
    border-radius: 999px;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button {
    padding: 8px 14px;
}

.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover {
    background: var(--amber-700);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    margin-left: auto;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--amber-50);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(253, 230, 138, 0.16);
}

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

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

.mobile-nav-link {
    padding: 9px 0;
    color: var(--amber-50);
    font-weight: 700;
}

.mobile-nav-link.is-active {
    color: var(--amber-200);
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.mobile-search input {
    padding: 12px 14px;
    color: var(--amber-50);
    background: rgba(120, 53, 15, 0.55);
    border: 1px solid rgba(253, 230, 138, 0.28);
    border-radius: 999px;
}

.mobile-search button {
    padding: 12px 18px;
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--amber-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-position: center;
    background-size: cover;
    filter: brightness(0.72);
    transform: scale(1.04);
}

.hero-shade {
    background:
        radial-gradient(circle at 50% 24%, rgba(251, 191, 36, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(120, 53, 15, 0.44), rgba(124, 45, 18, 0.36) 52%, var(--amber-50) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 24px;
}

.hero-kicker,
.section-kicker,
.detail-kicker {
    margin: 0 0 14px;
    color: var(--amber-200);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 930px;
    margin: 0;
    color: var(--amber-50);
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 1.02;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.hero-line {
    max-width: 820px;
    margin: 26px auto 0;
    color: var(--amber-100);
    font-size: clamp(1.18rem, 2vw, 1.65rem);
    font-weight: 700;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.hero-summary {
    max-width: 740px;
    margin: 16px auto 0;
    color: var(--amber-100);
    font-size: 1.02rem;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--amber-600);
    box-shadow: 0 16px 35px rgba(217, 119, 6, 0.32);
}

.btn-primary:hover {
    background: var(--amber-700);
    box-shadow: 0 20px 42px rgba(180, 83, 9, 0.38);
}

.btn-glass {
    color: var(--amber-900);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 35px rgba(255, 255, 255, 0.24);
}

.btn.small {
    min-height: 40px;
    padding: 8px 18px;
}

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

.hero-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--amber-200);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(120, 53, 15, 0.48);
    cursor: pointer;
    font-size: 2.1rem;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.stats-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: -54px;
}

.stat-item {
    padding: 26px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(251, 191, 36, 0.34);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.stat-item strong {
    display: block;
    color: var(--amber-700);
    font-size: clamp(1.9rem, 4vw, 3.3rem);
    line-height: 1;
}

.stat-item span {
    display: block;
    margin-top: 8px;
    color: var(--amber-900);
    font-weight: 800;
}

.page-section {
    padding: 64px 0 0;
}

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

.section-heading h2 {
    margin: 0;
    color: var(--amber-900);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.section-heading p:not(.section-kicker) {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--amber-700);
    font-size: 1.04rem;
}

.section-more {
    min-width: max-content;
    color: var(--amber-700);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    min-height: 238px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    padding: 22px;
    color: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-xl);
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(120, 53, 15, 0.82));
}

.category-card span {
    font-size: 1.5rem;
    font-weight: 900;
}

.category-card strong {
    margin-top: 6px;
    color: var(--amber-200);
}

.category-card em {
    margin-top: 10px;
    color: var(--amber-100);
    font-style: normal;
    font-size: 0.93rem;
}

.large-category-grid .category-card {
    min-height: 280px;
}

.listing-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px auto;
    gap: 14px;
    align-items: end;
    margin: 0 0 26px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--amber-200);
    border-radius: var(--radius-xl);
    box-shadow: 0 14px 38px rgba(120, 53, 15, 0.08);
}

.list-search,
.sort-select {
    display: grid;
    gap: 8px;
    color: var(--amber-900);
    font-weight: 900;
}

.list-search input,
.sort-select select {
    width: 100%;
    padding: 13px 15px;
    color: var(--gray-700);
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
    border-radius: 14px;
}

.filter-count {
    margin: 0;
    color: var(--amber-700);
    font-weight: 900;
    white-space: nowrap;
}

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

.compact-grid {
    gap: 20px;
}

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.24);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card.is-hidden {
    display: none;
}

.movie-poster {
    position: relative;
    display: block;
    height: 216px;
    overflow: hidden;
    background: var(--amber-100);
}

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

.movie-card:hover .movie-poster img {
    transform: scale(1.1);
    filter: brightness(0.78);
}

.year-badge,
.rank-badge {
    position: absolute;
    top: 13px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.year-badge {
    right: 13px;
    background: var(--amber-600);
}

.rank-badge {
    left: 13px;
    background: linear-gradient(135deg, #ef4444, var(--amber-600));
}

.play-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: var(--amber-900);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 1.55em;
    color: var(--amber-900);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

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

.movie-meta {
    display: -webkit-box;
    overflow: hidden;
    min-height: 1.4em;
    margin: 7px 0 10px;
    color: var(--gray-600);
    font-size: 0.88rem;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.1em;
    margin: 0;
    color: var(--gray-700);
    font-size: 0.94rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.movie-tags span,
.detail-tags span {
    padding: 4px 9px;
    color: var(--amber-800);
    background: var(--amber-100);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.sub-hero {
    padding: 92px 0 76px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(253, 230, 138, 0.22), transparent 32%),
        linear-gradient(120deg, var(--amber-700), var(--orange-700), var(--amber-900));
    text-align: center;
}

.sub-hero p {
    margin: 0 0 10px;
    color: var(--amber-200);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.sub-hero h1 {
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1.1;
}

.sub-hero span {
    display: block;
    max-width: 780px;
    margin: 18px auto 0;
    color: var(--amber-100);
    font-size: 1.08rem;
}

.big-search {
    display: grid;
    grid-template-columns: 1fr auto;
    max-width: 720px;
    gap: 10px;
    margin: 30px auto 0;
    padding: 6px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.big-search input {
    padding: 16px 20px;
    color: #ffffff;
    background: transparent;
}

.big-search input::placeholder {
    color: var(--amber-100);
}

.big-search button {
    padding: 13px 26px;
}

.detail-hero {
    position: relative;
    color: #ffffff;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(120, 53, 15, 0.76), rgba(17, 24, 39, 0.56)),
        linear-gradient(180deg, transparent 0%, var(--amber-50) 100%);
    backdrop-filter: blur(2px);
}

.detail-hero-content {
    padding: 44px 0 68px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 34px;
    color: var(--amber-100);
    font-size: 0.95rem;
}

.breadcrumb a:hover {
    color: #ffffff;
}

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

.detail-cover {
    width: 260px;
    height: 360px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.88);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.detail-title-row h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    line-height: 1.05;
    text-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
}

.detail-one-line {
    max-width: 820px;
    margin: 18px 0 0;
    color: var(--amber-100);
    font-size: 1.18rem;
    font-weight: 700;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 28px;
    align-items: start;
    padding-top: 56px;
}

.detail-main,
.detail-side {
    display: grid;
    gap: 24px;
}

.player-card,
.info-card,
.side-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.player-card {
    padding: 18px;
}

.player-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.player-toolbar p {
    margin: 0;
    color: var(--amber-700);
    font-weight: 900;
}

.player-toolbar h2 {
    margin: 4px 0 0;
    color: var(--amber-900);
    font-size: 1.35rem;
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 18px;
}

.player-message {
    margin: 12px 4px 0;
    color: var(--gray-600);
    font-size: 0.92rem;
}

.info-card,
.side-card {
    padding: 24px;
}

.info-card h2,
.side-card h2 {
    margin: 0 0 14px;
    color: var(--amber-900);
    font-size: 1.55rem;
}

.info-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 1.02rem;
    line-height: 1.9;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 16px;
    margin: 0;
}

.side-card dt {
    color: var(--amber-800);
    font-weight: 900;
}

.side-card dd {
    margin: 0;
    color: var(--gray-700);
}

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

.side-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.side-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
}

.side-item strong,
.side-item em {
    display: block;
}

.side-item strong {
    overflow: hidden;
    color: var(--amber-900);
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-item em {
    margin-top: 3px;
    color: var(--gray-600);
    font-size: 0.84rem;
    font-style: normal;
}

.search-results-section {
    min-height: 460px;
}

.site-footer {
    margin-top: 76px;
    color: var(--amber-100);
    background: linear-gradient(135deg, var(--amber-900), var(--orange-900), #451a03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding: 48px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--amber-50);
    font-size: 1.35rem;
}

.footer-brand-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--amber-900);
    background: var(--amber-200);
    border-radius: 11px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--amber-50);
    font-size: 1.05rem;
}

.site-footer p {
    margin: 0;
    color: var(--amber-300);
}

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

.site-footer a {
    color: var(--amber-300);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 18px 16px;
    text-align: center;
    border-top: 1px solid rgba(253, 230, 138, 0.16);
}

.footer-bottom p {
    margin: 0;
    color: var(--amber-400);
    font-size: 0.92rem;
}

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

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

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

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

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

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

    .header-inner {
        min-height: 66px;
    }

    .brand-text strong {
        font-size: 1.15rem;
    }

    .brand-text em {
        display: none;
    }

    .hero {
        height: 560px;
    }

    .hero-summary {
        display: none;
    }

    .hero-arrow {
        display: none;
    }

    .stats-strip,
    .category-grid,
    .movie-grid,
    .footer-grid,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        margin-top: -36px;
    }

    .section-heading {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 12px;
    }

    .listing-toolbar {
        grid-template-columns: 1fr;
    }

    .filter-count {
        white-space: normal;
    }

    .movie-poster {
        height: 238px;
    }

    .sub-hero {
        padding: 68px 0 54px;
    }

    .big-search {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .big-search input,
    .big-search button {
        width: 100%;
        border-radius: 18px;
    }

    .detail-title-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .detail-cover {
        width: min(240px, 72vw);
        height: 330px;
    }

    .player-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
}
