:root {
    --amber: #f59e0b;
    --orange: #f97316;
    --rose: #f43f5e;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #f3e8d0;
    --panel: #ffffff;
    --soft: #fff7ed;
    --shadow: 0 18px 45px rgba(120, 53, 15, 0.13);
    --shadow-hover: 0 24px 55px rgba(120, 53, 15, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(245, 158, 11, 0.16);
    background: rgba(255, 251, 235, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(146, 64, 14, 0.08);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #111827;
}

.site-logo span,
.footer-logo {
    padding: 8px 13px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: #fff;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.main-nav a,
.mobile-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 10px 22px rgba(120, 53, 15, 0.08);
}

.header-search input,
.hero-search input,
.filter-bar input,
.filter-bar select {
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.header-search input {
    width: 180px;
    padding: 7px 8px 7px 14px;
}

.header-search button,
.hero-search button {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 7s ease;
}

.hero-slide.active img {
    transform: scale(1.1);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(245, 158, 11, 0.42), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.22)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 54%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    bottom: 120px;
    width: min(680px, calc(100% - 48px));
    color: #fff;
}

.hero-kicker,
.detail-kicker,
.page-hero p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.92);
}

.hero h1,
.hero h2 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.hero p {
    margin: 0 0 22px;
    max-width: 660px;
    color: #f8fafc;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

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

.hero-tags span,
.movie-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-tags span {
    padding: 7px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.btn-primary,
.btn-ghost,
.btn-text,
.small-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    padding: 12px 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.34);
}

.btn-ghost {
    padding: 12px 22px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-text {
    color: #fff7ed;
}

.btn-primary:hover,
.btn-ghost:hover,
.small-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.56);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 34px;
    background: var(--amber);
}

.hero-search {
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    display: flex;
    gap: 10px;
    max-width: 520px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero-search input {
    flex: 1;
    padding: 12px 14px;
}

.page-flow {
    display: grid;
    gap: 72px;
    padding: 72px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.section-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 14px 26px rgba(249, 115, 22, 0.24);
}

.section-heading p {
    margin: 0 0 2px;
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading > span {
    flex: 1;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.34), transparent);
}

.panel-block,
.content-panel,
.player-section,
.page-hero,
.detail-hero,
.category-detail-card {
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.panel-block {
    padding: clamp(22px, 4vw, 42px);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(120, 53, 15, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    background: #1f2937;
}

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

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

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 62%);
    transition: opacity 0.25s ease;
}

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

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: #fff;
    opacity: 0;
    background: var(--amber);
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-type {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(8px);
}

.movie-body {
    padding: 18px;
}

.movie-tags {
    margin-bottom: 10px;
}

.movie-tags span {
    padding: 4px 9px;
    color: #92400e;
    font-size: 12px;
    background: #fef3c7;
}

.movie-body h3 {
    margin: 0 0 9px;
    color: #111827;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 950;
}

.movie-body h3 a:hover {
    color: var(--orange);
}

.movie-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
}

.movie-meta span,
.movie-meta a {
    padding: 4px 9px;
    border-radius: 999px;
    background: #f9fafb;
}

.movie-meta a:hover {
    color: #fff;
    background: var(--orange);
}

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

.category-card,
.category-card-main {
    display: flex;
    flex-direction: column;
    gap: 11px;
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(120, 53, 15, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card span,
.category-card-main span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.category-card strong,
.category-card-main h2 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 950;
}

.category-card small,
.category-card-main p,
.category-samples {
    color: var(--muted);
    line-height: 1.65;
}

.category-detail-card {
    overflow: hidden;
}

.category-card-main {
    height: 100%;
    border: 0;
    border-radius: 30px 30px 0 0;
    box-shadow: none;
}

.category-samples {
    display: grid;
    gap: 8px;
    padding: 0 24px 22px;
    font-size: 14px;
}

.category-samples span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.section-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

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

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

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

.page-hero {
    padding: clamp(28px, 5vw, 52px);
    margin-bottom: 34px;
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.18), transparent 32%),
        rgba(255, 255, 255, 0.86);
}

