:root {
    --bg-start: #fff7ed;
    --bg-end: #fffbeb;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(251, 146, 60, 0.26);
    --card: rgba(255, 255, 255, 0.92);
    --card-strong: #ffffff;
    --orange: #ea580c;
    --orange-dark: #c2410c;
    --amber: #f59e0b;
    --red: #ef4444;
    --shadow: 0 18px 48px rgba(154, 52, 18, 0.14);
    --shadow-soft: 0 10px 30px rgba(154, 52, 18, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(251, 146, 60, 0.22);
    box-shadow: 0 8px 28px rgba(154, 52, 18, 0.08);
    backdrop-filter: blur(18px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fbbf24, #f97316 52%, #ef4444);
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.30);
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #d97706, #ea580c, #c2410c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
    color: #374151;
}

.nav-link,
.drop-button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.drop-button:hover,
.nav-link.is-active {
    color: var(--orange);
}

.drop {
    position: relative;
}

.drop-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: 180px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.22);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.drop:hover .drop-menu,
.drop:focus-within .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-size: 0.95rem;
}

.drop-menu a:hover {
    color: var(--orange);
    background: #fff7ed;
}

.header-search {
    position: relative;
    width: min(280px, 24vw);
}

.header-search input,
.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid #fed7aa;
    outline: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    height: 40px;
    padding: 0 46px 0 16px;
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.header-search input:focus,
.filter-input:focus,
.filter-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.mobile-toggle {
    display: none;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff7ed;
    color: var(--orange-dark);
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 0 0 18px;
    border-top: 1px solid #fed7aa;
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel a {
    display: block;
    padding: 12px 2px;
    font-weight: 700;
    color: #4b5563;
}

.main {
    padding-bottom: 40px;
}

.hero {
    position: relative;
    overflow: hidden;
    margin: 28px auto 18px;
    min-height: 560px;
    color: #ffffff;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 12%, rgba(251, 191, 36, 0.48), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(239, 68, 68, 0.42), transparent 30%),
        linear-gradient(135deg, #78350f 0%, #c2410c 44%, #fb923c 100%);
    box-shadow: 0 28px 70px rgba(154, 52, 18, 0.26);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 25, 23, 0.55), rgba(28, 25, 23, 0.10)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 82px);
    pointer-events: none;
}

.hero-slide {
    position: relative;
    z-index: 1;
    display: none;
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
    min-height: 560px;
    gap: 40px;
    align-items: center;
    padding: 70px min(7vw, 76px);
}

.hero-slide.is-active {
    display: grid;
    animation: heroFade 0.55s ease both;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.hero h1 {
    margin: 22px 0 16px;
    font-size: clamp(2.5rem, 5.6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.08em;
}

.hero-desc {
    max-width: 690px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-tags,
.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-tags span,
.badge,
.movie-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-tags span {
    padding: 7px 12px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
    color: #7c2d12;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.22);
}

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

.button-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.button-warm {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.25);
}

.hero-poster-wrap {
    position: relative;
    justify-self: center;
    width: min(360px, 100%);
}

.hero-poster-wrap::before {
    content: "";
    position: absolute;
    inset: 36px -28px -28px 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.20);
    transform: rotate(5deg);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.22);
    border-radius: 34px;
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(28, 25, 23, 0.30);
}

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

.hero-poster-meta {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 20px;
    color: #ffffff;
    background: rgba(28, 25, 23, 0.62);
    backdrop-filter: blur(14px);
}

.hero-poster-meta strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.12rem;
}

.hero-controls {
    position: absolute;
    z-index: 2;
    left: min(7vw, 76px);
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    opacity: 0.56;
}

.hero-dot.is-active {
    width: 34px;
    opacity: 1;
    border-radius: 999px;
    background: #ffffff;
}

.section {
    padding: 42px 0;
}

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

.section-kicker {
    margin: 0 0 8px;
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.section-title {
    margin: 0;
    color: #111827;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    letter-spacing: -0.05em;
}

.section-desc {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--card);
    border: 1px solid rgba(251, 146, 60, 0.20);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.44);
    box-shadow: var(--shadow);
}

.poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.20), rgba(239, 68, 68, 0.16));
}

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

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

.poster::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(28, 25, 23, 0.78));
}

.play-chip {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.28);
}

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

.card-title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.38;
}

.card-text {
    flex: 1;
    margin: 0 0 14px;
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.94rem;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #78716c;
    font-size: 0.86rem;
}

.badge {
    padding: 5px 9px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 0.78rem;
}

