:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.82);
    --bg-card-solid: #0f172a;
    --line: rgba(148, 163, 184, 0.18);
    --text: #ffffff;
    --muted: #cbd5e1;
    --soft: #94a3b8;
    --amber: #f59e0b;
    --amber-soft: rgba(245, 158, 11, 0.16);
    --rose: #fb7185;
    --blue: #38bdf8;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 8% -6%, rgba(245, 158, 11, 0.18), transparent 34rem),
        radial-gradient(circle at 88% 2%, rgba(56, 189, 248, 0.12), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #020617 46%, #0b1120 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(2, 6, 23, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.36);
}

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

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

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

.nav-link {
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background: var(--amber-soft);
}

.header-search,
.mobile-search,
.large-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search {
    margin-left: auto;
    min-width: 320px;
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-field input,
.filter-field select {
    width: 100%;
    color: #fff;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.mobile-search input {
    height: 40px;
    padding: 0 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-field input:focus,
.filter-field select:focus {
    border-color: rgba(245, 158, 11, 0.78);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.header-search button,
.mobile-search button,
.large-search button {
    height: 40px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: #0f172a;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.78);
    cursor: pointer;
}

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

.mobile-nav {
    padding: 0 18px 18px;
    border-top: 1px solid var(--line);
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    margin-top: 8px;
    font-weight: 700;
}

.mobile-search {
    margin-top: 12px;
}

.hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #020617;
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.08);
    transform: scale(1.04);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 43%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.94) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    max-width: 1320px;
    margin: 0 auto;
    padding: 110px 24px 98px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero h1 {
    max-width: 790px;
    font-size: clamp(42px, 7vw, 86px);
}

.hero-desc {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-meta span,
.detail-meta span {
    padding: 7px 12px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
}

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

.hero-tags {
    margin-top: 16px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    color: #fef3c7;
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.primary-btn,
.ghost-btn {
    min-height: 46px;
    padding: 0 22px;
}

.primary-btn {
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 14px 38px rgba(245, 158, 11, 0.28);
}

.ghost-btn {
    color: #fff;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid var(--line);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(2, 6, 23, 0.68);
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(16px);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 24px;
    line-height: 1;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: rgba(226, 232, 240, 0.35);
}

.hero-dot.active {
    width: 30px;
    border-radius: 999px;
    background: var(--amber);
}

.section-wrap,
.page-main {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section-wrap {
    margin-top: 84px;
}

.search-banner,
.page-hero,
.home-note-card,
.detail-card,
.detail-text-block,
.related-box,
.filter-panel,
.category-overview-card,
.category-card,
.rank-row {
    background: var(--bg-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-banner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 32px;
    align-items: center;
    padding: 34px;
    border-radius: var(--radius);
}

.search-banner h2,
.section-heading h2,
.home-note-card h2,
.related-box h2,
.detail-text-block h2,
.category-overview-card h2 {
    margin: 0;
    line-height: 1.18;
}

.search-banner h2,
.section-heading h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.search-banner p,
.home-note-card p,
.page-hero p,
.category-card p,
.category-overview-card p,
.detail-text-block p,
.movie-card-desc,
.rank-info p,
.site-footer p {
    color: var(--muted);
    line-height: 1.72;
}

.large-search input {
    height: 54px;
    padding: 0 20px;
}

.large-search button {
    height: 54px;
    padding: 0 24px;
}

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

.compact-heading {
    margin-bottom: 18px;
}

.text-link {
    color: var(--amber);
    font-size: 14px;
}

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 18px;
}

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

.category-card {
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover,
.movie-card:hover,
.rank-row:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.38);
}

.category-card a {
    min-height: 230px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.18), transparent 16rem),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.7));
}

.category-card span,
.category-icon {
    color: var(--amber);
    font-weight: 900;
}

.category-card h2 {
    margin: 18px 0 8px;
    font-size: 22px;
}

.category-samples {
    display: grid;
    gap: 6px;
    margin-top: 18px;
}

.category-samples a,
.category-overview-card li a,
.site-footer a {
    color: var(--soft);
    transition: color 0.2s ease;
}

