:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-900: #1e3a8a;
    --ink-900: #111827;
    --ink-700: #374151;
    --ink-600: #4b5563;
    --ink-500: #6b7280;
    --line: #e5e7eb;
    --surface: #ffffff;
    --page: #f8fafc;
    --dark: #0f172a;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.site-nav {
    width: min(1180px, 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;
    color: var(--ink-900);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.28);
    font-size: 14px;
}

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

.nav-link,
.mobile-link {
    color: var(--ink-700);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.22s ease;
}

.nav-link {
    padding: 10px 15px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--blue-700);
    background: var(--blue-50);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--blue-50);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--blue-700);
    border-radius: 99px;
    transition: 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

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

.mobile-link {
    padding: 12px 14px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 42%, #172554 100%);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
}

.hero-slider::before,
.hero-slider::after {
    position: absolute;
    content: "";
    width: 440px;
    height: 440px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.28);
    filter: blur(18px);
}

.hero-slider::before {
    top: -190px;
    right: -140px;
}

.hero-slider::after {
    bottom: -230px;
    left: -160px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    min-height: 650px;
    margin: 0 auto;
    padding: 82px 0 92px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
    gap: 64px;
    align-items: center;
    animation: fadeUp 0.58s ease both;
}

.hero-slide.active {
    display: grid;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 13px;
    font-weight: 800;
}

.hero-copy .eyebrow,
.detail-copy .eyebrow,
.page-hero .eyebrow {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 680px;
    margin: 0;
    color: #dbeafe;
    font-size: 19px;
}

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

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 700;
}

.hero-tags span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.16);
    color: #eff6ff;
}

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

.primary-button,
.secondary-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-weight: 800;
    transition: 0.22s ease;
}

.primary-button {
    min-height: 46px;
    padding: 12px 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.secondary-button {
    min-height: 46px;
    padding: 12px 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.24);
}

.text-link {
    color: var(--blue-700);
    background: var(--blue-50);
    padding: 10px 16px;
}

.text-link:hover {
    color: #fff;
    background: var(--blue-700);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 32px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background: rgba(255, 255, 255, 0.08);
}

.hero-poster::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.62));
}

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

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 38px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: 0.22s ease;
}

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

.feature-strip {
    width: min(1180px, calc(100% - 32px));
    margin: -44px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-item {
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.feature-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    color: var(--blue-700);
    border-radius: 16px;
    background: var(--blue-100);
    font-weight: 900;
}

.feature-item strong,
.feature-item em {
    display: block;
}

.feature-item strong {
    font-size: 18px;
}

.feature-item em {
    color: var(--ink-500);
    font-size: 14px;
    font-style: normal;
}

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

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

.section-heading h2,
.category-overview-card h2,
.article-card h2,
.sticky-panel h2 {
    margin: 0;
    color: var(--ink-900);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p,
.category-overview-card p {
    margin: 8px 0 0;
    color: var(--ink-500);
}

.center-heading {
    justify-content: center;
    text-align: center;
}

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

.movie-card {
    display: block;
    overflow: hidden;
    color: var(--ink-900);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.38);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dbeafe;
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.34s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent 24%, rgba(15, 23, 42, 0.7));
    transition: 0.24s ease;
}

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

.year-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(10px);
}

.play-badge {
    left: 12px;
    bottom: 12px;
    padding: 6px 12px;
    background: var(--blue-600);
    transform: translateY(14px);
    opacity: 0;
    transition: 0.22s ease;
}

.movie-card:hover .play-badge {
    transform: translateY(0);
    opacity: 1;
}

.card-body {
    display: block;
    padding: 18px;
}

