:root {
    --toffee-primary: #c87941;
    --toffee-secondary: #e5a76b;
    --toffee-light: #f5e6d3;
    --toffee-cream: #fff8f0;
    --toffee-caramel: #b8784f;
    --toffee-brown: #8b5a3c;
    --toffee-dark: #6b4423;
    --cloud-white: #ffffff;
    --cloud-soft: #f9f9f9;
    --ink: #332115;
    --muted: rgba(107, 68, 35, 0.72);
    --line: rgba(200, 121, 65, 0.18);
    --shadow: 0 18px 45px rgba(107, 68, 35, 0.14);
    --soft-shadow: 0 12px 30px rgba(107, 68, 35, 0.10);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--toffee-dark);
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.68;
    background:
        radial-gradient(circle at 12% 8%, rgba(229, 167, 107, 0.32), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(200, 121, 65, 0.18), transparent 26%),
        linear-gradient(135deg, var(--toffee-cream) 0%, #ffffff 48%, rgba(245, 230, 211, 0.62) 100%);
    min-height: 100vh;
}

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: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(245, 230, 211, 0.72);
    box-shadow: 0 10px 30px rgba(107, 68, 35, 0.06);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--toffee-dark);
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
    box-shadow: 0 12px 24px rgba(200, 121, 65, 0.28);
}

.brand-name {
    font-size: clamp(20px, 2vw, 27px);
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary), var(--toffee-caramel));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.desktop-nav a,
.mobile-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--toffee-dark);
    font-weight: 650;
    font-size: 15px;
    transition: all 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--toffee-primary);
    background: rgba(245, 230, 211, 0.74);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: var(--toffee-cream);
    border: 1px solid rgba(200, 121, 65, 0.12);
}

.header-search input,
.mobile-nav input,
.search-panel input,
.filter-toolbar input,
.filter-toolbar select {
    border: 0;
    outline: 0;
    color: var(--toffee-dark);
    background: rgba(255, 255, 255, 0.78);
}

.header-search input {
    width: 210px;
    padding: 9px 8px 9px 14px;
    background: transparent;
}

.header-search button,
.mobile-nav button,
.primary-btn,
.secondary-btn,
.card-link,
.player-cover {
    border: 0;
    cursor: pointer;
}

.header-search button,
.primary-btn,
.card-link {
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 750;
    background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
    box-shadow: 0 10px 22px rgba(200, 121, 65, 0.22);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.header-search button:hover,
.primary-btn:hover,
.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(200, 121, 65, 0.28);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--toffee-primary);
    border: 1px solid rgba(200, 121, 65, 0.28);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.68);
    transition: all 0.24s ease;
}

.secondary-btn:hover {
    color: #fff;
    background: var(--toffee-primary);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--toffee-cream);
    padding: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--toffee-primary);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
}

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

.mobile-nav form {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    background: var(--toffee-cream);
}

.mobile-nav input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
}

.mobile-nav button {
    padding: 10px 16px;
    color: #fff;
    border-radius: 12px;
    background: var(--toffee-primary);
}

main {
    overflow: hidden;
}

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

.hero-section {
    position: relative;
    margin: 0 0 76px;
    padding: 46px 0 10px;
}

.hero-orb {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb::before,
.hero-orb::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: 0.68;
    animation: floatCloud 7s ease-in-out infinite;
}

.hero-orb::before {
    width: 230px;
    height: 230px;
    top: 24px;
    left: 8%;
    background: rgba(229, 167, 107, 0.24);
}

.hero-orb::after {
    width: 300px;
    height: 300px;
    right: 7%;
    bottom: 0;
    background: rgba(200, 121, 65, 0.13);
    animation-delay: 1.8s;
}

.hero-carousel {
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 560px;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 38px;
    align-items: center;
    padding: clamp(24px, 4vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 240, 0.68)),
        linear-gradient(90deg, rgba(200, 121, 65, 0.10), rgba(229, 167, 107, 0.10));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-slide.active {
    display: grid;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.eyebrow {
    margin: 0 0 10px;
    color: var(--toffee-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    margin: 12px 0 0;
    color: var(--toffee-dark);
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.18;
}

.hero-copy p {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
}

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

.hero-meta span,
.detail-meta span,
.info-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    color: var(--toffee-dark);
    border-radius: 999px;
    background: rgba(245, 230, 211, 0.72);
    border: 1px solid rgba(200, 121, 65, 0.12);
    font-size: 14px;
    font-weight: 700;
}

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

.hero-visual {
    position: relative;
    min-height: 450px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 26px -16px -18px 34px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(200, 121, 65, 0.24), rgba(229, 167, 107, 0.16));
    transform: rotate(3deg);
}

.hero-visual img {
    position: relative;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 28px 60px rgba(107, 68, 35, 0.24);
}

.hero-card-note {
    position: absolute;
    right: -4px;
    bottom: 22px;
    width: min(320px, 84%);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(12px);
}

.hero-card-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 18px;
}

.hero-card-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(139, 90, 60, 0.24);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot.active {
    width: 44px;
    background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
}

.section-block {
    margin-bottom: 76px;
}

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

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

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

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

.category-card {
    position: relative;
    min-height: 160px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -35px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: rgba(229, 167, 107, 0.20);
}

