:root {
    --primary-50: #fef7ee;
    --primary-100: #fdecd3;
    --primary-500: #f07315;
    --primary-600: #e1590b;
    --primary-700: #bb420b;
    --accent-50: #fdf8f3;
    --accent-500: #d9804f;
    --secondary-500: #0fcaaa;
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;
    --shadow: 0 18px 45px rgb(41 37 36 / 0.12);
    --soft-shadow: 0 12px 28px rgb(41 37 36 / 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--neutral-800);
    background: var(--neutral-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 14px rgb(41 37 36 / 0.08);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: 0 8px 18px rgb(240 115 21 / 0.25);
}

.brand-text {
    font-size: 21px;
    color: var(--neutral-800);
    white-space: nowrap;
}

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

.nav-link {
    color: var(--neutral-600);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.header-search {
    width: 230px;
    position: relative;
}

.header-search input,
.mobile-search input,
.wide-search input,
.page-filter input {
    width: 100%;
    border: 1px solid var(--neutral-200);
    border-radius: 14px;
    background: #fff;
    color: var(--neutral-800);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    height: 40px;
    padding: 0 14px 0 38px;
    font-size: 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.page-filter input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgb(240 115 21 / 0.14);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
}

.menu-button {
    display: none;
    border: 0;
    background: #fff;
    color: var(--neutral-700);
    font-size: 26px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--neutral-100);
    padding: 16px;
    background: #fff;
}

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

.mobile-nav {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-search {
    display: flex;
    gap: 10px;
}

.mobile-search input {
    height: 42px;
    padding: 0 12px;
}

.mobile-search button,
.wide-search button,
.search-page-form button {
    border: 0;
    border-radius: 14px;
    padding: 0 18px;
    color: #fff;
    font-weight: 800;
    background: var(--primary-600);
    cursor: pointer;
}

.hero-carousel {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500), var(--secondary-500));
}

.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-bg,
.hero-bg img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.04);
    transform: scale(1.04);
}

.hero-overlay {
    background: radial-gradient(circle at 72% 20%, rgb(15 202 170 / 0.34), transparent 26%), linear-gradient(90deg, rgb(187 66 11 / 0.94), rgb(217 128 79 / 0.82) 48%, rgb(41 37 36 / 0.54));
}

.hero-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(rgb(255 255 255 / 0.18) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 0.18) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-700);
    background: var(--primary-100);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
}

.hero-copy .eyebrow {
    color: #fff;
    background: rgb(255 255 255 / 0.16);
    backdrop-filter: blur(8px);
}

.hero-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy p {
    margin: 0 0 26px;
    max-width: 720px;
    color: rgb(255 255 255 / 0.92);
    font-size: 20px;
}

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

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #fff;
    background: rgb(255 255 255 / 0.16);
    border: 1px solid rgb(255 255 255 / 0.25);
}

.tag-row span {
    color: var(--primary-700);
    background: var(--primary-50);
}

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

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

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

.button.primary {
    color: var(--primary-700);
    background: #fff;
    box-shadow: 0 18px 35px rgb(41 37 36 / 0.18);
}

.button.ghost {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 0.38);
    background: rgb(255 255 255 / 0.12);
    backdrop-filter: blur(10px);
}

.button.ghost.dark {
    color: var(--primary-700);
    border-color: var(--primary-200);
    background: #fff;
}

.hero-poster {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgb(0 0 0 / 0.35);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.14);
    backdrop-filter: blur(12px);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 34px;
    height: 34px;
    color: #fff;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.15);
    font-size: 24px;
    line-height: 1;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 26px;
    background: #fff;
}

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

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

.section-heading.no-gap {
    margin-bottom: 18px;
}

.section-heading h2,
.search-strip h2,
.side-panel h2,
.content-panel h2,
.player-section h2,
.detail-side h2 {
    margin: 10px 0 0;
    color: var(--neutral-800);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.18;
}

.section-heading a,
.text-link {
    color: var(--primary-600);
    font-weight: 800;
}