.movie-tag {
    padding: 5px 9px;
    color: #b45309;
    background: #fef3c7;
    font-size: 0.78rem;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 22px;
    border-radius: 24px;
    color: #7c2d12;
    background:
        radial-gradient(circle at 84% 16%, rgba(249, 115, 22, 0.26), transparent 34%),
        linear-gradient(135deg, #ffffff, #fffbeb);
    border: 1px solid rgba(251, 146, 60, 0.22);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 1.25rem;
}

.category-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.rank-panel {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(254, 243, 199, 0.88));
    border-top: 1px solid rgba(251, 146, 60, 0.16);
    border-bottom: 1px solid rgba(251, 146, 60, 0.16);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 56px 118px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-no {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    box-shadow: 0 12px 22px rgba(239, 68, 68, 0.24);
}

.rank-thumb {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: #ffedd5;
}

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

.rank-info h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.rank-info p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.page-hero {
    margin: 30px auto 12px;
    padding: 48px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #92400e, #ea580c 60%, #f59e0b);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 840px;
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.8;
    font-size: 1.05rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 14px;
    padding: 18px;
    margin: 26px 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(251, 146, 60, 0.20);
    box-shadow: var(--shadow-soft);
}

.filter-input,
.filter-select {
    min-height: 44px;
    padding: 0 16px;
    font-size: 1rem;
}

.empty-message {
    display: none;
    padding: 28px;
    border-radius: 24px;
    color: #9a3412;
    background: #ffedd5;
    font-weight: 800;
    text-align: center;
}

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

.breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 28px 0 16px;
    color: #7c2d12;
    font-size: 0.95rem;
    font-weight: 700;
}

.breadcrumb a:hover {
    color: var(--orange);
}

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

.detail-card,
.side-card {
    border-radius: 28px;
    background: var(--card-strong);
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: var(--shadow-soft);
}

.detail-card {
    overflow: hidden;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: #000000;
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.28), rgba(28, 25, 23, 0.72));
    z-index: 2;
}

.play-layer.is-hidden {
    display: none;
}

.play-layer-inner {
    text-align: center;
}

.big-play {
    width: 84px;
    height: 84px;
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 18px 34px rgba(239, 68, 68, 0.32);
    font-size: 2.2rem;
}

.play-layer strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.3rem;
}

.play-layer span {
    color: rgba(255, 255, 255, 0.80);
}

.detail-content {
    padding: 28px;
}

.detail-title {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.detail-lead {
    margin: 0 0 22px;
    color: #4b5563;
    line-height: 1.9;
    font-size: 1.08rem;
}

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

.info-item {
    padding: 12px;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.info-item span {
    display: block;
    color: #9a3412;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.info-item strong {
    color: #1f2937;
    font-size: 0.95rem;
}

.article-block {
    margin-top: 24px;
}

.article-block h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 1.45rem;
}

.article-block p {
    margin: 0;
    color: #4b5563;
    line-height: 2;
}

.side-card {
    overflow: hidden;
    padding: 18px;
}

.side-poster {
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 3 / 4;
    background: #ffedd5;
}

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

.side-card h2,
.related-section h2 {
    margin: 18px 0 14px;
    color: #111827;
}

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

.related-link {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #fff7ed;
    transition: background 0.2s ease, transform 0.2s ease;
}

.related-link:hover {
    background: #ffedd5;
    transform: translateX(3px);
}

.related-link img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 14px;
}

.related-link strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
    line-height: 1.35;
}

.related-link span {
    color: #78716c;
    font-size: 0.86rem;
}

.site-footer {
    margin-top: 60px;
    color: #ffedd5;
    background: linear-gradient(180deg, #78350f, #431407);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 46px 0;
}

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

.footer-grid p,
.footer-grid a {
    color: #fed7aa;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(254, 215, 170, 0.20);
    color: #fdba74;
    font-size: 0.92rem;
}

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .side-card {
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 18px;
    }
}

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

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

    .header-inner {
        height: 64px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .hero,
    .page-hero {
        border-radius: 24px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 42px 22px 92px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 12vw, 4.4rem);
    }

    .hero-poster-wrap {
        width: min(280px, 86%);
    }

    .hero-controls {
        left: 22px;
        bottom: 24px;
    }

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

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

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

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

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

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

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

    .rank-item {
        grid-template-columns: 46px 88px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .page-hero {
        padding: 32px 22px;
    }

    .detail-content {
        padding: 20px;
    }

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

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