:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-solid: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.62);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --amber: #f59e0b;
    --orange: #ea580c;
    --blue: #3b82f6;
    --green: #22c55e;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 6%, rgba(245, 158, 11, 0.12), transparent 30rem),
        radial-gradient(circle at 86% 18%, rgba(59, 130, 246, 0.12), transparent 32rem),
        var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.62), transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.site-header.is-scrolled {
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.nav-shell {
    height: 68px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand span:nth-child(2) {
    background: linear-gradient(90deg, #fbbf24, #f97316, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark,
.brand-spark {
    color: var(--amber);
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.45));
}

.brand-spark {
    color: var(--blue);
}

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

.nav-links a,
.mobile-menu a {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--amber);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
}

.nav-search input,
.mobile-menu input,
.quick-panel input,
.filter-panel input,
.filter-panel select {
    border: 0;
    outline: 0;
    color: var(--text);
    background: rgba(15, 23, 42, 0.78);
}

.nav-search input {
    width: 150px;
    padding: 8px 10px 8px 14px;
    border-radius: 999px;
}

.nav-search button,
.mobile-menu button,
.quick-panel button {
    border: 0;
    color: white;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    padding: 8px 14px;
    font-weight: 750;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.22);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: white;
    background: rgba(15, 23, 42, 0.74);
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
}

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

.mobile-menu form {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.mobile-menu input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.mobile-menu div {
    display: grid;
    gap: 10px;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    height: 72vh;
    overflow: hidden;
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1.1s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.18) 44%, rgba(2, 6, 23, 0.48) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    padding-top: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
}

.hero-content h1 {
    margin: 14px 0 16px;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.48);
}

.hero-content p {
    max-width: 690px;
    margin: 0 0 22px;
    color: #d1d5db;
    font-size: clamp(16px, 2vw, 20px);
}

.hero-tags,
.tag-cloud,
.info-badges,
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-tags span,
.tag-cloud span,
.info-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, 0.32);
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 750;
    backdrop-filter: blur(12px);
}

.hero-meta {
    margin-bottom: 30px;
    color: #d1d5db;
}

.hero-meta span {
    color: #e5e7eb;
    font-weight: 650;
}

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

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

.primary-btn {
    color: white;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.28);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.primary-btn:hover {
    box-shadow: 0 24px 46px rgba(245, 158, 11, 0.38);
}

.primary-btn.small {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
}

.ghost-btn,
.section-more {
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(16px);
}

.ghost-btn:hover,
.section-more:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: white;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    font-size: 36px;
    line-height: 1;
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 18px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 38px;
    background: var(--amber);
}

.quick-panel,
.category-strip,
.content-section,
.page-main,
.detail-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-panel {
    position: relative;
    z-index: 8;
    margin-top: -42px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.4fr);
    gap: 22px;
    align-items: center;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.84);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: var(--shadow);
}

.quick-panel p,
.section-kicker,
.page-hero p,
.detail-title-block p,
.category-card-large p {
    margin: 0 0 6px;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quick-panel h2,
.section-head h2,
.page-hero h1,
.detail-title-block h1 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.quick-panel h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.quick-panel form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid var(--line);
}

.quick-panel input {
    flex: 1;
    min-width: 0;
    border-radius: 999px;
    padding: 13px 18px;
}

.quick-panel button {
    padding-inline: 22px;
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.category-strip a {
    min-height: 92px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.82));
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-strip a:hover,
.category-card-large:hover,
.movie-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.42);
}

.category-strip span {
    display: block;
    font-size: 18px;
    font-weight: 850;
}

.category-strip small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

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

.content-section.flush {
    padding-top: 26px;
}

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

.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-head p:not(.section-kicker) {
    margin: 8px 0 0;
    max-width: 680px;
    color: var(--muted);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.poster-link,
.poster-frame {
    display: block;
}

.poster-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.8);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 64%);
    opacity: 0.72;
}

.poster-play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) scale(0.82);
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    opacity: 0;
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.34);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.poster-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 4px 9px;
    color: white;
    background: rgba(0, 0, 0, 0.62);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.card-body {
    padding: 16px;
}

