:root {
    --strawberry: #ff3366;
    --strawberry-deep: #ed1659;
    --candy: #ff33aa;
    --candy-deep: #ed1689;
    --gummy: #facc15;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #f7c9d6;
    --surface: rgba(255, 255, 255, 0.82);
    --shadow-soft: 0 2px 15px -3px rgba(255, 51, 102, 0.30), 0 10px 20px -2px rgba(255, 51, 102, 0.15);
    --shadow-float: 0 20px 60px -15px rgba(255, 51, 102, 0.40);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    background: linear-gradient(135deg, #fdf2f8 0%, #fff1f3 50%, #fef2f2 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--strawberry), #ff6b8e, #ffa3b5);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.25), inset 0 2px 10px rgba(255, 255, 255, 0.45);
}

.brand-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: transparent;
    background: linear-gradient(135deg, var(--strawberry), var(--candy));
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.nav-link {
    font-weight: 700;
    color: #374151;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--strawberry);
}

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

.nav-search,
.mobile-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid rgba(255, 51, 102, 0.14);
    outline: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav-search input,
.mobile-search input {
    width: 260px;
    padding: 12px 18px;
}

.nav-search button,
.mobile-search button,
.primary-button,
.back-top {
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--strawberry), #ff6b8e, #ffa3b5);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.primary-button:hover,
.back-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    padding: 12px 22px;
    color: #ffffff;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, background 0.25s ease;
}

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

.ghost-button.small {
    color: var(--strawberry);
    border-color: rgba(255, 51, 102, 0.18);
    background: rgba(255, 241, 243, 0.9);
}

.global-search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(420px, calc(100vw - 32px));
    display: none;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-float);
}

.global-search-results.open {
    display: grid;
    gap: 8px;
}

.search-result-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 18px;
    transition: background 0.25s ease;
}

.search-result-item:hover {
    background: #fff1f3;
}

.search-result-item img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
}

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

.search-result-item strong {
    font-size: 14px;
    color: var(--ink);
}

.search-result-item em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.search-empty {
    padding: 14px;
    color: var(--muted);
    text-align: center;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: var(--strawberry);
    background: #fff1f3;
}

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

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

.mobile-links {
    display: grid;
    gap: 10px;
    padding: 12px 0;
}

.mobile-links a {
    padding: 12px 14px;
    border-radius: 16px;
    color: #374151;
    background: rgba(255, 255, 255, 0.72);
}

.hero-section {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--strawberry), var(--candy), #ffa3b5);
}

.float-orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    filter: blur(1px);
    animation: floatOrb 7s ease-in-out infinite;
}

.orb-one {
    width: 140px;
    height: 140px;
    top: 70px;
    left: 8%;
}

.orb-two {
    width: 110px;
    height: 110px;
    right: 12%;
    top: 160px;
    animation-delay: 1.2s;
}

.orb-three {
    width: 190px;
    height: 190px;
    left: 28%;
    bottom: 60px;
    animation-delay: 2s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -20px, 0) scale(1.06);
    }
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 48px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-copy {
    color: #ffffff;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.8;
}

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

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

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

.hero-tags span {
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.20);
}

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

.hero-poster {
    position: relative;
    justify-self: end;
    width: min(380px, 100%);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.30);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-float);
}

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

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-play,
.play-mark {
    position: absolute;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(6px);
}

.hero-play {
    width: 72px;
    height: 72px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
}

.hero-controls {
    position: absolute;
    left: 0;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    border: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    font-size: 24px;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dot.active {
    width: 28px;
    opacity: 1;
}

.featured-overlap {
    position: relative;
    z-index: 5;
    width: min(1240px, calc(100% - 32px));
    margin: -76px auto 80px;
}

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

.content-section {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 82px;
}

.content-section.no-margin {
    margin-bottom: 0;
}

.slim-section {
    margin-top: -28px;
}

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

.section-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 22px;
    color: #ffffff;
    font-size: 26px;
    background: linear-gradient(135deg, var(--strawberry), var(--candy));
    box-shadow: var(--shadow-soft);
}

.section-title h2,
.category-preview h2,
.slim-section h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.section-title p,
.category-preview p,
.slim-section p {
    margin: 6px 0 0;
    color: var(--muted);
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card,
.horizontal-card,
.category-card,
.text-card,
.category-preview {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover,
.horizontal-card:hover,
.category-card:hover,
.text-card:hover,
.category-preview:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 51, 102, 0.30);
    box-shadow: var(--shadow-float);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.20);
}

.movie-card.featured .movie-cover {
    aspect-ratio: 16 / 11;
}

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

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

.play-mark {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.duration,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.62);
}

.duration {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
}

