* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: #111827;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img,
video {
    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.95);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.1);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
}

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-weight: 900;
    border-radius: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #db2777 100%);
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.28);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 20px;
    color: #111827;
}

.logo-text small {
    color: #6b7280;
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: #374151;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background: #f3f4f6;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #374151;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #374151;
    background: #f9fafb;
    font-weight: 600;
}

.mobile-link.active,
.mobile-link:hover {
    color: #dc2626;
    background: #fff1f2;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 540px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.56) 52%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 110px;
    width: min(680px, calc(100% - 48px));
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-tags span,
.hero-tags a,
.detail-tags span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: #ffffff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 700;
}

.hero-tags span:first-child {
    background: #dc2626;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.hero p {
    max-width: 620px;
    margin: 0 0 28px;
    color: #e5e7eb;
    font-size: 19px;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-btn,
.ghost-btn,
.search-page-form button,
.hero-search button,
.back-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn,
.search-page-form button,
.hero-search button,
.back-top {
    color: #ffffff;
    background: linear-gradient(90deg, #dc2626 0%, #db2777 100%);
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.24);
}

.primary-btn:hover,
.search-page-form button:hover,
.hero-search button:hover,
.back-top:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.32);
}

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

.ghost-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.34);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.active {
    width: 36px;
    background: #ffffff;
}

.hero-search {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 104px;
    z-index: 5;
    display: flex;
    width: min(430px, calc(100% - 48px));
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 0 12px;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.76);
}

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

.page-top {
    padding-top: 36px;
}

.intro-panel,
.white-panel,
.detail-content {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.intro-panel {
    margin-bottom: 44px;
    padding: clamp(28px, 4vw, 48px);
}

.intro-panel h1 {
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    font-weight: 900;
}

.intro-panel p {
    max-width: 920px;
    margin: 0;
    color: #4b5563;
    font-size: 17px;
}

.content-section {
    margin-bottom: 54px;
}

.white-panel {
    padding: clamp(22px, 3vw, 36px);
}

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

.section-heading h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.18;
    font-weight: 900;
}

.section-heading p {
    margin: 0;
    color: #6b7280;
}

.section-more,
.text-link {
    color: #dc2626;
    font-weight: 800;
    white-space: nowrap;
}

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

.movie-card {
    display: block;
    min-width: 0;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: #e5e7eb;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
}

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

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 52%);
    opacity: 0.72;
}

.poster-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.poster-badges span {
    padding: 4px 8px;
    color: #ffffff;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 800;
}

.poster-badges span:first-child {
    background: #dc2626;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #dc2626 0%, #db2777 100%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
    padding: 12px 2px 0;
}

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 6px;
    overflow: hidden;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.25s ease;
}

.movie-card:hover h3 {
    color: #dc2626;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 40px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #6b7280;
    font-size: 12px;
}

.movie-meta span {
    max-width: 100%;
    overflow: hidden;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f3f4f6;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.category-tile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 148px;
    padding: 22px;
    border: 1px solid #fee2e2;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fff1f2 100%);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(220, 38, 38, 0.14);
}

.category-tile strong {
    color: #111827;
    font-size: 20px;
    font-weight: 900;
}

.category-tile span {
    color: #6b7280;
    font-size: 14px;
}

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

.rank-card {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 94px;
    padding: 10px;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-card:hover,
.ranking-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.12);
}

.rank-card img {
    width: 72px;
    height: 94px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-card h3 {
    margin: 0 0 6px;
    overflow: hidden;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-card p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

.rank-number {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #dc2626 0%, #db2777 100%);
    font-size: 12px;
    font-weight: 900;
}

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

.category-card-large {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.category-cover-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
    background: #111827;
}

.category-cover-row img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.category-card-content {
    padding: 24px;
}

.category-card-content h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 900;
}

.category-card-content p {
    margin: 0 0 16px;
    color: #6b7280;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #6b7280;
    font-size: 14px;
}

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

.category-hero-panel {
    background: linear-gradient(135deg, #ffffff 0%, #fff1f2 100%);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 160px 160px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

.filter-panel input,
.filter-panel select,
.search-page-form input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    outline: 0;
    background: #ffffff;
    color: #111827;
    padding: 0 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-page-form input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.empty-state {
    display: none;
    padding: 36px;
    color: #6b7280;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    font-weight: 700;
}

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 46px 72px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #dc2626 0%, #db2777 100%);
    font-weight: 900;
}

.ranking-row img {
    width: 72px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-info {
    min-width: 0;
}

.ranking-info strong {
    display: block;
    overflow: hidden;
    color: #111827;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-info em {
    display: -webkit-box;
    overflow: hidden;
    color: #6b7280;
    font-style: normal;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ranking-meta {
    color: #6b7280;
    font-size: 14px;
    white-space: nowrap;
}

.search-panel {
    background: linear-gradient(135deg, #ffffff 0%, #fff1f2 100%);
}

.search-page-form {
    display: flex;
    gap: 12px;
    max-width: 720px;
    margin-top: 24px;
}

.detail-page {
    padding-bottom: 24px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    margin-bottom: 36px;
    padding: clamp(22px, 4vw, 44px);
    border-radius: 28px;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.36), transparent 30%), linear-gradient(135deg, #111827 0%, #1f2937 58%, #7f1d1d 100%);
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.2);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 900;
}

.detail-one-line {
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: 18px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    color: #f3f4f6;
}

.detail-meta span,
.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

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

.tag {
    color: #ffffff;
    font-size: 13px;
}

.player-section {
    margin-bottom: 36px;
}

.player-section h2 {
    margin: 0 0 16px;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding-left: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dc2626 0%, #db2777 100%);
    box-shadow: 0 16px 38px rgba(220, 38, 38, 0.38);
    font-size: 34px;
}

.player-overlay strong {
    max-width: 80%;
    overflow: hidden;
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-content {
    margin-bottom: 44px;
    padding: clamp(24px, 4vw, 44px);
}

.detail-content h2 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 900;
}

.detail-content h2:not(:first-child) {
    margin-top: 28px;
}

.detail-content p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong {
    color: #ffffff;
}

.footer-brand p {
    margin: 4px 0 0;
    color: #9ca3af;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a:hover {
    color: #ffffff;
}

.back-top {
    min-height: 40px;
    padding: 0 16px;
}

@media (max-width: 1180px) {
    .movie-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .desktop-nav {
        gap: 14px;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .hero-search {
        left: 24px;
        right: auto;
        bottom: 34px;
    }

    .hero-content {
        bottom: 118px;
    }

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

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

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

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

    .detail-hero {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .header-inner {
        width: min(100% - 24px, 1280px);
    }

    .logo-text small {
        display: none;
    }

    .hero {
        height: 72vh;
        min-height: 560px;
    }

    .hero-content {
        left: 18px;
        bottom: 142px;
        width: calc(100% - 36px);
    }

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

    .hero-arrow {
        display: none;
    }

    .hero-search {
        left: 18px;
        width: calc(100% - 36px);
    }

    .page-shell {
        width: min(100% - 24px, 1280px);
        padding: 32px 0;
    }

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

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

    .category-grid,
    .filter-panel,
    .search-page-form {
        grid-template-columns: 1fr;
    }

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

    .ranking-row {
        grid-template-columns: 34px 60px minmax(0, 1fr);
    }

    .ranking-row img {
        width: 60px;
        height: 80px;
    }

    .ranking-meta {
        display: none;
    }

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

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

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        width: min(100% - 24px, 1280px);
    }
}
