:root {
    --red-950: #3b0707;
    --red-900: #681313;
    --red-800: #8b1d1d;
    --red-700: #b42323;
    --red-600: #dc2626;
    --amber-900: #7c3f0d;
    --amber-700: #b45309;
    --amber-500: #f59e0b;
    --amber-100: #fef3c7;
    --paper: #fffaf0;
    --surface: #ffffff;
    --ink: #171717;
    --muted: #666666;
    --line: rgba(139, 29, 29, 0.16);
    --shadow: 0 24px 60px rgba(88, 24, 24, 0.14);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 36%, #fff7ed 100%);
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(254, 242, 242, 0.96), rgba(255, 251, 235, 0.96));
    border-bottom: 4px solid var(--red-800);
    box-shadow: 0 14px 30px rgba(92, 20, 20, 0.12);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark,
.footer-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red-700), var(--amber-700));
    box-shadow: 0 12px 26px rgba(180, 35, 35, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 24px;
    background: linear-gradient(90deg, var(--red-800), var(--amber-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: #705f55;
    font-size: 12px;
    margin-top: 5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: #4b3434;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #fee2e2;
    color: var(--red-800);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    border: 1px solid rgba(139, 29, 29, 0.16);
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--red-800);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid rgba(139, 29, 29, 0.12);
}

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

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(120deg, var(--red-950), var(--red-800) 52%, var(--amber-900));
}

.hero-carousel::before,
.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.28) 51px), radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 26%), radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.34), transparent 22%);
    pointer-events: none;
}

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

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

.hero-backdrop,
.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.26;
    filter: saturate(1.1);
}

.hero-backdrop::after,
.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 7, 7, 0.96), rgba(104, 19, 19, 0.68), rgba(124, 63, 13, 0.88));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.62fr);
    gap: 48px;
    align-items: center;
    padding: 58px 0 82px;
}

.hero-label,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.95);
    color: #fff7ed;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-heading h1 {
    margin: 20px 0 16px;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-heading p {
    max-width: 760px;
    margin: 0 0 22px;
    color: #fee2e2;
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff7ed;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 18px;
}

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

.primary-btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--red-600), var(--amber-500));
    box-shadow: 0 18px 38px rgba(220, 38, 38, 0.34);
}

.secondary-btn {
    color: #fff7ed;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(68, 18, 18, 0.18);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(245, 158, 11, 0.16));
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 54%);
    pointer-events: none;
}

.hero-poster img,
.poster-link img,
.rank-thumb img,
.poster-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-missing {
    opacity: 0;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.hero-prev,
.hero-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: inline-flex;
    gap: 8px;
}

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

.hero-dot.active {
    width: 28px;
    border-radius: 99px;
    background: #fbbf24;
}

.search-box {
    display: flex;
    width: min(620px, 100%);
    padding: 7px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 48px rgba(66, 19, 19, 0.18);
}

.search-box input {
    flex: 1;
    border: 0;
    outline: 0;
    min-width: 0;
    padding: 0 16px;
    color: #3b2424;
    background: transparent;
}

.search-box button {
    border: 0;
    border-radius: 13px;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(90deg, var(--red-600), var(--amber-500));
    cursor: pointer;
}

.content-section {
    padding: 74px 0;
}

.warm-section {
    background: linear-gradient(90deg, rgba(254, 242, 242, 0.88), rgba(255, 251, 235, 0.92));
}

.light-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

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

.section-heading h2 {
    margin: 10px 0 6px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
}

.section-heading i {
    display: block;
    height: 4px;
    flex: 1;
    min-width: 110px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red-600), transparent);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(88, 24, 24, 0.09);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.42);
    box-shadow: 0 28px 62px rgba(88, 24, 24, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #7f1d1d, #f59e0b);
}

.movie-card.featured .poster-link {
    aspect-ratio: 4 / 3;
}

.poster-link img {
    transition: transform 0.45s ease;
}

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

.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--red-600);
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.32);
}

.card-body {
    padding: 18px;
}

.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
    color: #211515;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.movie-card:hover .card-title {
    color: var(--red-700);
}

.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
    color: #7c6262;
    font-size: 13px;
}

.card-meta span {
    padding: 2px 8px;
    border-radius: 999px;
    background: #fff7ed;
}

.card-body p {
    min-height: 46px;
    margin: 0 0 14px;
    color: #5f5252;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body .tag-row span,
.full-tags span {
    color: var(--red-800);
    background: #fee2e2;
    border-color: rgba(220, 38, 38, 0.16);
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 48px 86px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 32px rgba(88, 24, 24, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(88, 24, 24, 0.14);
}

.rank-no {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red-600), var(--amber-500));
}

.rank-thumb {
    display: block;
    width: 86px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #7f1d1d, #f59e0b);
}

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

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

.rank-info strong {
    color: #241414;
    font-size: 16px;
}

.rank-info em {
    color: var(--red-700);
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
}

