:root {
    --blue: #108ee9;
    --blue-dark: #0766b0;
    --blue-light: #75c8ff;
    --yellow: #ffd84d;
    --yellow-dark: #f2b705;
    --red: #ff5a66;
    --cream: #fff7dd;
    --ink: #1f2a37;
    --muted: #64748b;
    --line: #e5e7eb;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 38%, #f8fafc 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(8, 88, 150, 0.28);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--blue-dark);
    background: radial-gradient(circle at 32% 28%, #fff5a5, var(--yellow));
    border-radius: 999px;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.08), 0 8px 22px rgba(0, 0, 0, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.03em;
}

.brand-text small {
    margin-top: 4px;
    color: #dff3ff;
    font-size: 12px;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-dark);
    background: var(--yellow);
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.header-search input {
    width: 210px;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 8px 10px;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.primary-button,
.ghost-button,
.search-panel button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.primary-button,
.search-panel button {
    color: var(--blue-dark);
    background: var(--yellow);
    padding: 10px 18px;
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover,
.header-search button:hover,
.search-panel button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.menu-toggle {
    display: none;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 10px 12px;
    border-radius: 12px;
}

.hero-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 10% 10%, var(--blue-light), var(--blue) 42%, var(--blue-dark));
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    background: var(--yellow);
    opacity: 0.16;
    filter: blur(2px);
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-one {
    width: 180px;
    height: 180px;
    left: 6%;
    top: 10%;
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    right: 8%;
    bottom: 8%;
    animation-delay: 1.2s;
}

.hero-track {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 650px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    align-items: center;
    gap: 48px;
    padding: 70px 0 96px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(36px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(90deg, rgba(5, 49, 88, 0.88), rgba(16, 142, 233, 0.62), rgba(5, 49, 88, 0.88)), var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    border-radius: 0 0 34px 34px;
    filter: saturate(1.05);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-heading p,
.hot-copy p,
.page-hero p {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.hero-summary {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.card-meta-row,
.card-info-row,
.ranking-info div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-tags span {
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

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

.hero-poster {
    display: block;
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 10px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
}

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

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

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

.section-heading h2,
.hot-copy h2,
.page-hero h1,
.detail-title-block h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.section-heading a,
.detail-heading-row a {
    color: var(--blue);
    font-weight: 800;
}

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

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

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

.movie-card {
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 142, 233, 0.28);
    box-shadow: var(--shadow);
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    background: #dbeafe;
}

.poster-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.movie-card-compact .poster-wrap img {
    height: 210px;
}

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

.poster-shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.68));
}

.duration-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 900;
}

.duration-badge {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    color: #ffffff;
    background: var(--red);
    font-size: 12px;
}

.rank-badge {
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    min-width: 36px;
    height: 36px;
    color: var(--blue-dark);
    background: var(--yellow);
}

.play-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #ffffff;
    background: rgba(16, 142, 233, 0.82);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.card-meta-row,
.card-info-row {
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
}

.category-pill {
    color: var(--blue);
    font-weight: 800;
}

.movie-card h2 {
    margin: 12px 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.movie-card h2 a:hover,
.ranking-info h2 a:hover {
    color: var(--blue);
}

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

.hot-section {
    color: #ffffff;
    background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
    padding: 62px 0;
}

.hot-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: center;
}

.hot-copy h2,
.hot-copy span {
    color: #ffffff;
}

.hot-copy span {
    display: block;
    max-width: 430px;
    margin: 16px 0 24px;
    line-height: 1.8;
}

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

.side-link {
    display: grid;
    grid-template-columns: 36px 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.side-link span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--blue-dark);
    background: var(--yellow);
    border-radius: 999px;
    font-weight: 900;
}

.side-link img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
}

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

.side-link em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.category-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 118px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.category-strip img {
    width: 100%;
    height: 118px;
    object-fit: cover;
}

.category-card h2,
.category-card p,
.category-card strong {
    margin-left: 20px;
    margin-right: 20px;
}

.category-card h2 {
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--blue-dark);
}

.category-card p {
    min-height: 48px;
    margin-top: 0;
    color: var(--muted);
    line-height: 1.6;
}

.category-card strong {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--blue);
}

.page-hero {
    color: #ffffff;
    background: radial-gradient(circle at 20% 18%, var(--blue-light), var(--blue) 45%, var(--blue-dark));
    padding: 74px 0;
}

.page-hero h1,
.page-hero span {
    color: #ffffff;
}

.page-hero span {
    display: block;
    max-width: 760px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
}

.filter-search input,
.search-panel input {
    width: 100%;
    border: 1px solid var(--line);
    outline: 0;
    padding: 13px 16px;
    border-radius: 999px;
}

.filter-search input:focus,
.search-panel input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(16, 142, 233, 0.12);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-buttons button {
    border: 0;
    cursor: pointer;
    color: var(--ink);
    background: #f1f5f9;
    padding: 10px 14px;
    border-radius: 999px;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: var(--blue-dark);
    background: var(--yellow);
}

