:root {
    --night-950: #0d0d10;
    --night-925: #141418;
    --night-900: #1a1a1f;
    --night-850: #24242a;
    --night-800: #2c2c34;
    --night-750: #373740;
    --night-700: #474752;
    --night-500: #8c8c99;
    --night-400: #a9a9b5;
    --night-300: #d1d1db;
    --night-200: #eeeeF4;
    --gold-500: #eab308;
    --gold-400: #facc15;
    --ember-500: #ef4444;
    --white: #ffffff;
    --radius: 18px;
    --shadow-glow: 0 0 28px rgba(234, 179, 8, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--night-200);
    background:
        radial-gradient(circle at 20% 0%, rgba(234, 179, 8, 0.12), transparent 32rem),
        radial-gradient(circle at 80% 15%, rgba(239, 68, 68, 0.10), transparent 30rem),
        var(--night-950);
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body::selection {
    color: var(--night-950);
    background: var(--gold-400);
}

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

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(71, 71, 82, 0.68);
    background: rgba(26, 26, 31, 0.92);
    backdrop-filter: blur(18px);
}

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

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

.logo-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--night-950);
    background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--gold-400), #fb923c);
    -webkit-background-clip: text;
    color: transparent;
}

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

.nav-link {
    padding: 10px 15px;
    color: var(--night-300);
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-400);
    background: rgba(44, 44, 52, 0.62);
}

.header-search {
    padding: 10px 16px;
    color: var(--night-950);
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.18);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    background: var(--night-800);
    border-radius: 12px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
}

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

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    color: var(--night-300);
    border-radius: 12px;
}

.mobile-nav a:hover {
    color: var(--gold-400);
    background: var(--night-800);
}

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

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--night-900);
}

.hero-track,
.hero-slide,
.hero-slide img,
.hero-shade {
    position: absolute;
    inset: 0;
}

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

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

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

.hero-shade {
    background:
        linear-gradient(90deg, rgba(13, 13, 16, 0.95), rgba(13, 13, 16, 0.70) 42%, rgba(13, 13, 16, 0.36)),
        linear-gradient(180deg, rgba(13, 13, 16, 0.18), rgba(13, 13, 16, 0.98));
}

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

.hero-kicker,
.page-kicker,
.badge,
.quality,
.poster-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--gold-400);
    font-weight: 700;
    border: 1px solid rgba(234, 179, 8, 0.32);
    background: rgba(234, 179, 8, 0.14);
    border-radius: 999px;
}

.hero-kicker,
.page-kicker {
    padding: 7px 14px;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--white);
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.hero p {
    max-width: 720px;
    margin: 0;
    color: var(--night-300);
    font-size: 18px;
    line-height: 1.9;
}

.hero-meta,
.meta-row,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta span,
.detail-meta span {
    padding: 6px 12px;
    color: var(--night-200);
    background: rgba(44, 44, 52, 0.66);
    border: 1px solid rgba(71, 71, 82, 0.75);
    border-radius: 999px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    font-weight: 800;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

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

.btn.primary {
    color: var(--night-950);
    background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
    box-shadow: var(--shadow-glow);
}

.btn.ghost {
    color: var(--night-200);
    border: 1px solid var(--night-700);
    background: rgba(44, 44, 52, 0.6);
}

.btn.ghost:hover {
    border-color: rgba(234, 179, 8, 0.44);
    color: var(--gold-400);
}

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

.btn.full {
    width: 100%;
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-dot.active {
    width: 36px;
    background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
}

.hero-arrow {
    width: 44px;
    height: 44px;
    color: var(--white);
    font-size: 34px;
    line-height: 1;
    border-radius: 999px;
    background: rgba(26, 26, 31, 0.76);
    border: 1px solid rgba(71, 71, 82, 0.7);
    pointer-events: auto;
}

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

.section-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1,
.detail-title-block h1 {
    margin: 0;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-heading h2 {
    font-size: clamp(26px, 4vw, 36px);
}

.heading-line {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(234, 179, 8, 0.65), transparent);
}

.heading-line.ember {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.64), transparent);
}

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

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

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

.movie-card {
    display: block;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--night-800), var(--night-900));
    border-radius: var(--radius);
    border: 1px solid rgba(71, 71, 82, 0.62);
}

.poster-wrap img,
.wide-poster img,
.list-card img,
.rank-row img,
.side-related img,
.poster-panel img,
.category-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .poster-wrap img,
.wide-card:hover .wide-poster img,
.list-card:hover img,
.rank-row:hover img,
.category-card:hover img,
.side-related:hover img {
    transform: scale(1.08);
}

