:root {
    --color-primary: #0891b2;
    --color-primary-dark: #0e7490;
    --color-secondary: #0f766e;
    --color-accent: #22d3ee;
    --color-bg: #f8fdff;
    --color-soft: #ecfeff;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-border: #d5f2f8;
    --color-card: #ffffff;
    --shadow-soft: 0 18px 45px rgba(8, 145, 178, 0.13);
    --shadow-card: 0 16px 35px rgba(15, 23, 42, 0.08);
    --radius-large: 30px;
    --radius-card: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    background:
        radial-gradient(circle at 8% 5%, rgba(34, 211, 238, 0.2), transparent 28%),
        radial-gradient(circle at 95% 0%, rgba(20, 184, 166, 0.15), transparent 25%),
        var(--color-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(213, 242, 248, 0.82);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 14px 30px rgba(8, 145, 178, 0.27);
}

.brand-text {
    font-size: 20px;
}

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

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-primary-dark);
    background: var(--color-soft);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #ffffff;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--color-text);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 84px 0 70px;
    background:
        linear-gradient(135deg, rgba(236, 254, 255, 0.95), rgba(240, 253, 250, 0.72)),
        radial-gradient(circle at 20% 20%, rgba(8, 145, 178, 0.22), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(13, 148, 136, 0.18), transparent 28%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: 0.72;
    pointer-events: none;
}

.hero::before {
    width: 380px;
    height: 380px;
    right: -120px;
    top: 120px;
    background: rgba(34, 211, 238, 0.22);
}

.hero::after {
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: 80px;
    background: rgba(45, 212, 191, 0.25);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 28px rgba(8, 145, 178, 0.08);
    font-size: 14px;
    font-weight: 700;
}

.hero h1,
.page-hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead,
.page-hero p {
    max-width: 660px;
    margin: 0 0 28px;
    color: #475569;
    font-size: 18px;
}

.hero-actions,
.detail-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 16px 32px rgba(8, 145, 178, 0.28);
}

.button-secondary {
    color: var(--color-primary-dark);
    background: #ffffff;
    border: 1px solid rgba(8, 145, 178, 0.16);
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 640px;
    margin-top: 28px;
    padding: 8px;
    border: 1px solid rgba(8, 145, 178, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.hero-search input {
    min-width: 0;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-text);
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-stat {
    padding: 18px;
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-stat strong {
    display: block;
    font-size: 25px;
    color: var(--color-text);
}

.hero-stat span {
    color: var(--color-muted);
    font-size: 14px;
}

.hero-carousel {
    position: relative;
    min-height: 530px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    border: 1px solid rgba(8, 145, 178, 0.16);
    border-radius: var(--radius-large);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateX(28px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: linear-gradient(135deg, #dff9ff, #f0fdfa);
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 11;
}

.hero-slide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.68));
}

.hero-slide-content {
    position: relative;
    padding: 26px;
}

.hero-slide h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.18;
}

.hero-slide p {
    margin: 0 0 18px;
    color: #475569;
}

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

.hero-badges span,
.tag-row span,
.detail-tags span,
.meta-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: #ecfeff;
    font-size: 12px;
    font-weight: 750;
}

.hero-controls {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-control {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.12);
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.82), rgba(240, 253, 250, 0.75));
}

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

.section-kicker {
    color: var(--color-primary-dark);
    font-size: 14px;
    font-weight: 800;
}

.section-header h2,
.detail-section h2 {
    margin: 6px 0 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-header p {
    max-width: 620px;
    margin: 10px 0 0;
    color: var(--color-muted);
}

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

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

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(213, 242, 248, 0.9);
    border-radius: var(--radius-card);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 145, 178, 0.34);
    box-shadow: 0 24px 45px rgba(8, 145, 178, 0.14);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #cffafe, #f0fdfa);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.58));
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.92);
}

.rank-badge {
    left: 12px;
    top: 12px;
    padding: 7px 10px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.78);
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.movie-meta-line,
.card-actions,
.ranking-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
}

.movie-meta-line span:not(:last-child)::after,
.ranking-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #94a3b8;
}

.movie-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.text-link:hover {
    color: var(--color-primary-dark);
}

.movie-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

.card-actions {
    justify-content: space-between;
    margin-top: auto;
}

.text-link {
    color: var(--color-primary-dark);
    font-weight: 850;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 188px;
    padding: 24px;
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.16);
}

.category-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 14px;
}

.category-card .count {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: var(--color-soft);
    font-weight: 800;
}

.page-hero {
    padding: 62px 0 52px;
    background:
        linear-gradient(135deg, rgba(236, 254, 255, 0.95), rgba(240, 253, 250, 0.8)),
        radial-gradient(circle at 80% 10%, rgba(8, 145, 178, 0.18), transparent 28%);
}

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

.breadcrumb a {
    color: var(--color-primary-dark);
    font-weight: 750;
}

.filter-panel {
    position: sticky;
    top: 72px;
    z-index: 40;
    padding: 14px 0;
    border-block: 1px solid rgba(213, 242, 248, 0.86);
    background: rgba(248, 253, 255, 0.88);
    backdrop-filter: blur(18px);
}