.card-body strong {
    display: block;
    margin-bottom: 7px;
    overflow: hidden;
    font-size: 17px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-desc {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    color: var(--ink-500);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.tag-row span {
    padding: 5px 9px;
    color: var(--blue-700);
    background: var(--blue-50);
    font-size: 12px;
}

.dark-section {
    margin-top: 56px;
    padding: 76px max(16px, calc((100% - 1180px) / 2));
    color: #fff;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.dark-section .section-heading h2,
.dark-section .section-heading p {
    color: #fff;
}

.dark-section .section-heading p {
    opacity: 0.75;
}

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

.category-tile {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.56;
    transition: 0.3s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.72;
}

.category-tile span {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
}

.category-tile strong,
.category-tile em {
    display: block;
}

.category-tile strong {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile em {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-style: normal;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 36px;
}

.rank-list,
.side-list,
.ranking-list {
    display: grid;
    gap: 12px;
}

.rank-row,
.ranking-item,
.small-movie {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.86);
    transition: 0.22s ease;
}

.rank-row:hover,
.ranking-item:hover,
.small-movie:hover {
    border-color: rgba(59, 130, 246, 0.38);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.rank-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 16px;
}

.rank-row b {
    color: var(--blue-700);
    font-size: 20px;
}

.rank-row span {
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em {
    color: var(--ink-500);
    font-size: 13px;
    font-style: normal;
}

.small-movie {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
}

.small-movie img {
    width: 96px;
    height: 70px;
    border-radius: 13px;
    object-fit: cover;
}

.small-movie strong,
.small-movie em {
    display: block;
}

.small-movie strong {
    overflow: hidden;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.small-movie em {
    color: var(--ink-500);
    font-size: 13px;
    font-style: normal;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.search-box {
    display: grid;
    gap: 8px;
    color: var(--ink-700);
    font-weight: 800;
}

.search-box input,
.filter-selects select {
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    outline: none;
    background: #fff;
    color: var(--ink-900);
    transition: 0.2s ease;
}

.search-box input:focus,
.filter-selects select:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px var(--blue-100);
}

.filter-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hidden-by-filter {
    display: none !important;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), #111827);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: center;
    padding: 54px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.compact-hero {
    display: block;
}

.page-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

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

.page-hero-poster {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.page-hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.category-cover-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    min-height: 150px;
}

.category-cover-stack img {
    width: 100%;
    height: 150px;
    border-radius: 18px;
    object-fit: cover;
}

.mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.mini-list a {
    padding: 7px 10px;
    color: var(--blue-700);
    border-radius: 999px;
    background: var(--blue-50);
    font-size: 13px;
    font-weight: 800;
}

.ranking-item {
    display: grid;
    grid-template-columns: 58px 130px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
}

.ranking-item b {
    color: var(--blue-700);
    font-size: 24px;
    text-align: center;
}

.ranking-item img {
    width: 130px;
    height: 86px;
    object-fit: cover;
    border-radius: 15px;
}

.ranking-item strong,
.ranking-item em,
.ranking-item small {
    display: block;
}

.ranking-item strong {
    font-size: 18px;
    font-weight: 900;
}

.ranking-item em,
.ranking-item small {
    color: var(--ink-500);
    font-style: normal;
}

.ranking-item small {
    margin-top: 5px;
}

.detail-hero {
    min-height: 610px;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.26;
}

.detail-backdrop::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.82));
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) scale(1.05);
}

.detail-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0 70px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    gap: 36px;
    align-items: center;
}

.player-card {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow-lg);
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
    cursor: pointer;
}

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

.play-circle {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    color: var(--blue-700);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    font-size: 28px;
}

.play-overlay strong {
    max-width: 80%;
    font-size: 24px;
    text-align: center;
}

.detail-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.lead-text {
    color: #dbeafe;
    font-size: 18px;
}

.detail-tags {
    margin: 22px 0;
}

.detail-tags span {
    padding: 7px 11px;
    color: #eff6ff;
    background: rgba(255, 255, 255, 0.14);
}

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

.detail-meta span {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.11);
}

.detail-meta b {
    display: block;
    color: #bfdbfe;
    font-size: 12px;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
}

.content-main,
.content-side {
    min-width: 0;
}

.article-card,
.sticky-panel {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.article-card {
    padding: 30px;
    margin-bottom: 24px;
}

.article-card h2 {
    margin-bottom: 14px;
    font-size: 28px;
}

.article-card p {
    margin: 0 0 18px;
    color: var(--ink-700);
    font-size: 17px;
}

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

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

.sticky-panel h2 {
    margin-bottom: 16px;
    font-size: 24px;
}

.full-button {
    width: 100%;
    margin-top: 16px;
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

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

.brand-footer {
    color: #fff;
}

.footer-brand p {
    max-width: 430px;
    color: #94a3b8;
}

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

.footer-links h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #64748b;
    text-align: center;
    font-size: 14px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .movie-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-section,
    .detail-content,
    .detail-grid,
    .page-hero,
    .hero-slide {
        grid-template-columns: 1fr;
    }

    .page-hero-poster {
        max-width: 520px;
    }

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

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

    .menu-button {
        display: block;
    }

    .hero-inner {
        min-height: auto;
        padding: 52px 0 82px;
    }

    .hero-copy h1,
    .detail-copy h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .hero-poster {
        transform: none;
    }

    .hero-dots {
        bottom: 30px;
    }

    .feature-strip,
    .movie-grid,
    .category-grid,
    .footer-inner,
    .category-overview-card,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading {
        display: grid;
        gap: 14px;
    }

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

    .filter-selects select {
        width: 100%;
    }

    .page-hero {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .ranking-item {
        grid-template-columns: 44px 86px minmax(0, 1fr);
        gap: 12px;
    }

    .ranking-item img {
        width: 86px;
        height: 68px;
    }

    .ranking-item small {
        display: none;
    }

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

    .rank-row em {
        grid-column: 2;
    }

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

    .article-card {
        padding: 22px;
    }
}
