:root {
    --orange-700: #c2410c;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --orange-100: #ffedd5;
    --amber-50: #fffbeb;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 42px rgba(15, 23, 42, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-700), var(--orange-500));
    box-shadow: 0 12px 30px rgba(194, 65, 12, 0.28);
}

.nav-wrap {
    width: min(1200px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand {
    flex: 0 0 auto;
    font-size: 22px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--orange-600);
    background: var(--white);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    font-size: 14px;
}

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

.nav-link,
.nav-drop-btn,
.mobile-link {
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: transparent;
    padding: 9px 14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-drop-btn:hover,
.mobile-link:hover,
.mobile-link.active {
    background: rgba(255, 255, 255, 0.18);
}

.nav-dropdown {
    position: relative;
}

.nav-drop-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 180px;
    padding: 10px;
    border-radius: 16px;
    background: var(--white);
    color: var(--gray-800);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-drop-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-drop-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--gray-700);
}

.nav-drop-menu a:hover {
    color: var(--orange-600);
    background: var(--orange-100);
}

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.nav-search input,
.mobile-search input {
    width: 230px;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    color: var(--white);
    background: transparent;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.nav-search button,
.mobile-search button {
    border: 0;
    color: var(--orange-700);
    background: var(--white);
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    padding: 9px 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.mobile-search {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
}

.mobile-search input {
    width: 100%;
}

.main-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    height: 590px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--gray-950), var(--gray-800));
}

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.96), rgba(3, 7, 18, 0.54) 46%, rgba(3, 7, 18, 0.22));
}

.hero-copy {
    position: absolute;
    left: max(32px, calc((100vw - 1200px) / 2));
    right: max(32px, calc((100vw - 1200px) / 2));
    bottom: 70px;
    color: var(--white);
    max-width: 760px;
}

.hero-kicker,
.category-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: var(--orange-700);
    background: var(--orange-100);
    font-weight: 700;
}

.hero-kicker {
    padding: 9px 16px;
    margin-bottom: 16px;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.8;
}

.hero-tags,
.tag-row,
.meta-row,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span,
.meta-row span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
}

.hero-tags span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.secondary-btn {
    color: var(--white);
    background: var(--orange-600);
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.36);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.68);
    transform: translateY(-50%) scale(1.05);
}

.hero-arrow.prev {
    left: 18px;
    transform: translateY(-50%);
}

.hero-arrow.next {
    right: 18px;
    transform: translateY(-50%);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 14px;
}

.category-tile,
.category-overview-card,
.detail-card,
.related-box,
.side-cover,
.filter-panel,
.search-panel {
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.category-tile {
    padding: 22px;
    overflow: hidden;
    position: relative;
    min-height: 142px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -40px;
    bottom: -40px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(251, 191, 36, 0.16));
}

.category-tile:hover,
.movie-card:hover,
.list-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-tile span {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-900);
    font-size: 20px;
    font-weight: 800;
}

.category-tile p,
.section-heading p,
.movie-card p,
.list-card p,
.category-overview-card p,
.detail-card p,
.page-hero p,
.site-footer p,
.search-summary {
    color: var(--gray-600);
    line-height: 1.75;
}

.content-section {
    padding: 42px 0;
}

.content-section.soft-panel,
.content-section.rank-panel {
    margin: 28px 0;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, #fff7ed, var(--amber-50));
}

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

.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 34px);
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card a {
    display: block;
    height: 100%;
}

.card-poster {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-900);
}

.movie-card.large .card-poster {
    height: 310px;
}

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

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

.score-pill,
.rank-badge,
.list-rank {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(10px);
}

.score-pill {
    right: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 800;
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-weight: 900;
    background: var(--orange-600);
}

.card-content {
    padding: 18px;
}

.category-pill {
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

.card-content h3,
.list-content h3 {
    margin: 0;
    color: var(--gray-900);
    transition: color 0.2s ease;
}

.card-content h3 {
    display: -webkit-box;
    min-height: 54px;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card:hover h3,
.list-card:hover h3 {
    color: var(--orange-600);
}

.card-content p {
    display: -webkit-box;
    height: 50px;
    overflow: hidden;
    margin: 10px 0 14px;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-row {
    color: var(--gray-500);
    font-size: 13px;
}

.meta-row span {
    padding: 4px 8px;
    background: var(--gray-100);
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    padding: 5px 9px;
    color: var(--gray-600);
    background: var(--gray-100);
    font-size: 12px;
}

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

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

.full-rank {
    grid-template-columns: 1fr;
}

.list-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-card a {
    display: grid;
    grid-template-columns: 164px 1fr;
    gap: 18px;
    min-height: 132px;
}

.list-poster {
    position: relative;
    overflow: hidden;
    background: var(--gray-900);
}

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

.list-rank {
    left: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-weight: 900;
    background: var(--orange-600);
}

.list-content {
    min-width: 0;
    padding: 16px 16px 16px 0;
}

.list-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.list-head span {
    flex: 0 0 auto;
    color: var(--orange-600);
    font-weight: 900;
}

.list-content h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 10px 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.page-hero {
    padding: 58px 0;
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-700), var(--orange-500));
}

.compact-hero {
    padding: 48px 0;
}

.page-hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
}

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

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

