:root {
    color-scheme: dark;
    --bg: #030712;
    --bg-soft: #0b1120;
    --panel: rgba(17, 24, 39, 0.72);
    --panel-strong: rgba(17, 24, 39, 0.95);
    --line: rgba(148, 163, 184, 0.16);
    --text: #ffffff;
    --muted: #cbd5e1;
    --subtle: #94a3b8;
    --blue: #2563eb;
    --blue-soft: #38bdf8;
    --radius: 18px;
    --shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34rem),
        linear-gradient(180deg, #030712 0%, #0b1120 46%, #030712 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(3, 7, 18, 0.94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

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

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

.brand-text small {
    margin-top: 5px;
    color: var(--subtle);
    font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
    color: var(--muted);
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #fff;
    background: rgba(37, 99, 235, 0.95);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.94);
}

.mobile-nav.is-visible {
    display: grid;
    gap: 6px;
}

.mobile-nav-link {
    padding: 12px 14px;
}

.hero {
    position: relative;
    height: 78vh;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
}

.hero-static-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.hero-slides,
.hero-slide,
.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease;
}

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

.hero-image,
.detail-backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:
        radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.22), transparent 20rem),
        linear-gradient(135deg, #111827, #020617);
}

.hero-overlay {
    background:
        linear-gradient(to top, #030712 0%, rgba(3, 7, 18, 0.8) 34%, rgba(3, 7, 18, 0.16) 100%),
        linear-gradient(to right, rgba(3, 7, 18, 0.78), rgba(3, 7, 18, 0.12));
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    right: 32px;
    bottom: 92px;
    z-index: 2;
    max-width: 780px;
}

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.92);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
}

.hero-content h2 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-content p {
    margin: 0 0 30px;
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.7;
}

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

.primary-button,
.ghost-button,
.quick-search button,
.rank-watch,
.filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button,
.quick-search button,
.rank-watch,
.filter-link {
    background: var(--blue);
    color: #fff;
}

.ghost-button {
    background: rgba(15, 23, 42, 0.64);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.primary-button:hover,
.ghost-button:hover,
.quick-search button:hover,
.rank-watch:hover,
.filter-link:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
    font-size: 42px;
    line-height: 1;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(37, 99, 235, 0.82);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #fff;
}

.home-search-band,
.wide-strip {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.76), rgba(15, 23, 42, 0.9));
    border-block: 1px solid var(--line);
}

.home-search-band {
    padding: 34px 0;
}

.search-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: center;
    gap: 26px;
}

.search-band-inner h2,
.section-heading h2,
.info-panel h2,
.player-panel h2,
.side-panel h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.15;
}

.search-band-inner p,
.section-heading p {
    margin: 10px 0 0;
    color: var(--subtle);
    line-height: 1.7;
}

.quick-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(3, 7, 18, 0.68);
}

.quick-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
    outline: none;
}

.quick-search input {
    min-height: 46px;
    padding: 0 14px;
}

.content-section {
    padding: 74px 0;
}

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

.section-link {
    color: #60a5fa;
    font-weight: 800;
}

.section-link:hover {
    color: #93c5fd;
}

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

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

.movie-card,
.category-card,
.info-panel,
.player-panel,
.side-panel,
.rank-row {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.45);
    background: rgba(30, 41, 59, 0.82);
}

.poster-link,
.poster-frame {
    display: block;
}

.poster-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.28), transparent 15rem),
        linear-gradient(135deg, #1f2937, #020617);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent 58%);
}

.play-badge,
.big-play {
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.95);
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.32);
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.year-badge,
.region-badge {
    position: absolute;
    z-index: 2;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    top: 12px;
    right: 12px;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.68);
    color: #fff;
}

.region-badge {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    background: var(--blue);
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-body {
    padding: 16px;
}

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

.card-title a {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover .card-title a {
    color: #60a5fa;
}

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

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

.card-meta span,
.rank-meta span {
    display: inline-flex;
    align-items: center;
}

.card-meta span + span::before,
.rank-meta span + span::before {
    content: "•";
    margin-right: 8px;
    color: #334155;
}

.tag-list,
.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list {
    margin-top: 12px;
}

.tag-list span,
.chip-list span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: var(--muted);
    border: 1px solid var(--line);
}

.tag-list span {
    padding: 5px 8px;
    font-size: 12px;
}

.chip-list span {
    padding: 8px 12px;
    font-size: 14px;
}

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 300px);
    gap: 18px;
    overflow-x: auto;
    padding: 0 max(16px, calc((100vw - 1180px) / 2)) 18px;
    scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
    scroll-snap-align: start;
}

.wide-strip {
    padding: 64px 0 54px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.movie-card-wide .poster-frame {
    aspect-ratio: 16 / 10;
}

.movie-card-wide .card-title {
    font-size: 28px;
}

.feature-side,
.side-list {
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: auto 116px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 14px;
    border-radius: 18px;
}

.rank-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    font-weight: 900;
}