.soft-section {
    background: #fff;
}

.warm-section {
    background: linear-gradient(135deg, var(--accent-50), var(--primary-50));
}

.search-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: center;
    gap: 28px;
}

.search-strip p,
.page-hero p,
.category-overview-card p,
.side-panel p,
.detail-copy p,
.content-panel p {
    color: var(--neutral-600);
}

.wide-search,
.page-filter {
    display: flex;
    gap: 12px;
}

.wide-search input,
.page-filter input {
    height: 52px;
    padding: 0 18px;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.score-badge,
.play-badge {
    position: absolute;
    color: #fff;
    font-weight: 900;
    background: rgb(0 0 0 / 0.7);
    backdrop-filter: blur(8px);
}

.score-badge {
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 13px;
}

.play-badge {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-600);
}

.card-body {
    padding: 16px;
}

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

.card-body h3 a:hover,
.rank-info h3 a:hover,
.category-overview-card h2 a:hover {
    color: var(--primary-600);
}

.card-body p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--neutral-600);
    font-size: 14px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--neutral-500);
    font-size: 13px;
    margin-bottom: 12px;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    box-shadow: var(--soft-shadow);
}

.category-card img,
.category-card span {
    position: absolute;
    inset: 0;
}

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

.category-card span {
    background: linear-gradient(180deg, transparent, rgb(0 0 0 / 0.82));
}

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

.category-card strong,
.category-card em {
    position: absolute;
    left: 16px;
    right: 16px;
    z-index: 2;
}

.category-card strong {
    bottom: 54px;
    font-size: 20px;
}

.category-card em {
    bottom: 16px;
    color: rgb(255 255 255 / 0.82);
    font-size: 13px;
    font-style: normal;
}

.split-layout,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.side-panel,
.detail-side,
.content-panel,
.player-section {
    border-radius: 24px;
    background: #fff;
    padding: 24px;
    box-shadow: var(--soft-shadow);
}

.side-panel {
    position: sticky;
    top: 92px;
}

.compact-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.compact-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 14px;
    background: var(--neutral-50);
    transition: background 0.2s ease, transform 0.2s ease;
}

.compact-item:hover {
    background: var(--primary-50);
    transform: translateX(3px);
}

.compact-item img {
    width: 62px;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
}

.compact-item span {
    overflow: hidden;
    color: var(--neutral-800);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-item strong {
    color: var(--primary-600);
}

.rank-list,
.movie-list {
    display: grid;
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 92px 48px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 18px;
    border-radius: 18px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--soft-shadow);
}

.small-rank .rank-item {
    grid-template-columns: 70px 38px minmax(0, 1fr) 58px;
}

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

.rank-number {
    color: var(--primary-600);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.rank-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.rank-info p {
    margin: 0 0 8px;
    color: var(--neutral-600);
    font-size: 14px;
}

.rank-score {
    color: var(--primary-600);
    font-size: 24px;
    font-weight: 900;
    text-align: right;
}

.page-hero {
    background: radial-gradient(circle at 80% 0%, rgb(15 202 170 / 0.18), transparent 32%), linear-gradient(135deg, var(--primary-50), var(--accent-50));
    padding: 76px 0;
}

.page-hero h1 {
    margin: 16px 0 12px;
    color: var(--neutral-800);
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    font-size: 18px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    border-radius: 24px;
    background: #fff;
    padding: 18px;
    box-shadow: var(--soft-shadow);
}

.category-thumb-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-thumb-row img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
}

.category-overview-card h2 {
    margin: 8px 0;
}

.category-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 40px;
    align-items: center;
}