.filter-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px 160px auto auto;
    gap: 12px;
    align-items: end;
}

.filter-inner label {
    display: grid;
    gap: 6px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.filter-inner input,
.filter-inner select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(8, 145, 178, 0.16);
    border-radius: 14px;
    padding: 0 13px;
    outline: 0;
    color: var(--color-text);
    background: #ffffff;
}

.filter-inner input:focus,
.filter-inner select:focus {
    border-color: rgba(8, 145, 178, 0.52);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.08);
}

.filter-count {
    color: var(--color-primary-dark);
    font-weight: 850;
    white-space: nowrap;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 70px 118px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(213, 242, 248, 0.9);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.ranking-number {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    font-size: 18px;
    font-weight: 900;
}

.ranking-thumb {
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #cffafe, #f0fdfa);
}

.ranking-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ranking-item h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.ranking-item p {
    margin: 8px 0 0;
    color: #475569;
}

.detail-hero {
    padding: 54px 0 42px;
    background:
        linear-gradient(135deg, rgba(236, 254, 255, 0.94), rgba(240, 253, 250, 0.78)),
        radial-gradient(circle at 12% 12%, rgba(34, 211, 238, 0.2), transparent 28%);
}

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

.detail-poster {
    position: sticky;
    top: 96px;
    overflow: hidden;
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: var(--radius-large);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

.detail-copy h1 {
    margin: 8px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-intro {
    color: #475569;
    font-size: 18px;
}

.detail-card,
.player-card,
.detail-section {
    border: 1px solid rgba(213, 242, 248, 0.9);
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.detail-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    padding: 18px;
}

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

.detail-card strong {
    display: block;
    margin-top: 4px;
}

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

.player-card {
    overflow: hidden;
}

.player-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--color-border);
}

.player-head h2 {
    margin: 0;
    font-size: 24px;
}

.video-shell {
    position: relative;
    background: #020617;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.78)),
        radial-gradient(circle at center, rgba(8, 145, 178, 0.25), transparent 36%);
    text-align: center;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.video-overlay button {
    border: 0;
}

.video-note {
    padding: 16px 22px 20px;
    color: var(--color-muted);
    font-size: 14px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding: 42px 0 72px;
}

.detail-section {
    padding: 26px;
    margin-bottom: 22px;
}

.detail-section p {
    color: #334155;
    white-space: pre-line;
}

.side-card {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 14px;
}

.side-link {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(213, 242, 248, 0.9);
    border-radius: 18px;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.side-link:hover {
    transform: translateY(-2px);
    border-color: rgba(8, 145, 178, 0.34);
}

.side-link img {
    width: 82px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #cffafe, #f0fdfa);
}

.side-link strong {
    display: block;
    margin-bottom: 4px;
    line-height: 1.35;
}

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

.search-page-panel {
    padding: 28px;
    border: 1px solid rgba(213, 242, 248, 0.9);
    border-radius: var(--radius-large);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.search-wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px 160px auto;
    gap: 12px;
}

.search-wide input,
.search-wide select {
    min-height: 50px;
    border: 1px solid rgba(8, 145, 178, 0.16);
    border-radius: 16px;
    padding: 0 14px;
    outline: 0;
}

.empty-state {
    display: none;
    padding: 40px;
    border: 1px dashed rgba(8, 145, 178, 0.35);
    border-radius: 24px;
    color: var(--color-muted);
    text-align: center;
}

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

.site-footer {
    padding: 54px 0 26px;
    border-top: 1px solid rgba(213, 242, 248, 0.9);
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
}

.site-footer p {
    color: var(--color-muted);
}

.site-footer h3 {
    margin: 0 0 12px;
}

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

.footer-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: var(--color-soft);
    font-size: 13px;
    font-weight: 750;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(213, 242, 248, 0.9);
    color: var(--color-muted);
    font-size: 14px;
}

@media (max-width: 1080px) {
    .hero-grid,
    .detail-grid,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        min-height: 560px;
    }

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

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

    .filter-inner,
    .search-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-poster,
    .side-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .header-inner {
        height: 64px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: 64px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--color-border);
        border-radius: 20px;
        background: #ffffff;
        box-shadow: var(--shadow-soft);
    }

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

    .hero {
        min-height: auto;
        padding: 48px 0 46px;
    }

    .hero-search,
    .hero-stat-row,
    .detail-card,
    .filter-inner,
    .search-wide,
    .footer-grid,
    .footer-bottom,
    .ranking-item {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        min-height: 560px;
    }

    .hero-slide-image {
        min-height: 300px;
    }

    .hero-controls {
        left: 22px;
        right: auto;
    }

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

    .section {
        padding: 48px 0;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .filter-panel {
        top: 64px;
    }
}

@media (max-width: 520px) {
    .movie-grid,
    .movie-grid.compact,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card {
        border-radius: 20px;
    }

    .page-hero,
    .detail-hero {
        padding: 38px 0;
    }

    .ranking-thumb {
        display: none;
    }
}