.rank-info small {
    color: #6b5b5b;
}

.section-more {
    margin-top: 28px;
    text-align: center;
}

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

.category-tile,
.category-card {
    min-height: 168px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #fff7ed);
    border: 1px solid var(--line);
    box-shadow: 0 16px 38px rgba(88, 24, 24, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 58px rgba(88, 24, 24, 0.16);
}

.category-tile span,
.category-card-main span {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--red-600);
    font-size: 12px;
    font-weight: 900;
}

.category-tile strong {
    display: block;
    margin-top: 16px;
    color: #4b2727;
    font-size: 14px;
    line-height: 1.7;
}

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

.category-card {
    display: grid;
    gap: 18px;
}

.category-card-main h2 {
    margin: 14px 0 8px;
    color: #241414;
    font-size: 28px;
}

.category-card-main p {
    margin: 0;
    color: #6f5555;
}

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

.category-samples a {
    padding: 7px 10px;
    border-radius: 999px;
    background: #fee2e2;
    color: var(--red-800);
    font-size: 13px;
    font-weight: 800;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(120deg, var(--red-950), var(--red-800) 58%, var(--amber-900));
}

.small-hero .container {
    position: relative;
    z-index: 2;
    padding: 76px 0;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #fed7aa;
    font-size: 14px;
    font-weight: 800;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 12px;
    padding: 16px;
    margin-bottom: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(88, 24, 24, 0.08);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(139, 29, 29, 0.16);
    border-radius: 14px;
    padding: 0 14px;
    color: #3b2424;
    background: #fffaf0;
    outline: 0;
}

.empty-state {
    display: none;
    padding: 34px;
    margin-top: 20px;
    text-align: center;
    color: #7c3f0d;
    border-radius: 20px;
    background: #fffbeb;
    border: 1px solid rgba(245, 158, 11, 0.22);
    font-weight: 900;
}

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

.detail-hero {
    min-height: 410px;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 70px 0 82px;
}

.detail-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.detail-heading h1 {
    max-width: 860px;
}

.detail-section {
    padding: 0 0 34px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
    margin-top: -54px;
    position: relative;
    z-index: 5;
}

.player-card,
.detail-card,
.side-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

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

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at 50% 42%, rgba(220, 38, 38, 0.36), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-cover span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-600), var(--amber-500));
    box-shadow: 0 18px 42px rgba(220, 38, 38, 0.36);
    font-size: 30px;
    padding-left: 5px;
}

.play-cover strong {
    font-size: 20px;
}

.video-shell.playing .play-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.detail-card h2,
.side-card h2 {
    margin: 0 0 14px;
    color: #241414;
    font-size: 26px;
}

.detail-card p {
    margin: 0 0 26px;
    color: #493636;
    font-size: 17px;
}

.full-tags {
    margin-bottom: 24px;
}

.poster-side {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #7f1d1d, #f59e0b);
}

.side-card:not(.poster-side) {
    padding: 24px;
    margin-top: 22px;
}

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

.meta-list div {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(139, 29, 29, 0.18);
}

.meta-list dt {
    color: #8a6b6b;
    font-weight: 800;
}

.meta-list dd {
    margin: 0;
    color: #2d1818;
    font-weight: 900;
}

.meta-list a {
    color: var(--red-700);
}

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

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #171717, #09090b);
    border-top: 4px solid var(--red-800);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-mark {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

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

.site-footer p {
    margin: 0;
    color: #94a3b8;
}

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

.site-footer a {
    color: #cbd5e1;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
}

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

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

    .mobile-nav .nav-link {
        display: block;
    }

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

    .hero-poster {
        max-width: 360px;
        margin: 0 auto;
    }

    .movie-grid,
    .featured-grid,
    .ranking-grid,
    .ranking-list-page,
    .category-grid,
    .category-overview-grid,
    .related-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-layout {
        margin-top: -34px;
    }

    .detail-side {
        display: grid;
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 20px;
    }

    .side-card:not(.poster-side) {
        margin-top: 0;
    }
}

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

    .header-inner {
        min-height: 68px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

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

    .hero-carousel,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        gap: 28px;
        padding-top: 44px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-heading h1 {
        font-size: 40px;
    }

    .search-box {
        display: grid;
        gap: 8px;
    }

    .search-box input {
        min-height: 44px;
    }

    .content-section {
        padding: 52px 0;
    }

    .section-heading {
        display: grid;
    }

    .section-heading i {
        width: 100%;
    }

    .movie-grid,
    .featured-grid,
    .ranking-grid,
    .ranking-list-page,
    .category-grid,
    .category-overview-grid,
    .related-grid,
    .footer-grid,
    .detail-side {
        grid-template-columns: 1fr;
    }

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

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

    .rank-thumb {
        width: 76px;
        height: 64px;
    }

    .detail-heading {
        display: grid;
    }

    .detail-card {
        padding: 22px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
    }
}
