:root {
    --color-blue: #2563eb;
    --color-blue-dark: #1d4ed8;
    --color-indigo: #4f46e5;
    --color-purple: #7c3aed;
    --color-slate-950: #020617;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f1f5f9;
    --color-slate-50: #f8fafc;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-slate-900);
    background: var(--color-slate-50);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

main {
    min-height: 60vh;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-blue), var(--color-indigo));
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.25);
    font-size: 13px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--color-blue), var(--color-indigo));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
    justify-content: center;
}

.nav-link {
    color: var(--color-slate-700);
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-blue);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--color-slate-200);
    border-radius: 999px;
    padding: 5px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.search-form input {
    width: 190px;
    border: 0;
    outline: 0;
    padding: 10px 8px 10px 14px;
    color: var(--color-slate-800);
    background: transparent;
}

.search-form button,
.big-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #ffffff;
    background: var(--color-blue);
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.search-form button:hover,
.big-search button:hover {
    background: var(--color-blue-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--color-slate-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-slate-700);
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--color-slate-700);
    background: rgba(241, 245, 249, 0.85);
    font-weight: 700;
}

.hero-section {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 45%, #faf5ff 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image: radial-gradient(circle at 20% 15%, rgba(37, 99, 235, 0.18), transparent 28%), radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15), transparent 24%), radial-gradient(circle at 50% 80%, rgba(79, 70, 229, 0.12), transparent 28%);
}

.hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    align-items: center;
    gap: 48px;
    padding: 64px 0;
}

.hero-copy {
    display: grid;
    gap: 24px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--color-blue);
    background: rgba(37, 99, 235, 0.10);
    font-size: 14px;
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: var(--color-slate-900);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy h1 {
    font-size: clamp(42px, 7vw, 72px);
}

.hero-copy p,
.page-hero p,
.detail-one-line {
    margin: 0;
    color: var(--color-slate-700);
    font-size: 19px;
    line-height: 1.85;
}

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

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

.primary-button {
    color: #ffffff;
    background: var(--color-blue);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.28);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.primary-button:hover {
    background: var(--color-blue-dark);
    box-shadow: 0 20px 34px rgba(37, 99, 235, 0.32);
}

.secondary-button {
    color: var(--color-blue);
    border: 2px solid rgba(37, 99, 235, 0.8);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.secondary-button.ghost {
    color: var(--color-slate-700);
    border-color: var(--color-slate-200);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-pills a,
.detail-tags a,
.tag-list span {
    border-radius: 999px;
    color: var(--color-blue);
    background: rgba(37, 99, 235, 0.09);
    font-weight: 700;
}

.hero-pills a {
    padding: 9px 14px;
}

.hero-feature-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    transform: translateZ(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-feature-card:hover {
    transform: scale(1.025);
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.18);
}

.hero-feature-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.84));
}

.hero-play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--color-blue);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
    transform: translate(-50%, -50%);
    font-size: 30px;
}

.hero-feature-text {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #ffffff;
}

.hero-feature-text span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.86);
    font-weight: 800;
}

.hero-feature-text h2 {
    margin: 14px 0 8px;
    font-size: 32px;
    line-height: 1.1;
}

.hero-feature-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.section {
    padding: 64px 0;
}

.white-section {
    background: #ffffff;
}

.gray-section {
    background: var(--color-slate-50);
}

.soft-gradient-section {
    background: linear-gradient(135deg, #eef2ff 0%, #eff6ff 45%, #faf5ff 100%);
}

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

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

.section-heading a {
    color: var(--color-blue);
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    display: grid;
    gap: 14px;
    min-height: 170px;
    padding: 24px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card strong,
.category-overview-title {
    color: var(--color-slate-900);
    font-size: 24px;
    font-weight: 900;
}

.category-card span,
.category-overview-card p {
    color: var(--color-slate-600);
    line-height: 1.75;
}

.category-card em,
.category-overview-count {
    color: var(--color-blue);
    font-style: normal;
    font-weight: 900;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-samples a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--color-slate-700);
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--color-slate-100);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.08);
}

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.74));
    transition: opacity 0.25s ease;
}

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

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

