:root {
    --lava-50: #fff7ed;
    --lava-100: #ffedd5;
    --lava-400: #fb923c;
    --lava-500: #f97316;
    --lava-600: #ea580c;
    --lava-700: #c2410c;
    --ember-500: #f59e0b;
    --volcanic-50: #fafafa;
    --volcanic-100: #f4f4f5;
    --volcanic-200: #e4e4e7;
    --volcanic-300: #d4d4d8;
    --volcanic-500: #71717a;
    --volcanic-600: #52525b;
    --volcanic-700: #3f3f46;
    --volcanic-800: #27272a;
    --volcanic-900: #18181b;
    --volcanic-950: #09090b;
    --shadow-soft: 0 18px 45px rgba(15, 15, 15, 0.12);
    --shadow-lava: 0 14px 38px rgba(249, 115, 22, 0.32);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--volcanic-900);
    background: var(--volcanic-950);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: rgba(9, 9, 11, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(9, 9, 11, 0.94);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lava-500), var(--ember-500));
    box-shadow: var(--shadow-lava);
}

.brand-text {
    font-size: 1.08rem;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.78);
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(249, 115, 22, 0.16);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 10px;
    background: rgba(24, 24, 27, 0.94);
    border-radius: 18px;
}

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

.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: var(--volcanic-950);
}

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

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

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

.hero-slide.active > img {
    transform: scale(1);
}

.hero-overlay,
.detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 38%, rgba(249, 115, 22, 0.26), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.15)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.96), transparent 56%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 90vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 0 100px;
    color: #ffffff;
}

.hero-kicker,
.page-kicker,
.detail-kicker {
    color: var(--lava-400);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    max-width: 780px;
    margin: 12px 0 18px;
    font-size: clamp(2.4rem, 7vw, 5.9rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 900;
    text-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero p,
.page-hero p,
.detail-one-line {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

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

.btn-primary,
.btn-ghost,
.home-search button,
.filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary,
.home-search button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--lava-500), var(--ember-500));
    box-shadow: var(--shadow-lava);
}

.btn-primary:hover,
.home-search button:hover,
.filter-reset:hover {
    transform: translateY(-2px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1;
    background: rgba(0, 0, 0, 0.34);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(249, 115, 22, 0.82);
    transform: translateY(-50%) scale(1.08);
}

.hero-prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-next {
    right: 24px;
    transform: translateY(-50%);
}

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

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

.hero-dots button.active {
    width: 34px;
    background: var(--lava-500);
}

.quick-panel {
    width: min(1180px, calc(100% - 32px));
    margin: -52px auto 0;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.quick-search h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    letter-spacing: -0.04em;
}

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

.home-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--volcanic-200);
    border-radius: 16px;
    padding: 13px 14px;
    background: #ffffff;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--lava-400);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.quick-tags {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-tags a,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--lava-50);
    color: var(--lava-700);
    font-weight: 700;
}

.quick-tags a {
    padding: 10px 14px;
}

.section {
    padding: clamp(54px, 8vw, 98px) max(16px, calc((100% - 1180px) / 2));
}

.white-section {
    background: #ffffff;
}

