:root {
    --color-primary: #f58b1f;
    --color-primary-dark: #e6751a;
    --color-accent: #ea5e21;
    --color-secondary: #22a36a;
    --color-bg: #fafafa;
    --color-surface: #ffffff;
    --color-text: #27272a;
    --color-muted: #71717a;
    --color-soft: #fef3e2;
    --color-line: #e4e4e7;
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 20px -2px rgba(0, 0, 0, 0.1), 0 15px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-hard: 0 22px 55px rgba(15, 23, 42, 0.22);
    --radius-xl: 18px;
    --radius-2xl: 26px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}

.brand:hover {
    color: var(--color-primary-dark);
}

.brand-icon {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(245, 139, 31, 0.26);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 650;
    color: #3f3f46;
}

.desktop-nav a:hover {
    color: var(--color-primary-dark);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.mobile-panel input,
.inline-filter input,
.search-page-form input,
.hero-search-card input {
    width: 260px;
    border: 1px solid #d4d4d8;
    border-radius: 999px;
    padding: 11px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus,
.mobile-panel input:focus,
.inline-filter input:focus,
.search-page-form input:focus,
.hero-search-card input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(245, 139, 31, 0.14);
}

.top-search button,
.search-page-form button,
.hero-search-card button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.top-search button:hover,
.search-page-form button:hover,
.hero-search-card button:hover {
    background: var(--color-primary-dark);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    color: var(--color-text);
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--color-line);
    background: #ffffff;
    padding: 16px;
}

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

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #18181b;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 38%, rgba(245, 139, 31, 0.26), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.22)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 52px;
    color: #ffffff;
}

.hero-text {
    max-width: 760px;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    background: rgba(245, 139, 31, 0.95);
    color: #ffffff;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 680px;
    color: #f4f4f5;
    font-size: 18px;
}

.hero-meta,
.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #d4d4d8;
    font-size: 14px;
}

.hero-meta span,
.meta-row span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 5px 10px;
}

.hero-chips span {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

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

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

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(234, 94, 33, 0.24);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
}

.hero-poster {
    display: block;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-hard);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

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

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

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

.search-panel-section {
    margin-top: -34px;
    position: relative;
    z-index: 8;
}

.hero-search-card {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(280px, 540px);
    gap: 24px;
    align-items: center;
    padding: 26px;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-medium);
}

.hero-search-card span {
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.hero-search-card strong {
    display: block;
    font-size: 20px;
}

.hero-search-card label,
.search-page-form {
    display: flex;
    gap: 10px;
}

.hero-search-card input,
.search-page-form input {
    width: 100%;
}

.page-section {
    padding: 64px 0;
}

.section-title {
    margin-bottom: 26px;
}

.section-title h2 {
    margin: 10px 0 6px;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.18;
}

.section-title p {
    margin: 0;
    color: var(--color-muted);
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #27272a, #52525b);
}

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

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

.duration-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
}

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

.movie-card h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

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

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

.movie-card .meta-row {
    color: var(--color-muted);
}

.movie-card .meta-row span {
    background: #f4f4f5;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.chip-row span {
    border-radius: 999px;
    background: var(--color-soft);
    color: #b45309;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.category-strip {
    border-radius: 34px;
    background: linear-gradient(135deg, #f0f9f4, var(--color-soft));
    padding-inline: 26px;
}

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

.category-card {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

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

.category-card span,
.category-card strong,
.category-card em {
    position: relative;
    display: block;
    color: #ffffff;
    padding-inline: 18px;
}

.category-card span {
    margin-top: 82px;
    font-size: 22px;
    font-weight: 800;
}

.category-card strong {
    color: #fed7aa;
}

.category-card em {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 13px;
    font-style: normal;
    opacity: 0.92;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.ranking-card,
.side-card,
.content-card,
.player-card,
.prose-card,
.category-overview-card {
    border-radius: var(--radius-2xl);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.ranking-card {
    align-self: start;
    position: sticky;
    top: 90px;
    padding: 24px;
}

.ranking-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ranking-head span {
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 800;
}

.ranking-head h2 {
    flex: 1;
    margin: 0;
}

.ranking-head a,
.text-link {
    color: var(--color-primary-dark);
    font-weight: 800;
}

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

.media-row {
    display: grid;
    grid-template-columns: auto 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-radius: 14px;
    padding: 8px;
    transition: background 0.2s ease;
}

.media-list--light .media-row {
    grid-template-columns: 82px minmax(0, 1fr);
}

.media-list--light .rank-number {
    display: none;
}

.media-row:hover {
    background: #f4f4f5;
}

.media-row img {
    width: 82px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
}

.media-row strong,
.media-row em {
    display: block;
}

.media-row strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.media-row em {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 12px;
    font-style: normal;
}

.rank-number {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #18181b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #ffffff;
    padding: 72px 0;
}

.page-hero--warm {
    background: linear-gradient(135deg, #f58b1f, #22a36a);
}

.page-hero--dark {
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 139, 31, 0.28), transparent 26%),
        linear-gradient(135deg, #18181b, #3f3f46);
}

.page-hero span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
}

.page-hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
}

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

.overview-grid {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    overflow: hidden;
}

.category-overview-cover {
    position: relative;
    min-height: 250px;
    background: #27272a;
}

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

.category-overview-cover span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    padding: 6px 12px;
    font-weight: 800;
}

.category-overview-body {
    padding: 26px;
}

.category-overview-body h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.category-overview-body p {
    color: var(--color-muted);
}

.filter-bar {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tabs a {
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 9px 15px;
    font-weight: 800;
}

.category-tabs a.is-active,
.category-tabs a:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.inline-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-muted);
    font-weight: 700;
}

