:root {
    color-scheme: light;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
    --radius-lg: 18px;
    --radius-xl: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--gray-50), #ffffff 42%, #ffffff);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(16px);
}

.site-header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--emerald-600);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.logo-play {
    fill: var(--emerald-600);
    stroke: none;
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    color: var(--gray-900);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 12px;
    white-space: nowrap;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--gray-700);
    font-weight: 650;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--gray-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--gray-700);
    border-radius: 999px;
}

.mobile-nav {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.mobile-nav a {
    display: block;
    padding: 11px 13px;
    border-radius: 12px;
    color: var(--gray-700);
    font-weight: 650;
}

.mobile-nav a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-200);
}

.hero-carousel {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 26%, rgba(16, 185, 129, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.15));
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 72vh;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) 360px;
    align-items: center;
    gap: 48px;
    padding: 86px 0 116px;
}

.hero-copy {
    max-width: 760px;
    color: #ffffff;
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-kicker span,
.hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(40px, 6.6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.78;
}

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

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

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
    box-shadow: 0 18px 36px rgba(5, 150, 105, 0.32);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

.hero-poster {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

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

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

.hero-dot.active {
    width: 32px;
    background: #ffffff;
}

.hero-strip {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(0, 0, 0, 0.34);
    transform: translateX(-50%);
    backdrop-filter: blur(16px);
    overflow-x: auto;
}

.hero-strip span {
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
}

.hero-strip a {
    white-space: nowrap;
    font-size: 14px;
}

.hero-strip a:hover {
    color: #ffffff;
}

.site-section {
    padding: 58px 0;
}

.intro-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 28px;
    align-items: end;
}

.intro-block h2,
.section-head h2,
.page-hero h1,
.detail-article h1 {
    margin: 8px 0 0;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.intro-block p,
.page-hero p {
    margin: 16px 0 0;
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.85;
}

.section-kicker {
    display: inline-flex;
    color: var(--emerald-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.home-search {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.home-search input,
.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    outline: none;
    color: var(--gray-900);
    background: #ffffff;
    font: inherit;
}

.home-search input {
    min-height: 48px;
    padding: 0 14px;
    border: 0;
}

.home-search button {
    border: 0;
    border-radius: 14px;
    padding: 0 22px;
    color: #ffffff;
    background: var(--emerald-600);
    font-weight: 800;
    cursor: pointer;
}

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

.section-head h2 {
    font-size: clamp(26px, 3.4vw, 38px);
}

.section-more {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--emerald-700);
    background: var(--emerald-50);
    font-weight: 800;
}

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

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

.movie-card-link {
    display: flex;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card-link:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.34);
    box-shadow: var(--shadow-md);
}

.card-cover-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #111827;
}

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

.movie-card-link:hover .card-cover {
    transform: scale(1.06);
}

.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.68);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.year-badge {
    right: 10px;
    top: 10px;
    padding: 5px 9px;
}

.rank-badge {
    left: 10px;
    top: 10px;
    min-width: 30px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.card-meta span {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 8px;
    color: var(--gray-600);
    background: var(--gray-100);
    font-size: 12px;
    font-weight: 750;
}

.card-meta span:first-child {
    color: var(--emerald-700);
    background: var(--emerald-100);
}

.card-body strong {
    color: var(--gray-900);
    font-size: 17px;
    line-height: 1.38;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-desc {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

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

.movie-card-horizontal .movie-card-link {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: stretch;
}

.movie-card-horizontal .card-cover-wrap {
    height: 100%;
    min-height: 112px;
    aspect-ratio: auto;
}

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

.movie-card-horizontal .card-body strong {
    font-size: 15px;
}

.movie-card-horizontal .card-desc {
    -webkit-line-clamp: 2;
}

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

.category-tile,
.category-overview-card {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.category-tile > a,
.category-overview-main {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 20px;
}

.category-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--emerald-700);
    background: var(--emerald-100);
    font-style: normal;
    font-weight: 900;
}

.category-icon.large {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 20px;
}

.category-tile strong,
.category-overview-main strong {
    display: block;
    color: var(--gray-900);
    font-size: 20px;
    font-style: normal;
}

.category-tile em,
.category-overview-main em {
    display: block;
    margin-top: 6px;
    color: var(--gray-600);
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
}

.category-tile div,
.category-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 20px;
}

.category-tile div a,
.category-preview-links a {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--gray-600);
    background: var(--gray-100);
    font-size: 13px;
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    margin-top: 28px;
    padding: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.18), transparent 28%),
        linear-gradient(135deg, #ffffff, var(--gray-50));
    box-shadow: var(--shadow-sm);
}

.small-page-hero {
    max-width: 1180px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--emerald-700);
    font-weight: 750;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 220px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.filter-panel label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 800;
}

.filter-input,
.filter-select {
    min-height: 46px;
    padding: 0 13px;
}

.category-movie-grid,
.search-grid,
.rank-grid-full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-main {
    background: linear-gradient(180deg, #0f172a 0, #0f172a 420px, #ffffff 420px);
}

.detail-hero {
    padding-top: 30px;
    color: #ffffff;
}

.detail-hero .breadcrumb {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
}

.detail-hero .breadcrumb a {
    color: #a7f3d0;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 26px;
    align-items: stretch;
}

.player-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-circle {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
    box-shadow: 0 20px 44px rgba(5, 150, 105, 0.38);
    font-size: 34px;
    text-indent: 5px;
}

.play-title {
    max-width: min(640px, 82%);
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.42);
}

.detail-side {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

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

.detail-side-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
}

.detail-side-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 800;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: start;
}

.detail-article,
.related-panel {
    border: 1px solid var(--gray-200);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.detail-article {
    padding: 32px;
}

.detail-title-row h1 {
    margin-top: 10px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 28px;
}

.detail-tags span {
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--emerald-700);
    background: var(--emerald-50);
    font-size: 13px;
    font-weight: 800;
}

.detail-article h2,
.related-panel h2 {
    margin: 28px 0 14px;
    color: var(--gray-900);
    font-size: 22px;
    letter-spacing: -0.02em;
}

.detail-article p {
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.95;
}

.lead-text {
    font-size: 19px;
    font-weight: 750;
}

.review-box {
    padding: 20px;
    border-left: 5px solid var(--emerald-500);
    border-radius: 16px;
    background: var(--gray-50);
}

.review-box p {
    margin: 0;
}

.related-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
}

.related-panel h2 {
    margin-top: 0;
}

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

.site-footer {
    margin-top: 40px;
    color: var(--gray-400);
    background: #111827;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 220px 220px;
    gap: 34px;
    padding: 44px 0;
}

.brand-in-footer .brand-title,
.brand-in-footer .brand-subtitle {
    color: #ffffff;
}

.footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--gray-400);
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.search-item.is-hidden {
    display: none;
}

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

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

    .hero-poster,
    .detail-side {
        display: none;
    }

    .rank-panel,
    .related-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .site-header-inner {
        height: 64px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-carousel,
    .hero-content {
        min-height: 78vh;
    }

    .hero-content {
        padding: 76px 0 128px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-strip {
        width: calc(100% - 32px);
    }

    .intro-block,
    .filter-panel,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .compact-grid,
    .category-movie-grid,
    .search-grid,
    .rank-grid-full,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .detail-article,
    .related-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .movie-card-horizontal .movie-card-link {
        grid-template-columns: 126px minmax(0, 1fr);
    }

    .movie-card-horizontal .card-cover-wrap {
        min-height: 104px;
    }

    .play-circle {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}