.category-hero-posters {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.category-hero-posters a {
    width: 160px;
    margin-left: -42px;
    border: 6px solid #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(var(--tilt, 0deg));
}

.category-hero-posters a:nth-child(1) {
    --tilt: -8deg;
}

.category-hero-posters a:nth-child(2) {
    --tilt: 2deg;
}

.category-hero-posters a:nth-child(3) {
    --tilt: 8deg;
}

.category-hero-posters img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.filter-btn {
    border: 1px solid var(--primary-200);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--primary-700);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

.filter-btn.active {
    color: #fff;
    background: var(--primary-600);
    border-color: var(--primary-600);
}

.page-filter {
    max-width: 620px;
    margin-bottom: 24px;
}

.search-page-form {
    max-width: 720px;
    margin-top: 28px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--neutral-900);
}

.detail-bg,
.detail-bg img,
.detail-bg::after {
    position: absolute;
    inset: 0;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(6px) saturate(1.1);
    transform: scale(1.04);
}

.detail-bg::after {
    content: "";
    background: linear-gradient(90deg, rgb(28 25 23 / 0.98), rgb(28 25 23 / 0.68));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
    padding: 72px 0;
}

.detail-poster {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgb(0 0 0 / 0.36);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgb(255 255 255 / 0.78);
    font-size: 14px;
}

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

.detail-copy h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-copy p {
    color: rgb(255 255 255 / 0.86);
    font-size: 18px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.detail-meta span {
    border-radius: 999px;
    padding: 6px 12px;
    color: #fff;
    background: rgb(255 255 255 / 0.14);
}

.detail-tags span {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 0.22);
    background: rgb(255 255 255 / 0.12);
}

.detail-main {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.site-video,
.player-cover,
.player-cover img,
.player-cover-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.site-video {
    object-fit: contain;
    z-index: 1;
}

.player-cover {
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000;
}

.player-cover.hidden {
    display: none;
}

.player-cover img {
    object-fit: cover;
}

.player-cover-mask {
    background: linear-gradient(180deg, rgb(0 0 0 / 0.1), rgb(0 0 0 / 0.66));
}

.player-play {
    position: relative;
    z-index: 4;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--primary-600);
    font-size: 28px;
    box-shadow: 0 18px 35px rgb(0 0 0 / 0.24);
}

.content-panel p {
    margin: 12px 0 0;
    font-size: 17px;
}

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

.empty-state {
    display: none;
    margin-top: 24px;
    border-radius: 18px;
    padding: 24px;
    color: var(--neutral-600);
    text-align: center;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

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

.site-footer {
    color: var(--neutral-300, #d6d3d1);
    background: var(--neutral-900);
    padding: 52px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 40px;
}

.footer-brand {
    color: #fff;
    font-size: 20px;
}

.site-footer p {
    max-width: 420px;
    color: var(--neutral-400);
}

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

.site-footer a {
    display: block;
    color: var(--neutral-400);
    margin: 8px 0;
}

.site-footer a:hover {
    color: var(--primary-500);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    color: var(--neutral-500);
    font-size: 14px;
}

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

    .header-search {
        margin-left: auto;
    }

    .menu-button {
        display: block;
    }

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

    .hero-poster,
    .category-hero-posters {
        display: none;
    }

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

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

    .side-panel,
    .detail-side {
        position: static;
    }
}

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

    .header-inner {
        gap: 12px;
    }

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

    .header-search {
        display: none;
    }

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

    .hero-copy h1 {
        font-size: 42px;
    }

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

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

    .wide-search,
    .mobile-search {
        flex-direction: column;
    }

    .wide-search button,
    .mobile-search button {
        min-height: 46px;
    }

    .section-heading {
        display: block;
    }

    .filter-bar {
        justify-content: flex-start;
        margin-top: 18px;
    }

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

    .card-body {
        padding: 14px;
    }

    .card-body h3 {
        font-size: 16px;
    }

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

    .rank-number {
        display: none;
    }

    .rank-info p {
        display: none;
    }

    .rank-score {
        font-size: 20px;
    }

    .detail-poster {
        width: 220px;
    }

    .player-play {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .movie-grid,
    .featured-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .compact-actions {
        display: grid;
    }

    .rank-item,
    .small-rank .rank-item {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .rank-score {
        display: none;
    }
}