.quality,
.poster-category {
    position: absolute;
    z-index: 2;
    padding: 5px 9px;
    font-size: 12px;
    color: var(--white);
    background: rgba(26, 26, 31, 0.78);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.quality {
    top: 12px;
    right: 12px;
}

.poster-category {
    left: 12px;
    bottom: 12px;
}

.poster-hover {
    position: absolute;
    inset: auto 0 0 0;
    padding: 44px 14px 14px;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(13, 13, 16, 0.92));
    transform: translateY(100%);
    transition: transform 0.28s ease;
}

.movie-card:hover .poster-hover {
    transform: translateY(0);
}

.poster-hover p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.movie-card h3,
.wide-card h3,
.list-card h3 {
    margin: 12px 0 5px;
    color: var(--night-100, #f5f5f8);
    font-size: 16px;
    line-height: 1.45;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card:hover h3,
.wide-card:hover h3,
.list-card:hover h3,
.rank-row:hover h2,
.side-related:hover span {
    color: var(--gold-400);
}

.movie-meta,
.list-card p,
.wide-card p,
.rank-info p {
    margin: 0;
    color: var(--night-400);
    font-size: 14px;
    line-height: 1.7;
}

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

.wide-card {
    overflow: hidden;
    border: 1px solid rgba(71, 71, 82, 0.72);
    border-radius: var(--radius);
    background: rgba(44, 44, 52, 0.44);
    transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.wide-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 179, 8, 0.42);
    background: rgba(44, 44, 52, 0.8);
}

.wide-poster {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--night-850);
}

.wide-content {
    padding: 18px;
}

.badge {
    padding: 4px 8px;
    font-size: 12px;
}

.badge.hot {
    color: var(--white);
    border-color: rgba(239, 68, 68, 0.5);
    background: var(--ember-500);
}

.meta-row {
    color: var(--night-500);
    font-size: 13px;
}

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

.category-card {
    overflow: hidden;
    min-height: 230px;
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
    border: 1px solid rgba(71, 71, 82, 0.72);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(44, 44, 52, 0.78), rgba(26, 26, 31, 0.86));
    transition: transform 0.2s ease, border 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 179, 8, 0.42);
}

.category-thumbs {
    min-height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 12px 0 12px 12px;
}

.category-thumbs img {
    min-height: 180px;
    border-radius: 12px;
    background: var(--night-800);
}

.category-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-body h3,
.showcase-head h2,
.rank-panel h2,
.rank-panel-head h2,
.side-panel h2,
.text-card h2 {
    margin: 0;
    color: var(--white);
}

.category-body h3 {
    font-size: 26px;
}

.category-body p,
.page-hero p,
.showcase-head p,
.text-card p {
    color: var(--night-300);
    line-height: 1.85;
}

.category-body span {
    margin-top: 10px;
    color: var(--gold-400);
    font-weight: 800;
}

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

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

.list-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(71, 71, 82, 0.65);
    border-radius: 16px;
    background: rgba(44, 44, 52, 0.36);
}

.list-card img {
    width: 72px;
    height: 96px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--night-800);
}

.rank-panel,
.side-panel,
.poster-panel,
.text-card {
    border: 1px solid rgba(71, 71, 82, 0.72);
    border-radius: var(--radius);
    background: rgba(44, 44, 52, 0.46);
}

.rank-panel,
.side-panel,
.poster-panel {
    padding: 22px;
}

.rank-panel {
    position: sticky;
    top: 94px;
}

.rank-panel-head,
.showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.rank-panel-head a {
    color: var(--gold-400);
    font-weight: 800;
}

.rank-list.compact {
    display: grid;
    gap: 10px;
}

.rank-item {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(26, 26, 31, 0.5);
}

.rank-item span,
.rank-num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--night-950);
    font-weight: 900;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
}

.rank-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-item em {
    color: var(--night-500);
    font-style: normal;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(71, 71, 82, 0.68);
    background: rgba(13, 13, 16, 0.74);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) 1fr 1fr;
    gap: 32px;
}

.footer-brand p {
    max-width: 520px;
    color: var(--night-400);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links h3 {
    margin: 0 0 8px;
    color: var(--white);
}

.footer-links a {
    color: var(--night-400);
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    padding: 18px 16px;
    color: var(--night-500);
    text-align: center;
    border-top: 1px solid rgba(71, 71, 82, 0.45);
}

.page-main {
    padding: 34px 0 0;
}

.page-hero {
    min-height: 260px;
    padding: 46px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    border: 1px solid rgba(71, 71, 82, 0.72);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 0%, rgba(234, 179, 8, 0.15), transparent 32rem),
        linear-gradient(135deg, rgba(44, 44, 52, 0.68), rgba(13, 13, 16, 0.88));
}

