:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --accent-500: #d97706;
    --accent-600: #b45309;
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    --white: #ffffff;
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --shadow-strong: 0 25px 60px rgba(15, 23, 42, 0.24);
    --radius-lg: 18px;
    --radius-md: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--secondary-900);
    background: var(--secondary-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

img {
    width: 100%;
    height: auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--secondary-200);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--secondary-900);
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.brand-name {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

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

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

.nav-link {
    color: var(--secondary-700);
    font-size: 0.95rem;
    font-weight: 650;
    white-space: nowrap;
    transition: color 0.18s ease;
}

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

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(240px, 24vw);
    flex-shrink: 0;
}

.header-search input {
    width: 100%;
    height: 40px;
    padding: 0 42px 0 14px;
    border: 1px solid var(--secondary-300);
    border-radius: 12px;
    color: var(--secondary-800);
    background: var(--white);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.header-search input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.header-search button {
    position: absolute;
    right: 8px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--secondary-600);
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    color: var(--secondary-800);
    border-radius: 12px;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 18px;
    border-top: 1px solid var(--secondary-200);
}

.mobile-panel.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    animation: slideDown 0.28s ease-out;
}

.mobile-nav-link {
    padding: 10px 12px;
    color: var(--secondary-700);
    background: var(--secondary-100);
    border-radius: 12px;
    font-weight: 650;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 72px;
    z-index: 3;
    transform: translateX(-50%);
}

.hero-copy {
    max-width: 760px;
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 750;
}

.hero-copy h1 {
    max-width: 850px;
    margin: 0 0 18px;
    font-size: clamp(2.3rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

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

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

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 650;
}

.hero-actions,
.intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--primary-600);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.28);
}

.button-primary:hover {
    background: var(--primary-700);
}

.button-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-light {
    color: var(--secondary-800);
    background: var(--secondary-100);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
    font-size: 2.4rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.18s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    transition: width 0.18s ease, background 0.18s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--white);
}

.hero-rail {
    position: absolute;
    right: calc((100vw - min(1280px, calc(100vw - 32px))) / 2);
    bottom: 76px;
    z-index: 7;
    display: grid;
    gap: 12px;
    width: 320px;
}

.hero-mini-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.hero-mini-card img {
    height: 56px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-mini-card strong,
.hero-mini-card em {
    display: block;
}

.hero-mini-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.95rem;
}

.hero-mini-card em {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-style: normal;
}

.content-section {
    margin-top: 64px;
}

.intro-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.intro-panel h1 {
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.intro-panel p {
    color: var(--secondary-600);
    line-height: 1.8;
}

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

.section-heading h2 {
    margin-bottom: 6px;
    color: var(--secondary-900);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p {
    color: var(--secondary-600);
    line-height: 1.6;
}

.section-more {
    flex-shrink: 0;
    color: var(--primary-600);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--secondary-200);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.movie-poster-link {
    display: block;
}

.movie-poster {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-200), var(--secondary-100));
}

.movie-card-large .movie-poster {
    aspect-ratio: 16 / 9;
}

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

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

.movie-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 9px;
    color: var(--white);
    background: rgba(2, 132, 199, 0.88);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
}

.movie-card-body {
    padding: 16px;
}

.movie-card-body h2 {
    display: -webkit-box;
    min-height: 2.9em;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--secondary-900);
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 850;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-body h2 a:hover {
    color: var(--primary-600);
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 3.9em;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--secondary-600);
    font-size: 0.88rem;
    line-height: 1.55;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--secondary-500);
    font-size: 0.78rem;
    font-weight: 700;
}

.category-preview {
    padding: 28px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

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

.category-chip {
    display: block;
    min-height: 110px;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-900), var(--primary-700));
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease;
}

.category-chip:hover {
    transform: translateY(-3px);
}

.category-chip span,
.category-chip em {
    display: block;
}

.category-chip span {
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 900;
}

.category-chip em {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    line-height: 1.55;
    font-style: normal;
}

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

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

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

.rank-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--secondary-200);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.rank-link {
    display: grid;
    grid-template-columns: 54px 90px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
}

.rank-number {
    color: var(--accent-500);
    font-size: 1.35rem;
    font-weight: 900;
    text-align: center;
}

.rank-card img {
    height: 66px;
    object-fit: cover;
    border-radius: 12px;
}

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

.rank-info strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--secondary-900);
    line-height: 1.35;
    font-weight: 850;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-info em {
    margin-top: 6px;
    color: var(--secondary-500);
    font-size: 0.82rem;
    font-style: normal;
}

.year-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.year-pill {
    padding: 10px 16px;
    color: var(--secondary-700);
    background: var(--secondary-100);
    border-radius: 12px;
    font-weight: 800;
}