.soft-section {
    background: linear-gradient(180deg, var(--volcanic-50), #ffffff);
}

.dark-section {
    background:
        radial-gradient(circle at 16% 20%, rgba(249, 115, 22, 0.24), transparent 28%),
        linear-gradient(135deg, var(--volcanic-900), var(--volcanic-950));
    color: #ffffff;
}

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

.section-head h2,
.section-head h3,
.article-content h2 {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
    background: linear-gradient(90deg, var(--lava-600), var(--lava-400), var(--ember-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head h3 {
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.section-head p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--volcanic-600);
}

.inverse-head p {
    color: rgba(255, 255, 255, 0.72);
}

.section-head > a,
.compact-head > a {
    color: var(--lava-600);
    font-weight: 800;
    white-space: nowrap;
}

.inverse-head > a {
    color: var(--lava-400);
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(24, 24, 27, 0.10);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(24, 24, 27, 0.16);
}

.movie-cover {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    background: var(--volcanic-100);
}

.movie-card-compact .movie-cover {
    height: 215px;
}

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

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

.cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 52%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--lava-600);
    box-shadow: var(--shadow-lava);
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-year {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 800;
}

.movie-body {
    padding: 16px;
}

.movie-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    color: var(--lava-600);
    font-size: 0.78rem;
    font-weight: 800;
}

.movie-body h3 {
    margin: 0 0 8px;
    color: var(--volcanic-900);
    font-size: 1.06rem;
    line-height: 1.3;
    font-weight: 900;
}

.movie-body h3 a:hover {
    color: var(--lava-600);
}

.movie-body p {
    display: -webkit-box;
    margin: 0;
    color: var(--volcanic-600);
    font-size: 0.92rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row,
.detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.tag-row span,
.detail-tags span {
    padding: 4px 9px;
    font-size: 0.76rem;
}

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

.rank-item a {
    position: relative;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    align-items: center;
    overflow: hidden;
    min-height: 112px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    transition: transform 0.22s ease, background 0.22s ease;
}

.rank-item a:hover {
    transform: translateY(-4px);
    background: rgba(249, 115, 22, 0.18);
}

.rank-item img {
    width: 78px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-num {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--lava-600);
    font-size: 0.76rem;
    font-weight: 900;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info strong {
    font-weight: 900;
    line-height: 1.35;
}

.rank-info em {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-style: normal;
    font-size: 0.84rem;
}

.mini-channel {
    margin-top: 38px;
}

.compact-head {
    align-items: center;
    margin-bottom: 18px;
}

.page-main {
    padding-top: 72px;
    background: #ffffff;
}

.page-hero {
    min-height: 420px;
    display: grid;
    align-items: end;
    padding: 110px max(16px, calc((100% - 1180px) / 2)) 68px;
    color: #ffffff;
    background:
        radial-gradient(circle at 74% 24%, rgba(249, 115, 22, 0.38), transparent 28%),
        linear-gradient(135deg, var(--volcanic-900), var(--volcanic-950));
}

.page-hero h1 {
    margin-bottom: 16px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: 24px;
    background: var(--volcanic-50);
    border: 1px solid var(--volcanic-200);
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--volcanic-600);
    font-size: 0.84rem;
    font-weight: 800;
}

.filter-reset {
    align-self: end;
    color: #ffffff;
    background: var(--volcanic-900);
}

.empty-state {
    margin: 20px 0;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    color: var(--volcanic-600);
    background: var(--volcanic-50);
}

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

.category-card {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, #ffffff, var(--lava-50));
    box-shadow: var(--shadow-soft);
}

.category-link {
    display: block;
    padding: 26px;
}

.category-link span {
    display: block;
    color: var(--lava-600);
    font-size: 1.55rem;
    font-weight: 900;
}

.category-link strong {
    display: block;
    margin-top: 10px;
    color: var(--volcanic-600);
    font-weight: 600;
}

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

.category-preview img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

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

.podium-card a {
    display: block;
    overflow: hidden;
    min-height: 520px;
    position: relative;
    border-radius: 28px;
    color: #ffffff;
    background: var(--volcanic-900);
    box-shadow: var(--shadow-soft);
}

.podium-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    opacity: 0.78;
}

.podium-card span,
.podium-card h2,
.podium-card p {
    position: absolute;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.podium-card span {
    top: 24px;
    width: max-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--lava-600);
    font-weight: 900;
}

.podium-card h2 {
    bottom: 88px;
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
}

.podium-card p {
    bottom: 24px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

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

.ranking-list .rank-item a {
    background: var(--volcanic-900);
}

.detail-main {
    background: #ffffff;
}

.detail-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: #ffffff;
    background: var(--volcanic-950);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    opacity: 0.78;
}

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

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

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

.detail-grid {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 42px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.detail-poster img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.detail-info h1 {
    margin-top: 12px;
}

.detail-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.player-section {
    background: var(--volcanic-950);
    color: #ffffff;
}

.player-layout {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr;
    gap: 28px;
    align-items: start;
}

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

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

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lava-500), var(--ember-500));
    box-shadow: var(--shadow-lava);
    font-size: 2rem;
    padding-left: 5px;
}

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

.watch-panel {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.watch-panel h2 {
    margin: 0 0 10px;
    font-size: 1.55rem;
    line-height: 1.2;
}

.watch-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.watch-panel dl {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
}

.watch-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.watch-panel dt {
    color: rgba(255, 255, 255, 0.54);
}

.watch-panel dd {
    margin: 0;
    font-weight: 800;
}

.article-content {
    max-width: 900px;
}

.article-content h2 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 2rem;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    margin: 0 0 18px;
    color: var(--volcanic-700);
    font-size: 1.05rem;
}

.site-footer {
    background: var(--volcanic-950);
    color: rgba(255, 255, 255, 0.72);
    padding: 46px 16px;
}

.footer-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-inner p {
    max-width: 560px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(249, 115, 22, 0.22);
}

[data-movie-card].is-hidden {
    display: none;
}

@media (max-width: 1180px) {
    .movie-grid,
    .library-grid,
    .featured-grid,
    .small-grid,
    .ranking-list,
    .rank-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding-bottom: 78px;
    }

    .hero-arrow {
        display: none;
    }

    .quick-panel,
    .player-layout,
    .detail-grid,
    .footer-inner,
    .filter-panel,
    .category-grid,
    .podium-grid {
        grid-template-columns: 1fr;
    }

    .quick-panel {
        margin-top: 0;
        border-radius: 0;
        width: 100%;
    }

    .home-search {
        flex-direction: column;
    }

    .quick-tags {
        justify-content: flex-start;
    }

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

    .movie-grid,
    .library-grid,
    .featured-grid,
    .small-grid,
    .ranking-list,
    .rank-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-poster img {
        height: 380px;
    }
}

@media (max-width: 560px) {
    .nav-wrap {
        height: 64px;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .hero,
    .hero-content {
        min-height: 78vh;
    }

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

    .movie-grid,
    .library-grid,
    .featured-grid,
    .small-grid,
    .ranking-list,
    .rank-strip {
        grid-template-columns: 1fr;
    }

    .movie-cover,
    .movie-card-compact .movie-cover {
        height: 260px;
    }

    .category-preview img {
        height: 92px;
    }

    .page-hero {
        min-height: 360px;
        padding-top: 100px;
    }

    .detail-hero-content {
        padding-top: 100px;
    }

    .player-start span {
        width: 70px;
        height: 70px;
    }
}