.page-hero h1 {
    font-size: clamp(36px, 6vw, 62px);
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
}

.category-directory {
    padding: 42px 0;
}

.showcase-list {
    display: grid;
    gap: 48px;
}

.category-showcase {
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(71, 71, 82, 0.52);
}

.toolbar-section {
    padding: 30px 0 0;
}

.sticky-toolbar {
    position: sticky;
    top: 72px;
    z-index: 40;
    padding-bottom: 18px;
    background: linear-gradient(180deg, var(--night-950), rgba(13, 13, 16, 0.7));
}

.search-box {
    width: 100%;
    display: grid;
    gap: 10px;
    color: var(--night-300);
    font-weight: 800;
}

.search-box input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    color: var(--night-100, #f5f5f8);
    border: 1px solid rgba(71, 71, 82, 0.75);
    border-radius: 14px;
    outline: 0;
    background: rgba(44, 44, 52, 0.64);
}

.search-box.large input {
    height: 56px;
    font-size: 17px;
}

.search-box input:focus {
    border-color: rgba(234, 179, 8, 0.72);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.12);
}

.rank-page {
    padding: 30px 0 0;
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 48px 120px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(71, 71, 82, 0.68);
    border-radius: 18px;
    background: rgba(44, 44, 52, 0.46);
}

.rank-row img {
    width: 120px;
    height: 76px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--night-800);
}

.rank-info h2 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 20px;
}

.rank-row strong {
    color: var(--gold-400);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--night-400);
}

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

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

.detail-content {
    display: grid;
    gap: 24px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(71, 71, 82, 0.72);
    border-radius: 22px;
    background: #000;
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(13, 13, 16, 0.2), rgba(13, 13, 16, 0.62));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-button {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    color: var(--night-950);
    font-size: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
    box-shadow: 0 0 42px rgba(234, 179, 8, 0.45);
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.08);
}

.play-button span {
    margin-left: 5px;
}

.detail-title-block {
    display: grid;
    gap: 14px;
}

.detail-title-block h1 {
    font-size: clamp(30px, 5vw, 46px);
}

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

.tag-list span {
    padding: 7px 10px;
    color: var(--night-300);
    background: var(--night-800);
    border-radius: 999px;
}

.text-card {
    padding: 22px;
}

.text-card h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.text-card p {
    margin: 0;
    white-space: pre-line;
}

.detail-sidebar {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 20px;
}

.poster-panel {
    display: grid;
    gap: 16px;
}

.poster-panel img {
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    background: var(--night-800);
}

.side-panel {
    display: grid;
    gap: 14px;
}

.side-related {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: rgba(13, 13, 16, 0.38);
}

.side-related img {
    width: 74px;
    height: 98px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--night-800);
    grid-row: span 2;
}

.side-related span {
    color: var(--night-200);
    font-weight: 800;
    line-height: 1.4;
}

.side-related em {
    color: var(--night-500);
    font-style: normal;
    font-size: 13px;
}

.related-section {
    padding-bottom: 0;
}

[data-search-card].is-hidden {
    display: none !important;
}

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

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

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

    .rank-panel,
    .detail-sidebar {
        position: static;
    }
}

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

    .menu-toggle {
        display: flex;
    }

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

    .hero-controls {
        bottom: 20px;
    }

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

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

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

    .category-thumbs {
        padding: 12px;
    }

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

    .rank-row {
        grid-template-columns: 42px 90px minmax(0, 1fr);
    }

    .rank-row strong {
        display: none;
    }

    .rank-row img {
        width: 90px;
        height: 120px;
    }
}

@media (max-width: 520px) {
    .container,
    .header-inner,
    .mobile-nav,
    .footer-inner {
        width: min(100% - 22px, 1180px);
    }

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

    .logo-text {
        font-size: 19px;
    }

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

    .hero h1 {
        font-size: 38px;
    }

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

    .hero-arrow {
        display: none;
    }

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

    .page-hero {
        padding: 28px;
        border-radius: 22px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .movie-grid,
    .movie-grid.full-grid,
    .compact-grid {
        gap: 14px;
    }

    .movie-card h3 {
        font-size: 14px;
    }

    .detail-meta span {
        font-size: 13px;
    }

    .play-button {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }
}