.category-overview-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-main-link {
    display: block;
    padding: 26px;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.category-main-link h2 {
    margin: 0 0 10px;
    font-size: 25px;
}

.category-main-link span {
    display: inline-flex;
    margin-top: 14px;
    color: var(--orange-600);
    font-weight: 900;
}

.category-samples {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--gray-100);
}

.category-samples a {
    display: -webkit-box;
    overflow: hidden;
    padding: 12px 14px;
    color: var(--gray-700);
    background: var(--white);
    font-size: 14px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.category-samples a:hover {
    color: var(--orange-600);
}

.filter-section,
.search-panel {
    margin: 34px 0 54px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-weight: 700;
}

.filter-panel input,
.filter-panel select,
.big-search input {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    outline: none;
    padding: 12px 14px;
    color: var(--gray-800);
    background: var(--white);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus,
.big-search input:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.empty-state {
    display: none;
    padding: 48px;
    text-align: center;
    color: var(--gray-500);
}

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

.search-panel {
    padding: 24px;
}

.big-search {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.big-search button {
    border: 0;
    border-radius: 14px;
    color: var(--white);
    background: var(--orange-600);
    padding: 0 28px;
    cursor: pointer;
    font-weight: 900;
}

.search-summary {
    min-height: 26px;
    margin: 0 0 18px;
}

.detail-page {
    padding: 32px 0 64px;
}

.detail-page .breadcrumb {
    margin-bottom: 22px;
    color: var(--gray-500);
}

.detail-page .breadcrumb a:hover {
    color: var(--orange-600);
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--gray-950);
    box-shadow: var(--shadow-md);
}

.video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--gray-950);
}

.player-mask {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 16px;
    border: 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.72), rgba(3, 7, 18, 0.28));
    cursor: pointer;
    text-align: center;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-mask.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.play-circle {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    border-radius: 999px;
    color: var(--orange-600);
    background: var(--white);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
    font-size: 28px;
}

.player-mask strong {
    max-width: min(560px, 80vw);
    font-size: 24px;
}

.detail-card {
    margin-top: 22px;
    padding: 28px;
}

.detail-tags {
    margin-top: 0;
    margin-bottom: 16px;
}

.detail-card h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.detail-meta {
    margin-bottom: 26px;
    color: var(--gray-600);
}

.detail-meta span {
    padding: 7px 11px;
    background: var(--gray-100);
}

.detail-card h2,
.related-box h2,
.side-cover h2 {
    margin: 24px 0 12px;
    font-size: 22px;
}

.detail-card p {
    font-size: 16px;
}

.detail-side {
    display: grid;
    align-content: start;
    gap: 20px;
}

.side-cover {
    overflow: hidden;
}

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

.side-cover div,
.related-box {
    padding: 20px;
}

.side-cover h2 {
    margin-top: 0;
}

.related-list .list-card a {
    grid-template-columns: 112px 1fr;
    min-height: 86px;
}

.related-list .list-content {
    padding: 12px 12px 12px 0;
}

.related-list .list-content h3 {
    font-size: 15px;
}

.related-list .list-content p {
    display: none;
}

.related-list .meta-row span:nth-child(n + 3) {
    display: none;
}

.site-footer {
    margin-top: 60px;
    color: var(--gray-300);
    background: var(--gray-900);
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr;
    gap: 38px;
    padding: 48px 0;
}

.footer-brand {
    color: var(--white);
    font-size: 20px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 18px;
}

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

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

.footer-links a:hover {
    color: var(--orange-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px;
    text-align: center;
    color: var(--gray-500);
}

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

    .featured-grid,
    .four-grid,
    .category-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .mobile-toggle {
        display: inline-flex;
    }

    .nav-wrap {
        height: 62px;
    }

    .hero {
        height: 560px;
    }

    .hero-copy {
        left: 22px;
        right: 22px;
        bottom: 72px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-arrow {
        display: none;
    }

    .featured-grid,
    .four-grid,
    .category-strip,
    .overview-grid,
    .home-rank,
    .footer-inner,
    .detail-side {
        grid-template-columns: 1fr 1fr;
    }

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

    .content-section.soft-panel,
    .content-section.rank-panel {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
    }

    .hero {
        height: 520px;
    }

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

    .primary-btn,
    .secondary-btn,
    .ghost-btn {
        width: 100%;
    }

    .featured-grid,
    .four-grid,
    .category-strip,
    .overview-grid,
    .home-rank,
    .footer-inner,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .card-poster,
    .movie-card.large .card-poster {
        height: 250px;
    }

    .list-card a,
    .related-list .list-card a {
        grid-template-columns: 118px 1fr;
    }

    .list-content {
        padding: 12px 12px 12px 0;
    }

    .list-content p {
        -webkit-line-clamp: 1;
    }

    .big-search {
        display: grid;
    }

    .big-search button {
        min-height: 46px;
    }

    .page-hero {
        padding: 40px 0;
    }

    .detail-card,
    .related-box,
    .side-cover div {
        padding: 18px;
    }
}
