* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, #78350f 0%, #92400e 50%, #9a3412 100%);
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.28);
}

.navbar {
    width: min(100%, 1280px);
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #78350f;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.38);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.nav-link {
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fde68a;
    opacity: 1;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

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

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(251, 191, 36, 0.28), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.24));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    right: 24px;
    bottom: 120px;
    max-width: 820px;
    color: #ffffff;
}

.hero-eyebrow,
.section-title p,
.inner-hero p {
    margin: 0 0 8px;
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.46);
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: clamp(16px, 2.2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
}

.hero-tags,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-tags span:first-child {
    color: #78350f;
    background: #fbbf24;
    font-weight: 800;
}

.hero-actions {
    margin-top: 28px;
}

.primary-btn,
.glass-btn,
.filter-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.filter-bar button {
    color: #78350f;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    box-shadow: 0 14px 34px rgba(251, 146, 60, 0.35);
}

.glass-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.glass-btn:hover,
.filter-bar button:hover {
    transform: translateY(-2px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
}

.carousel-prev {
    left: 24px;
}

.carousel-next {
    right: 24px;
}

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

.carousel-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dots button.is-active {
    width: 34px;
    background: #fbbf24;
}

.hero-search {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 56px;
    max-width: 680px;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 0 14px;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

.hero-search button {
    border: 0;
    border-radius: 999px;
    color: #78350f;
    background: #fbbf24;
    padding: 8px 18px;
    cursor: pointer;
    font-weight: 800;
}

.page-shell {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 56px 24px;
}

.home-shell {
    display: grid;
    gap: 56px;
}

.content-section {
    display: grid;
    gap: 24px;
}

.soft-panel {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.rank-panel {
    padding: 32px;
    border-radius: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 12%, rgba(251, 191, 36, 0.34), transparent 24%),
        linear-gradient(135deg, #111827, #451a03 62%, #7c2d12);
    box-shadow: 0 24px 70px rgba(69, 26, 3, 0.28);
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.section-title h2,
.section-title h3 {
    margin: 0;
    color: #111827;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
}

.section-title a {
    color: #b45309;
    font-weight: 800;
}

.light-title h2,
.light-title a {
    color: #ffffff;
}

.light-title p {
    color: #fde68a;
}

.small-title h3 {
    font-size: 22px;
}

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

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

.six-grid,
.compact-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

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

.movie-card {
    min-width: 0;
}

.movie-card.is-hidden {
    display: none;
}

.movie-card-link {
    display: grid;
    overflow: hidden;
    height: 100%;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fbbf24, #78350f);
}

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

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

.poster-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #78350f;
    background: #fbbf24;
    font-weight: 900;
    font-size: 12px;
}

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

.movie-card-body h3 {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-body p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 8px;
    color: #92400e;
    background: #fffbeb;
    font-size: 12px;
    font-weight: 700;
}

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

.movie-card-compact .movie-card-body p {
    display: none;
}

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

.category-tile {
    min-height: 150px;
    padding: 22px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #78350f, #b45309);
    box-shadow: 0 18px 40px rgba(146, 64, 14, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(146, 64, 14, 0.28);
}

.category-tile span {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.shelf-stack {
    display: grid;
    gap: 30px;
}

.category-shelf {
    display: grid;
    gap: 16px;
}

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

.home-rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rank-row {
    min-width: 0;
}

.rank-link {
    display: grid;
    grid-template-columns: 52px 62px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 16px;
    color: #111827;
    background: rgba(255, 255, 255, 0.94);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-panel .rank-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.rank-link:hover {
    transform: translateX(4px);
    background: rgba(251, 191, 36, 0.18);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #78350f;
    background: #fbbf24;
    font-weight: 900;
}

.rank-link img {
    width: 62px;
    height: 82px;
    object-fit: cover;
    border-radius: 10px;
}

.rank-info {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.rank-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em {
    color: #9ca3af;
    font-style: normal;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inner-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 18%, rgba(251, 191, 36, 0.34), transparent 26%),
        linear-gradient(135deg, #111827, #78350f 55%, #9a3412);
}

.inner-hero > div {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 68px 24px;
}

.inner-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.1;
}

.inner-hero span {
    display: block;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

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

.category-card-large {
    overflow: hidden;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.category-cover {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}

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

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.category-cover span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.category-card-body {
    padding: 22px;
}

.category-card-body h2 {
    margin: 0 0 10px;
}

.category-card-body p {
    margin: 0 0 16px;
    color: #6b7280;
}

.category-card-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.category-card-body li a {
    color: #b45309;
    font-weight: 700;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px 110px;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
    margin-bottom: 30px;
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    outline: 0;
    padding: 0 14px;
    background: #f9fafb;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

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

.detail-hero > img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    position: absolute;
    inset: 0;
    object-fit: cover;
    filter: blur(4px);
    transform: scale(1.04);
}

.detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.32)),
        linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.96));
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 70px 24px 56px;
    color: #ffffff;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.breadcrumb a {
    color: #fde68a;
}

.detail-hero h1 {
    max-width: 960px;
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
}

.detail-hero p {
    max-width: 780px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

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

.detail-main,
.detail-side {
    display: grid;
    gap: 24px;
}

.player-box,
.detail-card,
.info-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.player-box {
    overflow: hidden;
    padding: 12px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: #000000;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
}

.play-circle {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #78350f;
    background: #fbbf24;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.44);
    font-size: 34px;
}

.player-cover strong {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    font-size: clamp(18px, 3vw, 30px);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.46);
}

.detail-card,
.info-card {
    padding: 26px;
}

.detail-card h2,
.info-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.detail-card p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 16px;
    line-height: 1.85;
}

.info-card dl {
    display: grid;
    gap: 14px;
    margin: 0 0 20px;
}

.info-card dl div {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.info-card dt {
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
}

.info-card dd {
    margin: 0;
    color: #111827;
}

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

.tag-list span {
    padding: 6px 10px;
    border-radius: 999px;
    color: #92400e;
    background: #fffbeb;
    font-size: 13px;
    font-weight: 700;
}

.side-link {
    display: block;
    padding: 16px 18px;
    border-radius: 18px;
    color: #78350f;
    background: #fbbf24;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 14px 30px rgba(251, 191, 36, 0.22);
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(180deg, #111827, #030712);
    padding: 52px 24px 28px;
}

.footer-grid {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 900;
    font-size: 20px;
}

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

.site-footer p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 14px;
}

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

.footer-bottom {
    width: min(100%, 1280px);
    margin: 32px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 12px;
        font-size: 13px;
    }

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

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

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

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-carousel {
        min-height: 620px;
    }

    .hero-content {
        bottom: 156px;
    }

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

    .home-rank-list,
    .full-rank-list {
        grid-template-columns: 1fr;
    }

    .category-card-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-side {
        order: -1;
    }

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

@media (max-width: 720px) {
    .navbar {
        padding: 0 16px;
    }

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

    .hero-carousel {
        height: 78vh;
        min-height: 620px;
    }

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

    .hero-actions {
        align-items: stretch;
    }

    .primary-btn,
    .glass-btn {
        flex: 1 1 130px;
    }

    .carousel-arrow {
        display: none;
    }

    .hero-search {
        left: 18px;
        right: 18px;
        bottom: 64px;
        border-radius: 24px;
        flex-direction: column;
    }

    .hero-search input {
        min-height: 42px;
    }

    .page-shell {
        padding: 38px 16px;
    }

    .soft-panel,
    .rank-panel {
        padding: 20px;
        border-radius: 22px;
    }

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

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

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

    .category-card-large {
        grid-template-columns: 1fr;
    }

    .category-cover {
        min-height: 220px;
    }

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

    .rank-link {
        grid-template-columns: 42px 54px minmax(0, 1fr);
        gap: 10px;
    }

    .rank-link img {
        width: 54px;
        height: 72px;
    }

    .detail-hero-content {
        padding: 48px 16px 42px;
    }

    .detail-card,
    .info-card {
        padding: 20px;
    }

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