:root {
    --bg: #fff7ed;
    --bg-soft: #fffbeb;
    --bg-warm: #fef3c7;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fde68a;
    --amber: #f59e0b;
    --amber-dark: #b45309;
    --gold: #eab308;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(120, 53, 15, 0.14);
    --shadow-soft: 0 12px 30px rgba(120, 53, 15, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 48%, #fefce8 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header:hover {
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.96));
    box-shadow: 0 12px 28px rgba(120, 53, 15, 0.12);
    backdrop-filter: blur(14px);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

.brand-text strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--amber-dark), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text small {
    display: block;
    margin-top: 5px;
    color: #92400e;
    font-size: 12px;
}

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

.nav-link {
    color: #78350f;
    font-weight: 700;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input {
    width: 210px;
    height: 42px;
    border-radius: 999px;
    border: 2px solid #fcd34d;
    background: rgba(255, 255, 255, 0.76);
    padding: 0 16px;
    color: var(--text);
    outline: none;
}

.header-search input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.header-search button,
.primary-btn,
.secondary-btn {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search button,
.primary-btn {
    color: #fff;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

.header-search button {
    height: 42px;
    padding: 0 18px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
}

.primary-btn.small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.secondary-btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0 24px;
    align-items: center;
    color: #78350f;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.secondary-btn:hover,
.header-search button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 34px rgba(245, 158, 11, 0.28);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid #fcd34d;
    background: rgba(255, 255, 255, 0.78);
    color: #78350f;
}

.mobile-panel {
    display: none;
    padding: 18px 24px 24px;
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.98), rgba(254, 243, 199, 0.98));
    border-top: 1px solid #fde68a;
    box-shadow: 0 20px 38px rgba(120, 53, 15, 0.12);
}

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

.mobile-panel a {
    font-weight: 800;
    color: #78350f;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid #fcd34d;
    padding: 10px 14px;
}

.mobile-panel button {
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    color: #fff;
    background: var(--amber);
}

.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.is-before {
    transform: translateX(-100%);
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.28), rgba(17, 24, 39, 0.55) 48%, rgba(0, 0, 0, 0.88));
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 72px;
    width: min(1180px, calc(100% - 48px));
    transform: translateX(-50%);
    color: #fff;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    font-size: 13px;
}

.hero-kicker {
    background: linear-gradient(90deg, var(--amber), var(--gold));
    color: #fff;
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.28);
}

.hero-content h1 {
    max-width: 900px;
    margin: 18px 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 760px;
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: 20px;
    line-height: 1.7;
}

.hero-meta,
.detail-meta,
.card-meta,
.rank-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta span,
.detail-meta span,
.card-meta span,
.rank-tags span {
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-weight: 700;
    font-size: 13px;
}

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

.inline-actions {
    margin-top: 24px;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 40px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

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

.page-main {
    padding-top: 124px;
}

.section-warm {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.56), rgba(255, 247, 237, 0.78));
}

.section-head {
    margin-bottom: 32px;
}

.section-head.center {
    text-align: center;
    display: grid;
    justify-items: center;
}

.section-head.split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.section-kicker {
    color: #92400e;
    background: #fef3c7;
}

.section-head h2,
.page-hero h1,
.detail-card h1 {
    margin: 12px 0 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, var(--amber-dark), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.section-head p,
.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.more-link {
    color: #b45309;
    font-weight: 900;
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #111827;
    isolation: isolate;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.5s ease;
}

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

.category-tile span,
.category-tile small {
    position: relative;
    display: block;
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
}

.category-tile span {
    margin-top: 116px;
    font-size: 24px;
    font-weight: 900;
}

.category-tile small {
    margin-top: 8px;
    color: #fde68a;
    line-height: 1.5;
}

.category-tile:hover img {
    transform: scale(1.08);
}

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

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

.movie-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(253, 230, 138, 0.78);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111827;
}

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

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

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

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

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

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

.duration-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    border-radius: 999px;
    padding: 5px 10px;
    color: #fff;
    background: rgba(245, 158, 11, 0.92);
    font-size: 12px;
    font-weight: 900;
}

.card-body {
    padding: 18px;
}

.card-title {
    display: -webkit-box;
    min-height: 56px;
    color: #1f2937;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-title:hover {
    color: var(--amber-dark);
}

.card-desc {
    display: -webkit-box;
    min-height: 44px;
    margin: 10px 0 14px;
    color: var(--muted);
    line-height: 1.6;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
}

.card-meta {
    color: #92400e;
    margin-bottom: 14px;
}

.card-meta span {
    background: #fffbeb;
}

.card-category {
    display: inline-flex;
    color: #b45309;
    font-size: 13px;
    font-weight: 900;
}