.ranking-list {
    display: grid;
    gap: 12px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 62px 110px minmax(0, 1fr) 76px;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--blue-dark);
    background: var(--yellow);
    border-radius: 999px;
    font-weight: 900;
}

.ranking-cover img {
    width: 110px;
    height: 76px;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-info h2 {
    margin: 0 0 6px;
    font-size: 20px;
}

.ranking-info p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.5;
}

.ranking-info div span {
    color: var(--muted);
    font-size: 13px;
}

.ranking-score {
    color: var(--red);
    font-size: 22px;
    text-align: center;
}

.search-panel-block {
    max-width: 980px;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 12px;
    margin-bottom: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.search-status {
    margin: 0 0 20px;
    color: var(--muted);
    font-weight: 800;
}

.detail-hero {
    position: relative;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(5, 49, 88, 0.92), rgba(16, 142, 233, 0.68), rgba(5, 49, 88, 0.92)), var(--detail-image);
    background-size: cover;
    background-position: center;
    padding: 52px 0 116px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 42px;
}

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

.detail-title-block {
    max-width: 900px;
}

.detail-title-block p {
    margin: 0 0 12px;
    color: var(--yellow);
    font-weight: 900;
}

.detail-title-block h1 {
    color: #ffffff;
}

.detail-title-block span {
    display: block;
    max-width: 820px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    margin-top: -76px;
    padding-bottom: 68px;
}

.detail-main {
    min-width: 0;
}

.player-card,
.detail-card,
.sidebar-panel {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
}

.player-shell {
    position: relative;
    width: 100%;
    background: #020617;
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(16, 142, 233, 0.24), rgba(0, 0, 0, 0.56));
    cursor: pointer;
}

.player-overlay span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    color: var(--blue-dark);
    background: var(--yellow);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
    font-size: 34px;
}

.player-overlay strong {
    font-size: 20px;
}

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

.detail-card {
    margin-top: 24px;
    padding: 26px;
}

.detail-heading-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.detail-heading-row h2,
.article-section h2,
.sidebar-panel h2 {
    margin: 0;
    font-size: 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.info-grid div {
    padding: 14px;
    background: #f8fafc;
    border-radius: 16px;
}

.info-grid span,
.info-grid strong {
    display: block;
}

.info-grid span {
    color: var(--muted);
    font-size: 13px;
}

.info-grid strong {
    margin-top: 6px;
    color: var(--blue-dark);
}

.article-section {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--line);
}

.article-section p {
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
    white-space: pre-line;
}

.quote-line {
    padding: 18px;
    background: var(--cream);
    border-left: 5px solid var(--blue);
    border-radius: 14px;
    font-weight: 700;
}

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

.tag-cloud a {
    padding: 9px 13px;
    color: var(--blue-dark);
    background: #eff6ff;
    border-radius: 999px;
    font-weight: 800;
}

.tag-cloud a:hover {
    background: var(--yellow);
}

.related-block {
    padding-bottom: 0;
}

.detail-sidebar {
    position: relative;
}

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

.sidebar-panel h2 {
    margin-bottom: 16px;
}

.sidebar-panel .side-link {
    background: #f8fafc;
    box-shadow: none;
}

.site-footer {
    color: #dbeafe;
    background: #0f172a;
    padding-top: 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 32px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.site-footer p {
    max-width: 460px;
    color: #94a3b8;
    line-height: 1.8;
}

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

.site-footer a:not(.footer-brand) {
    display: block;
    color: #cbd5e1;
    margin: 9px 0;
}

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

.footer-bottom {
    margin-top: 34px;
    padding: 20px;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    text-align: center;
}

.is-filtered-out {
    display: none !important;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 18px, 0) scale(1.08);
    }
}

@media (max-width: 1080px) {
    .header-search input {
        width: 160px;
    }

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

    .hero-slide {
        grid-template-columns: 1fr 300px;
    }

    .hero-poster img {
        height: 430px;
    }

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

    .sidebar-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        order: 5;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-link {
        background: rgba(255, 255, 255, 0.08);
    }

    .header-search {
        order: 4;
        width: 100%;
    }

    .header-search input {
        width: 100%;
        flex: 1;
    }

    .hero-slider,
    .hero-track {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 44px;
    }

    .hero-poster {
        width: min(330px, 100%);
    }

    .hero-poster img {
        height: 360px;
    }

    .featured-grid,
    .category-grid,
    .hot-grid,
    .footer-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 46px 88px minmax(0, 1fr);
    }

    .ranking-score {
        display: none;
    }

    .ranking-cover img {
        width: 88px;
        height: 66px;
    }
}

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

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-block;
        margin-top: 10px;
    }

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

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

    .movie-card h2 {
        font-size: 16px;
    }

    .poster-wrap img,
    .movie-card-compact .poster-wrap img {
        height: 210px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-summary,
    .detail-title-block span,
    .page-hero span {
        font-size: 16px;
    }

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

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

    .detail-card {
        padding: 18px;
    }

    .player-overlay span {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }

    .side-link {
        grid-template-columns: 32px 62px minmax(0, 1fr);
    }

    .side-link img {
        width: 62px;
        height: 48px;
    }
}