.category-card:hover,
.movie-card:hover,
.toffee-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(107, 68, 35, 0.16);
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 22px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--toffee-light), var(--toffee-cream));
}

.movie-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-poster {
    transform: scale(1.05);
}

.movie-year,
.movie-heat {
    position: absolute;
    top: 12px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(51, 33, 21, 0.62);
    backdrop-filter: blur(10px);
}

.movie-year {
    left: 12px;
}

.movie-heat {
    right: 12px;
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.movie-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.28;
}

.movie-card h3 a:hover,
.rank-info a:hover,
.footer-links a:hover,
.breadcrumb a:hover {
    color: var(--toffee-primary);
}

.movie-desc {
    display: -webkit-box;
    min-height: 70px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mini-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: auto 0 16px;
}

.mini-tags span,
.detail-tags a,
.search-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--toffee-dark);
    background: rgba(245, 230, 211, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.detail-tags a:hover,
.search-tag:hover {
    color: #fff;
    background: var(--toffee-primary);
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 9px 15px;
    font-size: 14px;
}

.list-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 26px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 70px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(107, 68, 35, 0.08);
}

.rank-number {
    color: var(--toffee-primary);
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

.rank-cover img {
    width: 70px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-info a {
    display: block;
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
}

.rank-info p,
.rank-heat {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.rank-heat {
    margin: 0;
    font-weight: 800;
}

.toffee-panel,
.content-card {
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(12px);
}

.toffee-panel {
    padding: clamp(22px, 4vw, 42px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-title {
    padding: 56px 0 32px;
}

.filter-toolbar,
.search-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 0 0 24px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(107, 68, 35, 0.07);
}

.filter-toolbar input,
.filter-toolbar select,
.search-panel input {
    min-height: 46px;
    border-radius: 16px;
    padding: 0 14px;
    border: 1px solid rgba(200, 121, 65, 0.16);
}

.filter-toolbar input,
.search-panel input {
    flex: 1 1 260px;
}

.filter-toolbar select {
    flex: 0 0 170px;
}

.search-panel button {
    min-height: 46px;
}

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

.detail-main,
.detail-side {
    display: grid;
    gap: 22px;
    align-content: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000;
    box-shadow: 0 30px 70px rgba(51, 33, 21, 0.25);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.54));
}

.player-cover.hidden {
    display: none;
}

.play-ring {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--toffee-primary);
    font-size: 34px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.play-copy {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(51, 33, 21, 0.62);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.player-message {
    position: absolute;
    left: 50%;
    bottom: 20px;
    display: none;
    transform: translateX(-50%);
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    background: rgba(51, 33, 21, 0.72);
    font-size: 14px;
}

.player-message.show {
    display: inline-flex;
}

.content-card {
    padding: clamp(20px, 3vw, 30px);
}

.detail-title h1 {
    margin-bottom: 14px;
}

.detail-title p,
.content-card p {
    color: var(--muted);
}

.content-card h2,
.detail-side h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 22px;
}

.content-card p {
    margin: 0;
    white-space: pre-line;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.info-row dt {
    color: var(--muted);
}

.info-row dd {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
    text-align: right;
}

.side-recommend {
    display: grid;
    gap: 12px;
}

.side-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(200, 121, 65, 0.10);
    border-radius: 16px;
    background: rgba(255, 248, 240, 0.68);
}

.side-card img {
    width: 78px;
    height: 98px;
    object-fit: cover;
    border-radius: 12px;
}

.side-card strong {
    display: block;
    color: var(--ink);
    line-height: 1.32;
}

.side-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb span::before {
    content: "/";
    margin-right: 8px;
    color: rgba(139, 90, 60, 0.38);
}

.site-footer {
    margin-top: 40px;
    padding: 52px 0 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 230, 211, 0.72));
    border-top: 1px solid rgba(200, 121, 65, 0.12);
}

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

.footer-brand {
    margin-bottom: 14px;
    font-size: 24px;
}

.site-footer p {
    max-width: 460px;
    margin: 0;
    color: var(--muted);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    color: var(--muted);
    border-top: 1px solid rgba(200, 121, 65, 0.14);
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    display: none;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
    box-shadow: var(--soft-shadow);
    cursor: pointer;
}

.back-to-top.show {
    display: grid;
    place-items: center;
}

.empty-state {
    display: none;
    padding: 34px;
    text-align: center;
    color: var(--muted);
}

.empty-state.show {
    display: block;
}

@keyframes floatCloud {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

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

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

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

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

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

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

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

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

    .hero-visual,
    .hero-visual img {
        min-height: 320px;
        height: 320px;
    }

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

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

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

@media (max-width: 560px) {
    .header-inner,
    .page-shell,
    .section-shell,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

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

    .hero-section {
        padding-top: 24px;
        margin-bottom: 46px;
    }

    .hero-slide {
        padding: 20px;
        border-radius: 24px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-copy h2 {
        font-size: 26px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

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

    .rank-item {
        grid-template-columns: 42px 58px 1fr;
    }

    .rank-cover img {
        width: 58px;
        height: 78px;
    }

    .rank-heat {
        display: none;
    }

    .filter-toolbar select {
        flex: 1 1 100%;
    }
}