.card-meta,
.card-foot,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.card-meta span:first-child,
.rank-meta span:first-child {
    color: #fbbf24;
}

.movie-card h3 {
    min-height: 54px;
    margin: 9px 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-item h3 a:hover,
.category-card-large a:hover {
    color: #fbbf24;
}

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

.card-foot {
    justify-content: space-between;
    margin-top: 14px;
}

.card-foot a {
    color: #fbbf24;
}

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

.rank-section .rank-list.wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rank-item {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 15px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
    padding: 12px;
}

.rank-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.8);
}

.rank-cover span {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 28px;
    border-radius: 10px;
    color: white;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

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

.rank-item h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.rank-item p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-main {
    padding-top: 106px;
}

.page-hero {
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.14), transparent 38%),
        linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0.86));
    box-shadow: var(--shadow);
}

.page-hero.compact {
    padding: 46px;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero span {
    display: block;
    max-width: 780px;
    margin-top: 12px;
    color: var(--soft);
    font-size: 18px;
}

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

.category-card-large {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.74);
    padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card-large h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.category-card-large span {
    color: var(--muted);
}

.category-card-large ul {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.category-card-large li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--soft);
    font-size: 14px;
}

.category-card-large li span {
    color: var(--muted);
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 12px;
    margin-top: 24px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.74);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
}

.detail-main {
    padding-top: 92px;
}

.detail-hero {
    padding: 24px 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
}

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

.detail-title-block {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.detail-title-block h1 {
    max-width: 840px;
    font-size: clamp(34px, 6vw, 66px);
}

.detail-title-block span {
    display: block;
    max-width: 860px;
    margin-top: 12px;
    color: var(--soft);
    font-size: 18px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 12px;
    align-content: center;
    border: 0;
    color: white;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.2), transparent 20rem),
        linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.28));
}

.player-overlay span {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-size: 34px;
    box-shadow: 0 24px 58px rgba(245, 158, 11, 0.34);
}

.player-overlay strong {
    font-size: 18px;
}

.player-overlay.is-hidden {
    display: none;
}

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

.detail-content,
.side-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.74);
    padding: 24px;
}

.detail-content h2 {
    margin: 26px 0 10px;
    font-size: 24px;
}

.detail-content h2:first-of-type {
    margin-top: 22px;
}

.detail-content p {
    margin: 0;
    color: var(--soft);
    font-size: 16px;
}

.info-badges span {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.28);
    color: #bfdbfe;
}

.tag-cloud {
    margin-top: 14px;
}

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

.side-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
    background: rgba(30, 41, 59, 0.8);
}

.side-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.side-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.detail-related {
    padding-bottom: 72px;
}

.site-footer {
    margin-top: 78px;
    border-top: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.86);
}

.footer-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 34px;
    padding: 42px 0;
}

.footer-brand p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--muted);
}

.footer-column {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-column h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.footer-column a {
    color: var(--muted);
}

.footer-column a:hover {
    color: var(--amber);
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid var(--line);
    color: #64748b;
    font-size: 13px;
}

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

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

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

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

    .side-card {
        position: static;
    }
}

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

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .hero-carousel {
        min-height: 580px;
        height: 78vh;
    }

    .hero-content {
        padding-top: 88px;
    }

    .hero-arrow {
        display: none;
    }

    .quick-panel {
        grid-template-columns: 1fr;
        margin-top: -28px;
    }

    .quick-panel form,
    .mobile-menu form {
        flex-direction: column;
        border-radius: 22px;
    }

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

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

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

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

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

    .detail-title-block,
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .nav-shell,
    .quick-panel,
    .category-strip,
    .content-section,
    .page-main,
    .detail-main,
    .footer-shell,
    .copyright {
        width: min(100% - 22px, 1180px);
    }

    .brand {
        font-size: 18px;
    }

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

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

    .category-strip,
    .movie-grid,
    .all-grid {
        grid-template-columns: 1fr;
    }

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

    .page-hero.compact,
    .detail-content,
    .side-card,
    .category-card-large {
        padding: 20px;
        border-radius: 22px;
    }

    .player-shell {
        border-radius: 18px;
    }
}