.rank-badge {
    left: 12px;
    top: 12px;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--strawberry), var(--gummy));
}

.movie-info {
    padding: 20px;
}

.movie-info h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.35;
}

.movie-info h3 a {
    transition: color 0.25s ease;
}

.movie-info h3 a:hover {
    color: var(--strawberry);
}

.movie-desc {
    display: -webkit-box;
    margin: 0 0 14px;
    overflow: hidden;
    color: #4b5563;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 13px;
}

.tag-row span {
    padding: 6px 10px;
    color: var(--strawberry-deep);
    font-size: 12px;
    background: #fff1f3;
}

.soft-band,
.category-band {
    padding: 68px 0;
    margin-bottom: 82px;
}

.soft-band {
    background: linear-gradient(90deg, #fef1f9, #fff1f3);
}

.category-band {
    background: rgba(255, 255, 255, 0.72);
}

.horizontal-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.scroll-item {
    flex: 0 0 340px;
    scroll-snap-align: start;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
}

.horizontal-cover {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 16 / 10;
}

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

.horizontal-cover span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 30px;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.horizontal-card:hover .horizontal-cover span {
    opacity: 1;
}

.horizontal-body {
    align-self: center;
    min-width: 0;
}

.horizontal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 900;
}

.horizontal-title strong {
    min-width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--strawberry), var(--gummy));
}

.horizontal-body p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: #4b5563;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.category-card {
    display: block;
    padding: 24px;
}

.category-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--strawberry-deep);
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.page-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 34px auto 70px;
    border-radius: 44px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--strawberry), var(--candy), #ffa3b5);
    box-shadow: var(--shadow-float);
}

.compact-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 58px;
}

.stacked-sections {
    display: grid;
    gap: 38px;
}

.category-preview {
    padding: 28px;
}

.category-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    padding: 13px 16px;
}

.hidden-card {
    display: none !important;
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 26px;
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
}

.empty-state.open {
    display: block;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.inline-links a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--strawberry-deep);
    font-weight: 800;
    background: #fff1f3;
}

.ranking-top {
    margin-top: -44px;
}

.ranking-list {
    display: grid;
    gap: 18px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.26;
    filter: blur(8px);
    transform: scale(1.08);
}

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.86), rgba(255, 51, 170, 0.74), rgba(17, 24, 39, 0.88));
}

.detail-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 78px;
}

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

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

.detail-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.26);
    border-radius: 38px;
    box-shadow: var(--shadow-float);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    max-width: 860px;
}

.detail-one-line {
    max-width: 860px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.93);
    font-size: 20px;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-meta span {
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.20);
}

.detail-info .primary-button {
    display: inline-flex;
    margin-top: 28px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    background: #111827;
    box-shadow: var(--shadow-float);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.34), rgba(255, 51, 102, 0.36));
    font-size: 18px;
    font-weight: 900;
}

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

.player-button-icon {
    width: 86px;
    height: 86px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, var(--strawberry), var(--candy));
    box-shadow: var(--shadow-float);
}

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

.text-card {
    padding: 28px;
}

.text-card h2 {
    margin: 0 0 14px;
    color: var(--strawberry-deep);
    font-size: 26px;
}

.text-card p {
    margin: 0;
    color: #374151;
    line-height: 1.9;
}

.site-footer {
    padding: 54px 0 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.50), #fdf2f8);
}

.footer-grid {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 28px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--strawberry-deep);
    font-size: 20px;
}

.footer-grid p,
.footer-grid li {
    color: #4b5563;
    line-height: 1.75;
}

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

.footer-grid a:hover {
    color: var(--strawberry);
}

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 51, 102, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #6b7280;
}

.back-top {
    padding: 10px 18px;
}

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

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

    .mobile-search {
        margin-left: 0;
        width: 100%;
    }

    .mobile-search input {
        width: 100%;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 70px 0 110px;
    }

    .hero-poster {
        display: none;
    }

    .featured-grid,
    .three-columns,
    .four-columns,
    .category-grid,
    .category-grid.large,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-grid {
        grid-template-columns: 240px minmax(0, 1fr);
    }

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

@media (max-width: 720px) {
    .brand-text {
        font-size: 22px;
    }

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

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

    .hero-copy p,
    .page-hero p,
    .detail-one-line {
        font-size: 17px;
    }

    .hero-controls {
        bottom: 26px;
    }

    .featured-overlap {
        margin-top: -48px;
    }

    .featured-grid,
    .three-columns,
    .four-columns,
    .split-grid,
    .category-grid,
    .category-grid.large,
    .detail-text-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .compact-hero {
        padding: 38px 24px;
        border-radius: 32px;
    }

    .category-preview-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

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