.page-hero {
    border-radius: 34px;
    padding: 72px;
    background: radial-gradient(circle at 10% 20%, rgba(250, 204, 21, 0.35), transparent 32%), linear-gradient(135deg, #fff7ed, #fef3c7);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.page-hero h1 {
    max-width: 900px;
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 220px 1fr;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #fde68a;
    box-shadow: var(--shadow-soft);
}

.category-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    min-height: 220px;
    background: #111827;
}

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

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

.category-card-body h2 {
    margin: 12px 0;
    font-size: 30px;
}

.category-card-body p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #fde68a;
    box-shadow: var(--shadow-soft);
}

.filter-search input,
.filter-selects select {
    width: 100%;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid #fcd34d;
    outline: none;
    background: #fff;
    color: var(--text);
    padding: 0 16px;
}

.filter-search input:focus,
.filter-selects select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.filter-selects {
    display: flex;
    gap: 12px;
}

.filter-selects select {
    min-width: 140px;
}

.empty-state {
    display: none;
    margin-top: 28px;
    padding: 28px;
    text-align: center;
    border-radius: 22px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    font-weight: 800;
}

.empty-state.is-visible {
    display: block;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 160px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #fde68a;
    box-shadow: var(--shadow-soft);
}

.rank-num {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    font-weight: 900;
}

.rank-poster {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    background: #111827;
}

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

.rank-title {
    color: #1f2937;
    font-size: 22px;
    font-weight: 900;
}

.rank-info p {
    margin: 8px 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.rank-tags {
    color: #92400e;
}

.rank-tags span {
    background: #fffbeb;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #92400e;
    margin-bottom: 24px;
    font-weight: 800;
}

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

.player-card,
.detail-card,
.side-card {
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #fde68a;
    box-shadow: var(--shadow-soft);
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #050505;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    font-weight: 900;
    font-size: 20px;
}

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

.player-circle {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.36);
    font-size: 34px;
}

.detail-card {
    margin-top: 24px;
    padding: 30px;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
}

.detail-card h1 {
    color: #1f2937;
    background: none;
    -webkit-background-clip: initial;
}

.score-pill {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #fff;
    background: linear-gradient(90deg, var(--amber), var(--gold));
}

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

.detail-meta {
    color: #92400e;
}

.detail-meta span {
    background: #fffbeb;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag-cloud span {
    border-radius: 999px;
    padding: 7px 12px;
    color: #b45309;
    background: #fef3c7;
    font-weight: 800;
    font-size: 13px;
}

.prose-card h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 24px;
}

.prose-card h2:not(:first-child) {
    margin-top: 26px;
}

.prose-card p {
    color: #4b5563;
    line-height: 2;
    font-size: 17px;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow);
    background: #111827;
}

.side-card {
    margin-top: 24px;
    padding: 24px;
}

.side-card h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

.side-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.side-card dt {
    color: #92400e;
    font-weight: 900;
}

.side-card dd {
    margin: -8px 0 4px;
    color: #4b5563;
}

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

.site-footer {
    color: #fef3c7;
    background: linear-gradient(180deg, #78350f, #451a03);
    margin-top: 40px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.site-footer h2,
.site-footer h3 {
    color: #fde68a;
    margin: 0 0 14px;
}

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

.site-footer a {
    display: block;
    color: #fffbeb;
    margin: 9px 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, 0.22);
    padding: 20px 24px;
    text-align: center;
    color: #fde68a;
}

.is-hidden-card {
    display: none !important;
}

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

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

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

    .detail-side {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .side-card {
        margin-top: 0;
    }
}

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .header-inner {
        min-height: 72px;
        padding: 0 18px;
    }

    .hero {
        height: 620px;
    }

    .hero-content {
        bottom: 68px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-control {
        display: none;
    }

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

    .page-main {
        padding-top: 96px;
    }

    .page-hero {
        padding: 42px 26px;
        border-radius: 26px;
    }

    .section-head.split {
        display: block;
    }

    .more-link {
        display: inline-flex;
        margin-top: 14px;
    }

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

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

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

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

    .rank-row {
        grid-template-columns: 48px 110px 1fr;
        gap: 12px;
    }

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

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

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

@media (max-width: 560px) {
    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        height: 560px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

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

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

    .rank-row {
        grid-template-columns: 44px 92px 1fr;
        padding: 12px;
    }

    .rank-title {
        font-size: 18px;
    }

    .rank-info p {
        display: none;
    }

    .detail-card {
        padding: 22px;
    }

    .detail-title-row {
        display: block;
    }

    .score-pill {
        display: inline-flex;
        margin-top: 14px;
    }
}