.poster-region {
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    background: var(--color-blue);
}

.poster-year {
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    background: rgba(15, 23, 42, 0.74);
}

.rank-badge {
    left: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--color-blue), var(--color-indigo));
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.26);
}

.poster-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--color-blue);
    background: rgba(255, 255, 255, 0.94);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.movie-card h3 {
    min-height: 44px;
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

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

.movie-meta,
.movie-one-line {
    margin: 0;
    color: var(--color-slate-600);
}

.movie-meta {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
}

.movie-one-line {
    display: -webkit-box;
    min-height: 42px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.6;
}

.tag-list,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 54px 128px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ranking-row:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: var(--shadow-card);
}

.ranking-index {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-blue), var(--color-indigo));
    font-size: 20px;
    font-weight: 900;
}

.ranking-row img {
    width: 128px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
}

.ranking-info {
    display: grid;
    gap: 6px;
}

.ranking-info strong {
    font-size: 18px;
}

.ranking-info small,
.ranking-info em {
    color: var(--color-slate-600);
    font-style: normal;
}

.page-hero,
.detail-hero {
    background: linear-gradient(135deg, #eff6ff, #eef2ff 50%, #faf5ff);
}

.small-page-hero {
    padding: 64px 0;
}

.page-hero h1 {
    margin: 18px 0;
    font-size: clamp(36px, 6vw, 60px);
}

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

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

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    background: #ffffff;
}

.filter-bar strong {
    font-size: 22px;
}

.filter-bar div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-bar a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-blue);
    background: rgba(37, 99, 235, 0.09);
    font-weight: 800;
}

.detail-hero {
    padding: 42px 0 58px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

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

.detail-copy h1 {
    font-size: clamp(36px, 6vw, 66px);
}

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

.detail-meta div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.detail-meta dt {
    color: var(--color-slate-500);
    font-size: 13px;
    font-weight: 800;
}

.detail-meta dd {
    margin: 6px 0 0;
    color: var(--color-slate-900);
    font-weight: 900;
}

.player-section {
    background: var(--color-slate-900);
    color: #ffffff;
}

.player-section h2 {
    margin: 0 0 22px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

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

.player-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-start {
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--color-blue);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.30);
    font-size: 34px;
    transition: transform 0.2s ease;
}

.player-layer:hover .player-start {
    transform: scale(1.06);
}

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

.content-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 900;
}

.content-card p {
    margin: 0;
    color: var(--color-slate-700);
    line-height: 1.9;
    font-size: 17px;
}

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

.prev-next a {
    padding: 16px 18px;
    border-radius: 16px;
    color: var(--color-blue);
    background: rgba(37, 99, 235, 0.09);
    font-weight: 800;
}

.big-search {
    display: flex;
    width: min(720px, 100%);
    gap: 10px;
    margin-top: 28px;
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.big-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: transparent;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(135deg, #0f172a, #1e293b 55%, #111827);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

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

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

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

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
}

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

    .nav-link {
        font-size: 14px;
    }

    .search-form input {
        width: 150px;
    }

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

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .mobile-panel .search-form {
        display: flex;
        width: 100%;
    }

    .mobile-panel .search-form input {
        width: 100%;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: auto;
    }

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

    .hero-feature-card img {
        height: 460px;
    }

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

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

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

    .detail-poster {
        max-width: 320px;
    }

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

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

@media (max-width: 640px) {
    .header-inner {
        min-height: 66px;
    }

    .logo-text {
        font-size: 21px;
    }

    .hero-inner {
        padding: 42px 0;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        letter-spacing: -0.03em;
    }

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

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

    .hero-feature-card img {
        height: 380px;
    }

    .section {
        padding: 42px 0;
    }

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

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

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

    .movie-card h3 {
        font-size: 15px;
    }

    .ranking-row {
        grid-template-columns: 42px 90px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .ranking-row img {
        width: 90px;
        height: 66px;
    }

    .ranking-index {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .ranking-info em {
        display: none;
    }

    .filter-bar,
    .prev-next,
    .big-search {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

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

    .content-card {
        padding: 20px;
    }

    .player-start {
        width: 72px;
        height: 72px;
        font-size: 26px;
    }

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