:root {
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-soft: #f9fafb;
    --color-line: #e5e7eb;
    --color-card: #ffffff;
    --color-dark: #111827;
    --color-amber: #d97706;
    --color-amber-dark: #b45309;
    --shadow-card: 0 14px 35px rgba(17, 24, 39, 0.08);
    --shadow-hover: 0 22px 45px rgba(17, 24, 39, 0.14);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--color-text);
    background: #f3f4f6;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #92400e;
    font-weight: 800;
    white-space: nowrap;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.28);
    font-size: 14px;
}

.brand-name {
    font-size: 20px;
    letter-spacing: -0.02em;
}

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

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--color-amber-dark);
}

.site-search {
    width: 280px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #ffffff;
}

.site-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 7px 6px 7px 14px;
    color: var(--color-text);
    background: transparent;
}

.site-search button {
    border: 0;
    border-radius: 999px;
    padding: 7px 14px;
    color: #ffffff;
    background: var(--color-amber);
    transition: background-color 0.2s ease;
}

.site-search button:hover {
    background: var(--color-amber-dark);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #374151;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--color-line);
    background: #ffffff;
    padding: 10px 24px 18px;
}

.mobile-nav.is-open {
    display: grid;
    gap: 12px;
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #111827;
}

.hero-stage,
.hero-slide,
.hero-slide img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

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

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

.hero-overlay {
    background:
        radial-gradient(circle at 72% 34%, rgba(245, 158, 11, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    left: 0;
    right: 0;
}

.hero-text {
    max-width: 700px;
    color: #ffffff;
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-kicker span {
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.95);
    font-size: 14px;
    font-weight: 700;
}

.hero-kicker span + span {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.hero-text h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-text p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

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

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

.primary-button {
    padding: 0 28px;
    color: #ffffff;
    background: var(--color-amber);
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.32);
}

.primary-button:hover {
    transform: translateY(-2px);
    background: var(--color-amber-dark);
}

.ghost-button {
    padding: 0 24px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.46);
    transform: translateY(-50%);
    font-size: 38px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

.quick-panel {
    position: relative;
    z-index: 8;
    margin-top: -40px;
    padding: 0 24px;
}

.quick-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quick-inner a {
    padding: 22px;
    border-radius: var(--radius-md);
    color: #111827;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-inner a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.quick-inner span {
    display: block;
    color: var(--color-amber-dark);
    font-size: 14px;
    font-weight: 800;
}

.quick-inner strong {
    display: block;
    margin-top: 4px;
    font-size: 18px;
}

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

.content-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.warm-section {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(180deg, #fffbeb, #ffffff);
}

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

.section-heading h2,
.page-hero h1 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
    margin: 8px 0 0;
    color: var(--color-muted);
    max-width: 720px;
}

.section-link {
    min-height: 40px;
    padding: 0 18px;
    color: var(--color-amber-dark);
    background: #fff7ed;
}

.section-link:hover {
    color: #ffffff;
    background: var(--color-amber);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: var(--radius-md);
    background: var(--color-card);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: var(--shadow-hover);
}

.poster-wrap,
.list-poster,
.ranking-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #1f2937;
}

.poster-wrap {
    aspect-ratio: 3 / 4;
}

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

.movie-card:hover .poster-wrap img,
.movie-card:hover .list-poster img,
.ranking-card:hover .ranking-poster img {
    transform: scale(1.05);
}

.poster-badge,
.poster-play,
.ranking-poster span {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.poster-badge {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.78);
    font-size: 13px;
    font-weight: 800;
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.92);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-body {
    padding: 16px;
}

.card-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-amber-dark);
    font-size: 13px;
    font-weight: 800;
}