.year-pill:hover {
    color: var(--white);
    background: var(--accent-500);
}

.page-main {
    padding-top: 36px;
    padding-bottom: 36px;
}

.page-hero {
    margin-bottom: 34px;
    padding: 42px;
    color: var(--secondary-900);
    background: linear-gradient(135deg, var(--primary-50), var(--white));
    border: 1px solid var(--primary-100);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    color: var(--primary-700);
    background: var(--primary-100);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 900;
}

.page-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 780px;
    color: var(--secondary-600);
    font-size: 1.05rem;
    line-height: 1.85;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--secondary-500);
    font-size: 0.92rem;
    font-weight: 700;
}

.breadcrumb a:hover {
    color: var(--primary-600);
}

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

.category-overview-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--secondary-200);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    height: 160px;
    background: var(--secondary-200);
}

.category-cover-stack img {
    height: 100%;
    object-fit: cover;
}

.category-overview-body {
    padding: 22px;
}

.category-overview-body h2 {
    margin-bottom: 8px;
    font-size: 1.35rem;
    font-weight: 900;
}

.category-overview-body p {
    color: var(--secondary-600);
    line-height: 1.7;
}

.search-toolbar {
    position: sticky;
    top: 88px;
    z-index: 40;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--secondary-200);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.search-toolbar input,
.search-toolbar select {
    min-height: 46px;
    padding: 0 14px;
    color: var(--secondary-800);
    background: var(--white);
    border: 1px solid var(--secondary-300);
    border-radius: 12px;
    outline: none;
}

.search-result-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.search-result-title h2 {
    font-size: 1.8rem;
    font-weight: 900;
}

.search-result-title p {
    color: var(--secondary-600);
}

.empty-state {
    display: none;
    padding: 40px;
    color: var(--secondary-600);
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

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

.detail-main {
    padding-top: 0;
}

.detail-hero {
    min-height: 620px;
    padding: 44px 0 70px;
    color: var(--white);
    background-position: center;
    background-size: cover;
}

.detail-breadcrumb {
    color: rgba(255, 255, 255, 0.78);
}

.detail-breadcrumb a:hover {
    color: var(--white);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 44px;
    align-items: end;
    min-height: 470px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
}

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

.detail-copy h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 820px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
    line-height: 1.85;
}

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

.detail-meta span {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 750;
}

.detail-content {
    margin-top: -58px;
}

.player-section,
.detail-text-card {
    margin-bottom: 34px;
}

.player-box {
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.32);
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    padding-left: 5px;
    color: var(--white);
    background: rgba(2, 132, 199, 0.88);
    border-radius: 999px;
    font-size: 2rem;
    box-shadow: 0 14px 35px rgba(2, 132, 199, 0.32);
}

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

.detail-text-card {
    padding: 34px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.detail-text-card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    font-weight: 900;
}

.detail-text-card h2:not(:first-child) {
    margin-top: 30px;
}

.detail-text-card p {
    color: var(--secondary-700);
    font-size: 1.03rem;
    line-height: 2;
}

.site-footer {
    margin-top: 70px;
    color: var(--white);
    background: var(--secondary-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.4fr;
    gap: 34px;
    padding: 48px 0;
}

.footer-brand {
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 900;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 1.05rem;
    font-weight: 850;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a:hover {
    color: var(--primary-100);
}

.footer-bottom {
    padding: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
    .hero-rail {
        display: none;
    }

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

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

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .hero {
        height: 560px;
    }

    .hero-content {
        bottom: 64px;
    }

    .featured-grid,
    .preview-rank-list,
    .full-rank-list,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .detail-hero-grid {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 28px;
    }

    .search-toolbar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container,
    .mobile-panel {
        width: min(100% - 24px, 1280px);
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero {
        height: 520px;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-arrow {
        display: none;
    }

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

    .movie-card-body {
        padding: 12px;
    }

    .movie-card-body p {
        display: none;
    }

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

    .page-hero,
    .detail-text-card,
    .intro-panel,
    .category-preview {
        padding: 22px;
        border-radius: 20px;
    }

    .rank-link {
        grid-template-columns: 42px 76px 1fr;
        gap: 10px;
    }

    .rank-card img {
        height: 58px;
    }

    .search-toolbar {
        position: static;
        grid-template-columns: 1fr;
    }

    .detail-hero {
        min-height: auto;
        padding-bottom: 100px;
    }

    .detail-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

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

    .detail-content {
        margin-top: -76px;
    }

    .play-overlay span {
        width: 68px;
        height: 68px;
        font-size: 1.5rem;
    }
}
