:root {
    --color-cyan: #06b6d4;
    --color-blue: #2563eb;
    --color-deep: #0f172a;
    --color-muted: #64748b;
    --color-soft: #f8fafc;
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.10);
    --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.22);
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 46%, #ecfeff 100%);
    min-height: 100vh;
}

body.mobile-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#ambient-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.48;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.site-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-size: 24px;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
    font-size: 14px;
    transition: transform 0.25s ease;
}

.site-logo:hover .logo-mark {
    transform: rotate(12deg) scale(1.04);
}

.desktop-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
    min-width: 0;
}

.desktop-links a {
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.desktop-links a:hover {
    color: var(--color-cyan);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 300px;
}

.nav-search input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.84);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.nav-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.06);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #0f172a;
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    padding: 0 20px 20px;
    background: rgba(255, 255, 255, 0.98);
}

.mobile-panel a {
    display: block;
    padding: 12px 0;
    border-top: 1px solid #eef2f7;
    color: #334155;
    font-weight: 700;
}

.page-main {
    position: relative;
    z-index: 1;
    padding-top: 78px;
}

.home-main {
    padding-top: 0;
}

.hero {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: #020617;
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 900ms ease;
}

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 40%, rgba(6, 182, 212, 0.26), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.70) 48%, rgba(15, 23, 42, 0.14));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 78px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.22);
    color: #67e8f9;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.28);
    backdrop-filter: blur(10px);
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero p {
    margin: 0;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.75;
}

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

.hero-tags {
    margin: 24px 0 30px;
}

.hero-tags span,
.detail-tags span {
    border-radius: 999px;
    padding: 7px 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 24px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.26);
}

.btn-primary:hover {
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.34);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

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

.hero-dot {
    width: 18px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.intro-strip {
    margin-top: -42px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
}

.intro-strip div,
.intro-strip a {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(37, 99, 235, 0.08));
}

.intro-strip strong {
    font-size: 26px;
    color: var(--color-blue);
}

.intro-strip span {
    color: var(--color-muted);
}

.intro-strip a {
    align-items: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
}

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

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

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--color-muted);
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-cyan);
    font-weight: 900;
    white-space: nowrap;
}

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

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

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

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

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

.movie-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.28), rgba(37, 99, 235, 0.22)),
        #dbeafe;
}

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

.movie-card a:hover .movie-cover img {
    transform: scale(1.10);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.74), transparent 70%);
    transition: opacity 0.25s ease;
}

.movie-card a:hover .movie-cover::after {
    opacity: 1;
}

.movie-duration,
.movie-score,
.movie-play {
    position: absolute;
    z-index: 2;
}