.result-note {
    margin-bottom: 18px;
    color: var(--color-muted);
    font-weight: 700;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #18181b;
    color: #ffffff;
}

.detail-bg,
.detail-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.detail-bg {
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.04);
}

.detail-mask {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 40%);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    min-height: 620px;
    padding: 42px 0;
}

.breadcrumb {
    position: absolute;
    top: 24px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-hard);
}

.detail-poster img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
}

.detail-info p {
    max-width: 780px;
    color: #f4f4f5;
    font-size: 18px;
}

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

.detail-meta-grid span {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px;
}

.detail-meta-grid strong {
    display: block;
    color: #fed7aa;
    font-size: 12px;
}

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

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

.detail-side {
    position: sticky;
    top: 90px;
}

.player-card,
.content-card,
.side-card,
.prose-card {
    padding: 26px;
}

.player-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.player-title-row h2,
.content-card h2,
.side-card h2,
.prose-card h2 {
    margin: 0;
}

.player-title-row span {
    color: var(--color-primary-dark);
    font-weight: 800;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000000;
    aspect-ratio: 16 / 9;
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 10px;
    border: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.64));
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.video-start span {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    margin-inline: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 18px 35px rgba(234, 94, 33, 0.38);
}

.video-shell.is-playing .video-start {
    display: none;
}

.video-message {
    position: absolute;
    left: 16px;
    bottom: 14px;
    margin: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.68);
    color: rgba(255, 255, 255, 0.86);
    padding: 6px 12px;
    font-size: 12px;
}

.content-card p,
.prose-card p {
    color: #52525b;
    font-size: 16px;
    line-height: 1.85;
    white-space: pre-line;
}

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

.info-list div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 10px;
}

.info-list dt {
    color: var(--color-muted);
    font-weight: 800;
}

.info-list dd {
    margin: 0;
}

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

.ranking-row-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    border-radius: var(--radius-xl);
    background: #ffffff;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
}

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

.ranking-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 5px 10px;
    font-weight: 900;
}

.ranking-row-card h2 {
    margin: 0 0 8px;
}

.ranking-row-card p {
    color: var(--color-muted);
}

.search-page-form {
    max-width: 760px;
    margin-bottom: 18px;
}

.prose-card {
    max-width: 920px;
}

.site-footer {
    margin-top: 40px;
    background: #27272a;
    color: #d4d4d8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 48px 0;
}

.footer-brand {
    color: #ffffff;
}

.site-footer p {
    color: #a1a1aa;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

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

.footer-bottom {
    border-top: 1px solid #3f3f46;
    padding: 18px;
    color: #a1a1aa;
    text-align: center;
}

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

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

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

    .ranking-card,
    .detail-side {
        position: static;
    }

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

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
        padding-top: 26px;
    }

    .hero-poster {
        max-width: 230px;
        transform: none;
    }

    .hero-poster img {
        height: 290px;
    }

    .hero-search-card,
    .category-overview-card,
    .detail-hero-inner,
    .ranking-row-card {
        grid-template-columns: 1fr;
    }

    .hero-search-card label,
    .search-page-form {
        flex-direction: column;
    }

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

    .detail-hero-inner {
        padding-top: 82px;
    }

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

    .detail-poster img {
        height: 340px;
    }

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

    .breadcrumb {
        left: 16px;
        right: 16px;
    }

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

@media (max-width: 460px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .brand-text {
        font-size: 19px;
    }

    .page-section {
        padding: 44px 0;
    }

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

    .media-row,
    .media-list--light .media-row {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .rank-number {
        display: none;
    }
}
