:root {
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-ink: #0f172a;
    --color-muted: #64748b;
    --color-soft: #e2e8f0;
    --color-primary: #10b981;
    --color-primary-dark: #059669;
    --color-teal: #0d9488;
    --color-footer: #0f172a;
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 18px 48px rgba(15, 23, 42, 0.18);
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.nav-shell {
    width: min(1280px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--color-ink);
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.28);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.05);
}

.brand-text {
    font-size: 21px;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: #334155;
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

.mobile-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
    cursor: pointer;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 20px;
    border-top: 1px solid #e2e8f0;
}

.mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-link {
    padding: 11px 12px;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-weight: 650;
}

.mobile-link:hover {
    color: var(--color-primary-dark);
    background: #ecfdf5;
}

.hero-slider {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-slide img,
.detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.64) 48%, rgba(2, 6, 23, 0.2) 100%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 70px;
    width: min(1280px, calc(100% - 32px));
    transform: translateX(-50%);
    color: #ffffff;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-summary {
    max-width: 760px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 2vw, 20px);
}

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

.hero-meta span,
.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.28);
}

.primary-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.ghost-button {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.ghost-button.dark {
    color: #0f172a;
    background: #ffffff;
    border-color: #e2e8f0;
}

.full-button {
    width: 100%;
}

.hero-dots {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    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.is-active {
    width: 32px;
    background: var(--color-primary);
}

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

.home-shell {
    display: grid;
    gap: 64px;
}

.page-shell section {
    margin-bottom: 56px;
}

.home-search-block,
.page-hero,
.content-card,
.side-card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.home-search-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid #e2e8f0;
}

.home-search-block h1,
.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.home-search-block p,
.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
}

.eyebrow {
    margin: 0 0 8px !important;
    color: var(--color-primary-dark) !important;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero {
    padding: clamp(28px, 5vw, 52px);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.ranking-hero,
.category-hero {
    background:
        radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.22), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

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

.section-heading-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal));
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.25);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(23px, 2.8vw, 32px);
    line-height: 1.18;
    font-weight: 900;
}

.section-heading p {
    margin: 4px 0 0;
    color: var(--color-muted);
    font-size: 14px;
}

.section-more {
    color: var(--color-primary-dark);
    font-weight: 800;
    white-space: nowrap;
}

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

.compact-grid {
    gap: 20px;
}

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

.poster-frame img,
.horizontal-poster img,
.category-bg img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .poster-frame img,
.horizontal-card:hover .horizontal-poster img,
.category-tile:hover .category-bg img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.03) 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.year-badge,
.rank-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: 10px;
    right: auto;
    background: rgba(15, 23, 42, 0.82);
}

.play-badge {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.92);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(0.84);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.play-badge.small {
    width: 34px;
    height: 34px;
    font-size: 13px;
}

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

.movie-card-body {
    display: grid;
    gap: 5px;
    padding: 13px 13px 15px;
}

.movie-title {
    overflow: hidden;
    color: #0f172a;
    font-weight: 850;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.movie-card:hover .movie-title,
.horizontal-card:hover .horizontal-title {
    color: var(--color-primary-dark);
}

.movie-meta,
.movie-desc,
.horizontal-meta,
.horizontal-desc {
    overflow: hidden;
    color: var(--color-muted);
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-desc {
    color: #475569;
}

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

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
    background: #020617;
}

.category-bg {
    position: absolute;
    inset: 0;
}

.category-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.38));
}

.category-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 9px;
    padding: 22px;
}

.category-name {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
}

.category-desc,
.category-samples {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.category-samples {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-preview,
.ranking-list,
.side-list {
    display: grid;
    gap: 14px;
}

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

.horizontal-card {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 12px;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.horizontal-poster {
    position: relative;
    width: 132px;
    aspect-ratio: 16 / 10;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
}

.horizontal-body {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.horizontal-title {
    overflow: hidden;
    color: #0f172a;
    font-size: 16px;
    font-weight: 850;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.horizontal-rank {
    display: inline-flex;
    min-width: 32px;
    height: 26px;
    margin-right: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-teal));
    font-size: 13px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(140px, 180px));
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-panel label {
    display: grid;
    gap: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 44px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    padding: 0 12px;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.empty-state {
    display: none;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    color: var(--color-muted);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.empty-state.is-visible {
    display: block;
}

.movie-card.is-hidden,
.horizontal-card.is-hidden {
    display: none;
}

.detail-hero {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #020617;
    color: #ffffff;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    filter: blur(2px);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.78) 48%, rgba(2, 6, 23, 0.66) 100%);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 46px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

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

.detail-title-wrap {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: end;
}

.detail-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.detail-title-text h1 {
    max-width: 900px;
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-title-text p:not(.eyebrow) {
    max-width: 860px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.detail-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

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

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #020617;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.42));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 4;
}

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

.player-button {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary);
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.36);
    font-size: 34px;
}

.player-title {
    max-width: min(80%, 620px);
    overflow: hidden;
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.content-card,
.side-card {
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid #e2e8f0;
}

.content-card h2,
.side-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.article-body h2 {
    margin-top: 26px;
}

.article-body p {
    margin: 0 0 16px;
    color: #334155;
    font-size: 16px;
}

.tag-block {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.tag-block strong {
    color: #475569;
}

.tag-block div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-block span {
    padding: 7px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 14px;
    font-weight: 700;
}

.detail-sidebar {
    display: grid;
    align-content: start;
    gap: 22px;
}

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

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

.info-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.info-list dt {
    color: var(--color-muted);
}

.info-list dd {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
    text-align: right;
}

.info-list a {
    color: var(--color-primary-dark);
}

.side-card .horizontal-card {
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.side-card .horizontal-poster {
    width: 96px;
}

.side-card .horizontal-desc {
    display: none;
}

.site-footer {
    background: var(--color-footer);
    color: #cbd5e1;
}

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

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 1fr 1fr;
    gap: 36px;
}

.brand-footer .brand-text {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    max-width: 560px;
    margin: 18px 0 0;
    color: #94a3b8;
}

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

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

.footer-column a {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-column a:hover {
    color: #6ee7b7;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

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

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

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

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

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

    .sticky-card {
        position: static;
    }
}

@media (max-width: 780px) {
    .hero-slider {
        min-height: 540px;
    }

    .hero-content {
        bottom: 56px;
    }

    .hero-dots {
        left: 16px;
        right: auto;
        bottom: 24px;
    }

    .home-search-block {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .ranking-preview {
        grid-template-columns: 1fr;
    }

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

    .detail-title-wrap {
        grid-template-columns: 130px minmax(0, 1fr);
        align-items: center;
    }

    .detail-title-text p:not(.eyebrow) {
        font-size: 15px;
    }

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

@media (max-width: 560px) {
    .nav-shell,
    .mobile-nav,
    .page-shell,
    .detail-shell,
    .detail-hero-content,
    .footer-shell {
        width: min(100% - 24px, 1280px);
    }

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

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

    .hero-slider {
        min-height: 500px;
    }

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

    .hero-meta span,
    .detail-meta span {
        font-size: 12px;
    }

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

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

    .horizontal-card {
        gap: 12px;
    }

    .horizontal-poster {
        width: 112px;
    }

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

    .detail-poster {
        width: 160px;
    }

    .player-button {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }

    .player-title {
        font-size: 18px;
    }
}