.movie-duration {
    right: 10px;
    bottom: 10px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.movie-score {
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #ffffff;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    font-size: 12px;
    font-weight: 900;
}

.movie-play {
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 16px;
}

.movie-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.movie-info h3 {
    margin: 8px 0;
    font-size: 18px;
    line-height: 1.28;
    transition: color 0.2s ease;
}

.movie-card a:hover h3 {
    color: var(--color-cyan);
}

.movie-info p {
    flex: 1 1 auto;
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.65;
    font-size: 14px;
}

.movie-tags span {
    padding: 5px 8px;
    border-radius: 999px;
    color: #475569;
    background: #f1f5f9;
    font-size: 12px;
}

.movie-card-large .movie-info h3 {
    font-size: 22px;
}

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

.category-tile,
.category-overview-card {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.category-tile {
    min-height: 260px;
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-count {
    display: inline-flex;
    margin-bottom: 20px;
    border-radius: 999px;
    padding: 6px 12px;
    color: #0369a1;
    background: #e0f2fe;
    font-weight: 900;
}

.category-tile h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-tile p {
    margin: 0 0 18px;
    color: var(--color-muted);
    line-height: 1.65;
}

.category-tile ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-tile li {
    margin-top: 8px;
    color: var(--color-blue);
    font-size: 14px;
}

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

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

.rank-row {
    display: grid;
    grid-template-columns: auto 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    font-weight: 900;
}

.rank-row img {
    width: 96px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: #dbeafe;
}

.rank-text {
    min-width: 0;
}

.rank-text strong,
.rank-text small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-text small {
    margin-top: 4px;
    color: var(--color-muted);
}

.rank-row em {
    color: #f59e0b;
    font-style: normal;
    font-weight: 900;
}

.sub-hero {
    padding: 76px 0;
    color: #ffffff;
}

.sub-hero-blue {
    background:
        radial-gradient(circle at 80% 20%, rgba(103, 232, 249, 0.30), transparent 34%),
        linear-gradient(135deg, #0f172a, #1d4ed8);
}

.sub-hero-cyan {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.30), transparent 34%),
        linear-gradient(135deg, var(--color-cyan), var(--color-blue));
}

.sub-hero h1 {
    margin: 12px 0 12px;
    font-size: clamp(38px, 6vw, 64px);
    letter-spacing: -0.04em;
}

.sub-hero p {
    max-width: 780px;
    margin: 0;
    color: #e0f2fe;
    font-size: 18px;
    line-height: 1.75;
}

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

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb strong {
    color: #ffffff;
}

.breadcrumb-dark {
    color: rgba(226, 232, 240, 0.82);
    margin-bottom: 22px;
}

.category-overview-list {
    display: grid;
    gap: 24px;
    padding-top: 60px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
}

.category-overview-head {
    padding: 10px;
}

.category-overview-head span {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    color: #0369a1;
    background: #e0f2fe;
    font-weight: 900;
}

.category-overview-head h2 {
    margin: 18px 0 10px;
    font-size: 32px;
}

.category-overview-head p {
    margin: 0 0 24px;
    color: var(--color-muted);
    line-height: 1.75;
}

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

.category-preview-grid a {
    overflow: hidden;
    border-radius: 18px;
    background: #f8fafc;
}

.category-preview-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #dbeafe;
}

.category-preview-grid span {
    display: block;
    padding: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
}

.filter-bar label {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    padding: 0 14px;
    background: #ffffff;
    outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.search-filter {
    grid-template-columns: 1fr 240px;
}

.result-counter {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-weight: 800;
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    padding-top: 60px;
}

.ranking-side {
    display: grid;
    gap: 28px;
    align-content: start;
}

.ranking-side section,
.side-card,
.detail-card {
    border-radius: var(--radius-lg);
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.ranking-side h2,
.side-card h2,
.detail-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.small-rank-list .rank-row {
    grid-template-columns: 76px minmax(0, 1fr) auto;
}

.small-rank-list .rank-number {
    display: none;
}

.small-rank-list .rank-row img {
    width: 76px;
    height: 50px;
}

.player-hero {
    padding: 42px 0;
    background: linear-gradient(180deg, #020617, #111827);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
    box-shadow: var(--shadow-strong);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.20), rgba(2, 6, 23, 0.44));
}

.player-overlay span {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    box-shadow: 0 22px 60px rgba(6, 182, 212, 0.36);
    font-size: 28px;
}

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

.player-shell.is-playing .player-overlay {
    display: none;
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 14px;
    margin: 0;
    padding: 7px 12px;
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(15, 23, 42, 0.72);
    font-size: 13px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    padding-top: 56px;
}

.detail-content {
    display: grid;
    gap: 24px;
}

.detail-title-block {
    border-radius: var(--radius-lg);
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.detail-channel {
    display: inline-flex;
    margin-bottom: 14px;
    border-radius: 999px;
    padding: 7px 13px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    font-weight: 900;
}

.detail-title-block h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 7px 11px;
    color: #475569;
    background: #f1f5f9;
    font-weight: 800;
}

.detail-tags span {
    color: #334155;
    background: #e0f2fe;
}

.detail-card p {
    margin: 0;
    color: #334155;
    font-size: 17px;
    line-height: 1.9;
}

.detail-review {
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.96), rgba(239, 246, 255, 0.96));
}

.detail-sidebar {
    display: grid;
    gap: 24px;
    align-content: start;
}

.side-card dl {
    margin: 0;
    display: grid;
    gap: 0;
}

.side-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

.side-card dt {
    color: var(--color-muted);
}

.side-card dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 80px;
    padding: 48px 0 0;
    color: #dbeafe;
    background: #0f172a;
}

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

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.site-footer p {
    margin: 0;
    line-height: 1.8;
    color: #cbd5e1;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    columns: 2;
}

.site-footer li {
    margin-bottom: 10px;
}

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

.footer-bottom {
    margin-top: 38px;
    padding: 18px;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

[data-card].is-hidden {
    display: none;
}

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

    .nav-search {
        flex: 1 1 auto;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-panel.is-open {
        display: block;
    }

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

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

    .intro-strip,
    .ranking-layout,
    .detail-layout,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-nav {
        min-height: 68px;
    }

    .site-logo {
        font-size: 20px;
    }

    .nav-search {
        display: none;
    }

    .page-main {
        padding-top: 68px;
    }

    .home-main {
        padding-top: 0;
    }

    .hero {
        height: 620px;
    }

    .hero-content {
        padding-top: 68px;
    }

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

    .intro-strip,
    .movie-grid-five,
    .movie-grid-four,
    .movie-grid-three,
    .category-grid,
    .category-preview-grid,
    .filter-bar,
    .search-filter,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-row,
    .small-rank-list .rank-row {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .rank-number,
    .rank-row em {
        display: none;
    }

    .rank-row img,
    .small-rank-list .rank-row img {
        width: 82px;
        height: 54px;
    }

    .detail-title-block,
    .detail-card,
    .side-card,
    .ranking-side section {
        padding: 20px;
    }

    .player-status {
        display: none;
    }
}
