:root {
    --brand: #2563eb;
    --brand-strong: #1d4ed8;
    --brand-soft: #dbeafe;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --ink: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --paper: #ffffff;
    --cloud: #f8fafc;
    --dark: #0f172a;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--cloud);
    color: var(--ink);
    line-height: 1.65;
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.home-page .site-header:not(.is-scrolled) {
    background: rgba(15, 23, 42, 0.08);
    color: #ffffff;
    box-shadow: none;
}

.nav-inner {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    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-text {
    font-size: 24px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--cyan), var(--teal));
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.26);
    font-size: 14px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-weight: 700;
    color: inherit;
    opacity: 0.86;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--brand);
}

.home-page .site-header:not(.is-scrolled) .nav-link:hover,
.home-page .site-header:not(.is-scrolled) .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 52%, #14b8a6 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    background: rgba(255, 255, 255, 0.22);
}

.hero::before {
    width: 360px;
    height: 360px;
    top: 12%;
    left: -110px;
}

.hero::after {
    width: 480px;
    height: 480px;
    right: -170px;
    bottom: -140px;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.28), transparent 35%), linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.34));
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 128px 0 72px;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    min-height: 560px;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeRise 0.55s ease both;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(46px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    text-shadow: 0 18px 38px rgba(15, 23, 42, 0.26);
}

.hero-lead {
    max-width: 720px;
    margin: 0 0 20px;
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255, 255, 255, 0.95);
}

.hero-copy {
    max-width: 720px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-tags span,
.movie-tags span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--brand-strong);
    font-weight: 700;
    padding: 7px 12px;
    font-size: 13px;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

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

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

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

.btn-primary {
    background: #ffffff;
    color: var(--brand);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.btn-blue {
    background: linear-gradient(135deg, var(--brand), var(--cyan));
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

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

.btn-soft {
    color: var(--brand);
    background: var(--brand-soft);
}

.hero-card {
    position: relative;
    padding: 16px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(18px);
}

.hero-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.65), rgba(207, 250, 254, 0.55));
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-card-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

.hero-card-title strong {
    display: block;
    font-size: 22px;
    line-height: 1.25;
}

.hero-card-title span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.hero-controls {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

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

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

.main-section {
    padding: 72px 0;
}

.section-alt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

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

.section-heading.centered {
    display: block;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h1,
.section-heading h2,
.page-hero h1,
.detail-title h1 {
    margin: 0;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.section-heading h2,
.page-hero h1 {
    font-size: clamp(30px, 4vw, 44px);
}

.section-heading p,
.page-hero p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
}

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

.movie-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

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

.poster-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, 0.76));
    opacity: 0.8;
}

.poster-badge,
.poster-year,
.poster-play,
.rank-number {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
}

.poster-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    font-size: 12px;
    color: #ffffff;
    background: var(--brand);
}

.poster-year {
    left: 12px;
    bottom: 12px;
    padding: 5px 10px;
    font-size: 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.9);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

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

.movie-card-body h2,
.movie-card-body h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.movie-card-body p {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 14px;
    min-height: 46px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
}

.movie-meta span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    padding: 26px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--cyan), var(--teal));
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:nth-child(3n + 2) {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.category-tile:nth-child(3n + 3) {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

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

.tile-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    right: -44px;
    top: -44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    filter: blur(2px);
    transition: transform 0.35s ease;
}

.category-tile:hover .tile-glow {
    transform: scale(1.35);
}

.tile-name,
.tile-link {
    position: relative;
    z-index: 1;
    font-weight: 900;
}

.tile-name {
    font-size: 26px;
    letter-spacing: -0.03em;
}

.tile-desc {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 12px;
}

.tile-link {
    margin-top: 24px;
}

.page-hero {
    padding: 132px 0 48px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
}

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

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

.filter-panel {
    margin-bottom: 26px;
    padding: 18px;
    border-radius: 20px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.search-input {
    flex: 1 1 280px;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 18px;
    font: inherit;
    outline: none;
    background: #ffffff;
}

.search-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-button {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
    color: #ffffff;
    border-color: var(--brand);
    background: var(--brand);
}

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

.ranking-item {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.rank-cover {
    position: relative;
    width: 82px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-number {
    left: -7px;
    top: -7px;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.24);
}

.ranking-item h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.ranking-item p {
    margin: 0;
    color: var(--muted);
}

.detail-hero {
    padding: 118px 0 34px;
    background: radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.16), transparent 28%), linear-gradient(180deg, #ffffff, #f8fafc);
}

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

.detail-title h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.detail-title p {
    color: var(--muted);
    font-size: 18px;
    max-width: 820px;
}

.detail-tags,
.movie-tags,
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.detail-poster {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
    box-shadow: var(--shadow);
}

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

.detail-section {
    padding: 36px 0;
}

.detail-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
}

.content-card,
.side-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 26px;
}

.content-card + .content-card {
    margin-top: 24px;
}

.content-card h2,
.side-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.content-card p {
    margin: 0;
    color: #334155;
    font-size: 16px;
}

.content-card p + p {
    margin-top: 16px;
}

.info-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
}

.info-list dt {
    color: var(--muted);
    font-weight: 700;
}

.info-list dd {
    margin: 0;
    color: var(--ink);
}

.player-shell {
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
    box-shadow: var(--shadow);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.38), rgba(2, 6, 23, 0.96));
}

.video-frame video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.play-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.62));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
}

.play-button {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--cyan));
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.42);
    font-size: 30px;
    cursor: pointer;
}

.player-title {
    padding: 16px 20px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.92);
    font-weight: 800;
}

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

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

.related-thumb {
    width: 66px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.32;
}

.related-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    margin-top: 60px;
    color: #cbd5e1;
    background: linear-gradient(180deg, #111827, #020617);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 50px 0;
}

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

.site-footer p {
    max-width: 420px;
    margin: 16px 0 0;
    color: #94a3b8;
}

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

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

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    font-size: 14px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--brand);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.empty-state {
    display: none;
    padding: 38px;
    border-radius: 20px;
    background: #ffffff;
    color: var(--muted);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

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

.hidden-by-filter {
    display: none !important;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .hero-slide,
    .detail-layout,
    .detail-main,
    .page-hero .container {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        gap: 30px;
        text-align: center;
    }

    .hero-actions,
    .hero-tags,
    .section-actions {
        justify-content: center;
    }

    .hero-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .detail-poster {
        max-width: 320px;
    }
}

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

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

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 66px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        color: var(--ink);
        box-shadow: var(--shadow);
    }

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

    .nav-link {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .nav-link.active,
    .nav-link:hover {
        background: #eff6ff;
        color: var(--brand);
    }

    .nav-link::after {
        display: none;
    }

    .hero-inner {
        padding-top: 98px;
    }

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

    .section-heading {
        display: block;
    }

    .section-actions {
        margin-top: 18px;
        justify-content: flex-start;
    }

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

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

    .movie-card-body h2,
    .movie-card-body h3 {
        font-size: 15px;
    }

    .movie-card-body p {
        display: none;
    }

    .category-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .ranking-item .btn {
        grid-column: 1 / -1;
    }

    .rank-cover {
        width: 64px;
    }

    .content-card,
    .side-card {
        padding: 20px;
    }
}