.rank-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e293b, #020617);
}

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

.rank-content h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.rank-content p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--subtle);
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 54px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.25), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(3, 7, 18, 0.94));
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

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

.category-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.category-card a {
    display: grid;
    grid-template-rows: 150px 1fr;
    min-height: 280px;
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: linear-gradient(135deg, #1e293b, #020617);
}

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

.category-info {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.category-info strong {
    font-size: 24px;
}

.category-info small {
    color: var(--subtle);
    line-height: 1.7;
}

.filter-bar {
    position: sticky;
    top: 84px;
    z-index: 8;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 160px auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 26px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(3, 7, 18, 0.88);
    backdrop-filter: blur(18px);
}

.filter-bar label {
    display: grid;
    gap: 7px;
    color: var(--subtle);
    font-size: 13px;
}

.filter-bar input,
.filter-bar select {
    height: 44px;
    padding: 0 12px;
}

.filter-empty {
    display: none;
    grid-column: 1 / -1;
    margin: 0;
    padding: 16px;
    border: 1px dashed rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    color: var(--subtle);
    text-align: center;
}

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

.detail-page {
    padding-top: 72px;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.detail-backdrop,
.detail-backdrop-shade {
    position: absolute;
    inset: 0;
}

.detail-backdrop-shade {
    background:
        linear-gradient(to top, #030712 0%, rgba(3, 7, 18, 0.78) 52%, rgba(3, 7, 18, 0.2) 100%),
        linear-gradient(to right, rgba(3, 7, 18, 0.82), rgba(3, 7, 18, 0.18));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: end;
    min-height: 560px;
    padding: 120px 0 58px;
}

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

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

.detail-intro h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.detail-intro p {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.75;
}

.detail-intro .primary-button {
    margin-top: 24px;
    width: max-content;
}

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

.detail-main,
.detail-side {
    display: grid;
    gap: 22px;
    align-content: start;
}

.player-panel,
.info-panel,
.side-panel {
    padding: 24px;
    border-radius: 22px;
}

.player-panel h2,
.info-panel h2,
.side-panel h2 {
    margin-bottom: 18px;
    font-size: 24px;
}

.info-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.player-video,
.player-cover,
.player-cover-bg,
.player-cover-shade {
    position: absolute;
    inset: 0;
}

.player-video {
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #000;
}

.player-cover.is-hidden {
    display: none;
}

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

.player-cover-shade {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16), rgba(0, 0, 0, 0.78));
}

.big-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 86px;
    height: 86px;
    font-size: 36px;
    transform: translate(-50%, -50%);
}

.detail-side .rank-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 10px;
    box-shadow: none;
}

.detail-side .rank-number,
.detail-side .rank-watch {
    display: none;
}

.detail-side .rank-thumb {
    width: 92px;
}

.detail-side .rank-content h3 {
    font-size: 15px;
}

.detail-side .rank-content p {
    -webkit-line-clamp: 1;
}

.site-footer {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    background: rgba(3, 7, 18, 0.86);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
    gap: 28px;
    padding: 36px 0;
}

.site-footer strong {
    font-size: 22px;
}

.site-footer p {
    margin: 10px 0 0;
    color: var(--subtle);
    line-height: 1.8;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.site-footer a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
}

.site-footer a:hover {
    color: #fff;
    border-color: rgba(96, 165, 250, 0.5);
}

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

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

    .detail-side {
        grid-row: auto;
    }
}

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

    .menu-button {
        display: block;
    }

    .hero {
        height: 72vh;
        min-height: 560px;
    }

    .hero-arrow {
        display: none;
    }

    .search-band-inner,
    .footer-grid,
    .detail-hero-inner {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(280px, 72vw);
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .filter-link {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .container,
    .content-section,
    .header-inner,
    .mobile-nav {
        width: min(100% - 22px, 1180px);
    }

    .brand-text small {
        display: none;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        left: 18px;
        right: 18px;
        bottom: 68px;
    }

    .hero-content h2 {
        font-size: 38px;
    }

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

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

    .content-section {
        padding: 48px 0;
    }

    .section-heading {
        display: grid;
        gap: 12px;
    }

    .card-body {
        padding: 12px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-desc,
    .tag-list,
    .card-meta {
        display: none;
    }

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

    .rank-watch {
        display: none;
    }

    .page-hero {
        padding: 62px 0 44px;
    }

    .filter-bar {
        position: static;
        grid-template-columns: 1fr;
    }

    .filter-link {
        grid-column: auto;
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-hero-inner {
        min-height: auto;
        padding-top: 78px;
    }

    .detail-intro h1 {
        font-size: 38px;
    }

    .detail-intro p {
        font-size: 16px;
    }

    .player-panel,
    .info-panel,
    .side-panel {
        padding: 16px;
    }

    .big-play {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