.card-body h3,
.list-content h3,
.ranking-content h3 {
    margin: 8px 0 6px;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover,
.list-content h3 a:hover,
.ranking-content h3 a:hover {
    color: var(--color-amber-dark);
}

.card-body p,
.list-content p,
.ranking-content p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.movie-card-large .poster-wrap {
    aspect-ratio: 16 / 10;
}

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

.movie-card-compact .card-body h3 {
    font-size: 16px;
}

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

.movie-card-list {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 190px;
}

.list-poster {
    height: 100%;
}

.list-content {
    padding: 18px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 10px;
    border-radius: 999px;
    color: #78350f;
    background: #fffbeb;
    font-size: 13px;
    font-weight: 700;
}

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

.category-card,
.category-panel {
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.category-card {
    display: block;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-name,
.category-panel-link span,
.page-hero span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--color-amber-dark);
    font-size: 14px;
    font-weight: 900;
}

.category-card strong,
.category-panel-link strong {
    display: block;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.3;
}

.category-card p,
.category-panel p {
    color: var(--color-muted);
    font-size: 14px;
}

.category-mini,
.category-samples {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    color: #92400e;
    font-size: 13px;
    font-weight: 700;
}

.category-panel {
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-samples a:hover {
    color: var(--color-amber-dark);
}

.rank-and-latest {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 80px;
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 28px;
}

.rank-box,
.latest-box .content-section {
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.rank-box {
    padding: 26px;
}

.latest-box .content-section {
    padding: 26px;
}

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

.compact-heading h2 {
    font-size: 28px;
}

.rank-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.rank-list a {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #f3f4f6;
}

.rank-number {
    color: var(--color-amber);
    font-weight: 900;
}

.rank-title {
    font-weight: 800;
}

.rank-info {
    color: var(--color-muted);
    font-size: 13px;
}

.page-hero {
    margin: 32px auto 0;
    padding: 54px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 22%, rgba(245, 158, 11, 0.36), transparent 28%),
        linear-gradient(135deg, #111827, #1f2937 55%, #78350f);
    overflow: hidden;
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero span {
    color: #fbbf24;
}

.small-hero,
.category-hero {
    min-height: 260px;
    display: flex;
    align-items: center;
}

.filter-section {
    padding-top: 36px;
}

.filter-bar {
    margin-bottom: 28px;
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.page-filter-input {
    flex: 1 1 300px;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    outline: none;
}

.page-filter-input:focus {
    border-color: var(--color-amber);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #374151;
    background: #f3f4f6;
    font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #ffffff;
    background: var(--color-amber);
}

.searchable-grid .movie-card.is-hidden,
.ranking-card.is-hidden {
    display: none;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 150px 1fr;
}

.ranking-poster {
    min-height: 210px;
}

.ranking-poster span {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.92);
    font-weight: 900;
}

.ranking-content {
    padding: 18px;
}

.ranking-content strong {
    display: inline-flex;
    margin-top: 12px;
    color: #92400e;
}

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

.breadcrumb a {
    color: var(--color-amber-dark);
    font-weight: 800;
}

.detail-main {
    padding-bottom: 80px;
}

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

.detail-primary {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 9;
}

.movie-video,
.player-overlay,
.player-overlay img {
    width: 100%;
    height: 100%;
}

.movie-video {
    position: absolute;
    inset: 0;
    background: #000000;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.48);
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    filter: brightness(0.56);
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.big-play-button {
    position: relative;
    z-index: 8;
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.94);
    font-size: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.big-play-button:hover {
    transform: scale(1.06);
    background: var(--color-amber-dark);
}

.player-error {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    display: none;
    padding: 12px 14px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(127, 29, 29, 0.86);
}

.player-error.is-visible {
    display: block;
}

.detail-card,
.side-card {
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.detail-card {
    padding: 30px;
}

.detail-card h1 {
    margin: 12px 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.one-line {
    margin: 0;
    color: #374151;
    font-size: 18px;
    font-weight: 600;
}

.detail-tags {
    margin: 22px 0;
}

.text-block {
    padding-top: 22px;
    border-top: 1px solid #f3f4f6;
}

.text-block + .text-block {
    margin-top: 22px;
}

.text-block h2,
.side-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.text-block p {
    margin: 0;
    color: #374151;
    font-size: 16px;
}

.detail-side {
    position: relative;
}

.side-card {
    position: sticky;
    top: 96px;
    padding: 22px;
}

.side-list {
    display: grid;
    gap: 8px;
}

.side-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #f9fafb;
}

.side-list a:hover {
    color: var(--color-amber-dark);
    background: #fffbeb;
}

.side-list span {
    font-weight: 800;
}

.side-list em {
    color: var(--color-muted);
    font-style: normal;
    font-size: 13px;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

.site-footer {
    margin-top: 40px;
    padding: 44px 24px;
    color: #d1d5db;
    background: #111827;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.footer-logo {
    color: #f59e0b;
}

.footer-brand p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a:hover {
    color: #fbbf24;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 16px;
    }

    .site-search {
        width: 230px;
    }

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

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

    .rank-and-latest,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .side-card {
        position: static;
    }
}

@media (max-width: 880px) {
    .header-inner {
        height: auto;
        min-height: 66px;
        padding: 12px 18px;
        flex-wrap: wrap;
        gap: 14px;
    }

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

    .desktop-nav {
        display: none;
    }

    .site-search {
        order: 3;
        width: 100%;
    }

    .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
    }

    .hero-slider {
        height: 68vh;
        min-height: 520px;
    }

    .hero-content {
        padding: 0 22px;
    }

    .hero-arrow {
        display: none;
    }

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

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

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

    .ranking-card,
    .movie-card-list {
        grid-template-columns: 120px 1fr;
    }

    .page-hero {
        padding: 36px 26px;
    }

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

@media (max-width: 620px) {
    .hero-slider {
        min-height: 500px;
    }

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

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

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

    .movie-grid,
    .category-grid,
    .category-panel-grid,
    .ranking-grid {
        grid-template-columns: 1fr;
    }

    .ranking-card,
    .movie-card-list {
        grid-template-columns: 108px 1fr;
    }

    .rank-list a {
        grid-template-columns: 36px 1fr;
    }

    .rank-info {
        display: none;
    }

    .detail-card {
        padding: 22px;
    }

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