.category-samples a:hover,
.category-overview-card li a:hover,
.site-footer a:hover {
    color: var(--amber);
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img,
.rank-cover img,
.side-poster img,
.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-link img,
.rank-cover img {
    transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img,
.rank-row:hover .rank-cover img {
    transform: scale(1.06);
}

.score-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.score-badge {
    right: 10px;
    bottom: 10px;
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24, #f97316);
}

.rank-badge {
    left: 10px;
    top: 10px;
    color: #fff;
    background: rgba(244, 63, 94, 0.88);
}

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

.movie-card-title,
.rank-title {
    display: block;
    color: #fff;
    font-weight: 900;
    line-height: 1.35;
}

.movie-card-title {
    min-height: 44px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-meta {
    margin: 7px 0 0;
    color: var(--soft);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card-desc {
    min-height: 66px;
    margin: 9px 0 12px;
    font-size: 13px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.7fr);
    gap: 24px;
    align-items: start;
}

.home-note-card {
    position: sticky;
    top: 96px;
    padding: 28px;
    border-radius: var(--radius);
}

.home-note-card h2 {
    font-size: 30px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 96px minmax(0, 1fr) 120px;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

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

.rank-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border-radius: 14px;
    font-weight: 900;
}

.rank-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: #0f172a;
}

.rank-info p {
    margin: 4px 0 0;
    font-size: 13px;
}

.rank-heat {
    text-align: right;
}

.rank-heat strong {
    display: block;
    font-size: 26px;
    color: var(--amber);
}

.rank-heat span {
    color: var(--soft);
    font-size: 12px;
}

.page-main {
    padding-top: 42px;
    padding-bottom: 70px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 54px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 72% 18%, rgba(245, 158, 11, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.84));
}

.slim-hero {
    min-height: 260px;
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(40px, 6vw, 68px);
}

.page-hero p {
    max-width: 760px;
    margin: 20px 0 0;
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 16px;
    align-items: end;
    padding: 18px;
    margin-bottom: 24px;
    border-radius: 20px;
}

.filter-field label {
    display: block;
    margin: 0 0 8px 4px;
    color: var(--soft);
    font-size: 13px;
    font-weight: 800;
}

.filter-field input,
.filter-field select {
    height: 46px;
    padding: 0 16px;
}

.empty-state {
    margin: 20px 0;
    padding: 24px;
    color: var(--muted);
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.68);
}

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

.category-overview-card {
    padding: 24px;
    border-radius: 22px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-overview-main {
    display: flex;
    gap: 18px;
}

.category-icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--amber-soft);
}

.category-overview-card h2 {
    font-size: 26px;
}

.category-overview-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 18px 0 0 74px;
    margin: 0;
    list-style: none;
}

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

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

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

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

.detail-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    background: #000;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #020617;
    cursor: pointer;
    overflow: hidden;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 48%, rgba(245, 158, 11, 0.18), transparent 18rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.82));
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-circle {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 18px 45px rgba(245, 158, 11, 0.38);
}

.play-label {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: calc(50% + 58px);
    transform: translateX(-50%);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.detail-card,
.detail-text-block,
.related-box {
    padding: 26px;
    margin-top: 22px;
    border-radius: 24px;
}

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

.detail-one-line {
    margin: 16px 0 0;
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.72;
}

.detail-text-block h2,
.related-box h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

.detail-text-block p {
    margin: 0;
    font-size: 16px;
}

.detail-side {
    position: sticky;
    top: 96px;
}

.side-poster {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
}

.side-poster img {
    aspect-ratio: 2 / 3;
}

.side-poster div {
    padding: 18px;
}

.side-poster strong,
.side-poster span {
    display: block;
}

.side-poster span {
    margin-top: 6px;
    color: var(--soft);
}

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

.movie-card-compact {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    border-radius: 16px;
}

.movie-card-compact .poster-link {
    aspect-ratio: 2 / 3;
}

.movie-card-compact .movie-card-body {
    padding: 12px 12px 12px 0;
}

.movie-card-compact .movie-card-title {
    min-height: auto;
}

.movie-card-compact .movie-card-desc,
.movie-card-compact .tag-list,
.movie-card-compact .score-badge {
    display: none;
}

.site-footer {
    margin-top: 80px;
    background: rgba(2, 6, 23, 0.92);
    border-top: 1px solid var(--line);
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 42px 24px;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 36px;
}

.footer-inner h2 {
    margin: 0 0 14px;
    font-size: 16px;
}

.footer-inner ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    padding: 18px 24px 30px;
    color: var(--soft);
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

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

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

    .menu-toggle {
        display: block;
    }

    .search-banner,
    .filter-panel,
    .footer-inner,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

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

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

    .rank-heat {
        grid-column: 3;
        text-align: left;
    }

    .category-overview-card ul {
        padding-left: 0;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 64px;
        padding: 0 16px;
    }

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

    .hero,
    .hero-content {
        min-height: 76vh;
    }

    .hero-content {
        padding: 92px 18px 104px;
    }

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

    .hero-desc,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .section-wrap,
    .page-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-wrap {
        margin-top: 58px;
    }

    .page-hero {
        min-height: 240px;
        padding: 32px 22px;
        border-radius: 22px;
    }

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

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

    .movie-card-desc {
        min-height: 58px;
        -webkit-line-clamp: 2;
    }

    .tag-list .tag-pill:nth-child(n + 3) {
        display: none;
    }

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

    .rank-row,
    .small-rank-list .rank-row {
        grid-template-columns: 36px 68px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .rank-number {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        font-size: 13px;
    }

    .rank-heat strong {
        font-size: 18px;
    }

    .detail-card,
    .detail-text-block,
    .related-box {
        padding: 20px;
        border-radius: 20px;
    }

    .detail-card h1 {
        font-size: 34px;
    }

    .play-circle {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}