.small-hero h1 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.small-hero span {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.filter-bar {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    padding: 12px;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    background: #fff;
}

.filter-bar select {
    max-width: 190px;
}

.search-wide input {
    flex: 1;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 130px 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(120, 53, 15, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.rank-cover {
    height: 88px;
    overflow: hidden;
    border-radius: 18px;
    background: #111827;
}

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

.rank-number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--rose), var(--orange));
}

.rank-info h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 950;
}

.rank-info p {
    display: -webkit-box;
    margin: 0 0 9px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.small-link {
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.detail-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: clamp(24px, 5vw, 50px);
    align-items: stretch;
    padding: clamp(22px, 4vw, 42px);
    margin-bottom: 34px;
}

.detail-poster {
    overflow: hidden;
    min-height: 430px;
    border-radius: 26px;
    background: #111827;
    box-shadow: var(--shadow);
}

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

.detail-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-intro h1 {
    margin: 0 0 18px;
    color: #111827;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.detail-one-line {
    margin: 0 0 20px;
    color: #4b5563;
    font-size: 20px;
    line-height: 1.75;
}

.detail-tags span {
    padding: 7px 12px;
    color: #92400e;
    background: #fef3c7;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.detail-meta-grid span {
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff7ed;
}

.detail-meta-grid b {
    color: var(--orange);
    font-size: 13px;
}

.detail-meta-grid a:hover {
    color: var(--orange);
}

.player-section {
    padding: clamp(20px, 4vw, 34px);
    margin-bottom: 34px;
}

.player-section h2,
.content-panel h2 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 28px;
    font-weight: 950;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.18), rgba(0, 0, 0, 0.42));
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    color: #fff;
    font-size: 42px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 42px rgba(249, 115, 22, 0.4);
    transition: transform 0.2s ease;
}

.play-overlay:hover span {
    transform: scale(1.06);
}

.play-overlay.is-hidden {
    display: none;
}

.content-panel {
    padding: clamp(22px, 4vw, 42px);
    margin-bottom: 54px;
}

.content-panel p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 18px;
    line-height: 1.95;
}

.site-footer {
    padding: 48px 0 28px;
    border-top: 1px solid rgba(245, 158, 11, 0.16);
    background: rgba(17, 24, 39, 0.95);
    color: #e5e7eb;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
}

.footer-inner p {
    max-width: 560px;
    margin: 16px 0 0;
    color: #9ca3af;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px 20px;
}

.footer-links a {
    color: #d1d5db;
    font-weight: 800;
}

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

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 30px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    text-align: center;
}

[hidden],
.is-filtered {
    display: none !important;
}

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }

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

    .detail-hero {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

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

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .mobile-nav.open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .hero {
        min-height: 640px;
    }

    .hero-content {
        bottom: 148px;
    }

    .hero-search {
        max-width: none;
    }

    .hero-control {
        top: auto;
        bottom: 92px;
        width: 44px;
        height: 44px;
        font-size: 34px;
    }

    .hero-prev {
        left: 24px;
    }

    .hero-next {
        right: 24px;
    }

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

    .rank-item {
        grid-template-columns: 90px 46px minmax(0, 1fr);
    }

    .rank-item .small-link {
        grid-column: 1 / -1;
    }

    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        min-height: 0;
        max-height: 520px;
    }

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

@media (max-width: 560px) {
    .container,
    .header-inner,
    .mobile-nav,
    .footer-inner,
    .copyright {
        width: min(100% - 24px, 1180px);
    }

    .site-logo span {
        font-size: 19px;
        padding: 7px 10px;
    }

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

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

    .hero-search {
        flex-direction: column;
        border-radius: 22px;
    }

    .hero-search button {
        width: 100%;
    }

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

    .section-heading > span {
        display: none;
    }

    .movie-grid,
    .compact-grid,
    .listing-grid,
    .category-grid,
    .category-detail-grid {
        grid-template-columns: 1fr;
    }

    .movie-cover {
        height: 290px;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-bar select {
        max-width: none;
    }

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

    .rank-number {
        position: absolute;
        margin: 8px;
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .play-overlay span {
        width: 74px;
        height: 74px;
        font-size: 34px;
    }
}
