:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --blue: #3b82f6;
    --green: #22c55e;
    --orange: #f97316;
    --yellow: #eab308;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.09);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-800);
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.14), transparent 30%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 32%),
        linear-gradient(135deg, #fdf2f8 0%, #eff6ff 48%, #f0fdf4 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.92), rgba(239, 246, 255, 0.92), rgba(240, 253, 244, 0.92));
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner,
.mobile-panel,
.page-shell,
.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

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

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

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--blue), var(--green));
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(236, 72, 153, 0.45);
}

.logo-text {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--pink), var(--blue), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
    transform: translateY(-1px);
}

.header-search,
.mobile-search,
.hero-search,
.filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-search input {
    border: 2px solid rgba(236, 72, 153, 0.18);
    outline: none;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 11px 16px;
    min-width: 220px;
    color: var(--gray-800);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-search input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.13);
}

.header-search button,
.mobile-search button,
.hero-search button,
.filter-search button,
.primary-btn,
.ghost-btn,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.hero-search button,
.primary-btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--blue), var(--green));
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.25);
}

.ghost-btn,
.section-more,
.filter-search button {
    color: var(--pink-dark);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(236, 72, 153, 0.18);
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.filter-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(236, 72, 153, 0.22);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--gray-800);
    font-size: 22px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 0 0 18px;
}

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

.mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.mobile-nav .nav-link {
    padding: 11px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
}

main {
    min-height: 60vh;
}

.page-shell {
    padding: 34px 0 70px;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 34px;
    padding: 8px;
    background: linear-gradient(120deg, rgba(236, 72, 153, 0.84), rgba(59, 130, 246, 0.84), rgba(34, 197, 94, 0.84));
    box-shadow: var(--shadow-soft);
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
}

.hero-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-glow-one {
    top: -80px;
    left: 9%;
    background: var(--pink);
}

.hero-glow-two {
    right: -70px;
    bottom: -80px;
    background: var(--green);
}

.hero-topline,
.hero-slider,
.hero-bottom {
    position: relative;
    z-index: 2;
}

.hero-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 26px 0;
    color: var(--gray-700);
    font-weight: 800;
}

.hero-topline strong {
    color: var(--pink-dark);
}

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

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 42px;
    align-items: center;
    padding: 40px;
}

.hero-slide.active {
    display: grid;
    animation: fadeUp 0.55s ease both;
}

.hero-kicker,
.page-title-card span,
.section-header span,
.detail-kicker {
    display: inline-flex;
    width: max-content;
    align-items: center;
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--pink-dark);
    background: rgba(236, 72, 153, 0.10);
    font-size: 14px;
    font-weight: 900;
}

.hero-copy h1 {
    margin: 22px 0 16px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--gray-900);
}

.hero-copy p {
    max-width: 660px;
    margin: 0;
    color: var(--gray-700);
    font-size: 18px;
}

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

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

.hero-tags span,
.tag-row span,
.rank-tags span {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 13px;
    font-weight: 700;
}

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

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
    transform: rotate(1.5deg);
    transition: transform 0.4s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: linear-gradient(135deg, #fdf2f8, #eff6ff);
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 55%);
}

.hero-poster span {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(236, 72, 153, 0.9);
    border-radius: 50%;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 26px 24px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.22);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
}

.content-section,
.page-title-card,
.filter-panel,
.category-card,
.detail-hero,
.player-section,
.detail-text-card {
    margin-top: 34px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.content-section {
    padding: 28px;
}

.soft-band {
    background: linear-gradient(90deg, rgba(255, 237, 213, 0.88), rgba(252, 231, 243, 0.88));
}

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

.section-header.compact {
    margin-bottom: 18px;
}

.section-header h2 {
    margin: 10px 0 0;
    color: var(--gray-900);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
}

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

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

.listing-grid {
    margin-top: 30px;
}

.horizontal-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 20px;
    overflow-x: auto;
    padding: 4px 4px 14px;
    scrollbar-width: thin;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.15);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f8fafc;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.42s ease;
}

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

.play-chip {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: #ffffff;
    background: rgba(236, 72, 153, 0.92);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    border-radius: 12px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 9px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 800;
}

.movie-meta-line a {
    color: var(--pink-dark);
}

.movie-card h3 {
    margin: 0 0 10px;
    color: var(--gray-900);
    font-size: 20px;
    line-height: 1.3;
}

.movie-card p {
    margin: 0 0 14px;
    color: var(--gray-600, #4b5563);
    font-size: 14px;
}

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

.category-tile,
.category-card-main {
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-radius: 22px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.92), rgba(239, 246, 255, 0.92), rgba(240, 253, 244, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.category-tile strong,
.category-card-main h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: 22px;
}

.category-tile span,
.category-card-main p {
    color: var(--gray-600, #4b5563);
}

.category-tile em,
.category-card-main strong {
    color: var(--pink-dark);
    font-style: normal;
    font-weight: 900;
}

.page-title-card {
    padding: 34px;
}

.page-title-card h1 {
    margin: 14px 0 10px;
    color: var(--gray-900);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-title-card p {
    max-width: 760px;
    margin: 0;
    color: var(--gray-700);
    font-size: 18px;
}

.category-overview-grid {
    margin-top: 26px;
}

.category-card {
    overflow: hidden;
}

.category-card-links {
    display: grid;
    gap: 8px;
    padding: 18px 22px 22px;
}

.category-card-links a {
    color: var(--gray-700);
    font-weight: 700;
}

.category-card-links a:hover {
    color: var(--pink-dark);
}

.filter-panel {
    padding: 22px;
}

.filter-search {
    align-items: stretch;
}

.filter-search input {
    flex: 1 1 auto;
    min-width: 0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-buttons button {
    border: none;
    border-radius: 999px;
    padding: 9px 13px;
    color: var(--gray-700);
    background: rgba(243, 244, 246, 0.88);
    font-weight: 800;
    cursor: pointer;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--blue));
}

.filter-count {
    margin: 14px 0 0;
    color: var(--gray-500);
    font-weight: 800;
}

.rank-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.rank-row {
    display: grid;
    grid-template-columns: 58px 128px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 12px;
}

.rank-num {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    border-radius: 16px;
    font-weight: 900;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 16px;
}

.rank-thumb img {
    width: 128px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.rank-content h3 {
    margin: 0 0 6px;
    color: var(--gray-900);
    font-size: 20px;
}

.rank-content p {
    margin: 0 0 10px;
    color: var(--gray-600, #4b5563);
}

.rank-heat {
    display: grid;
    justify-items: end;
    color: var(--pink-dark);
    font-weight: 900;
}

.rank-heat span {
    color: var(--gray-500);
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
    color: var(--gray-500);
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--pink-dark);
}

.detail-shell {
    max-width: 1180px;
}

.detail-breadcrumb {
    margin: 0 0 24px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 32px;
    padding: 30px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.20);
}

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

.detail-info h1 {
    margin: 16px 0 12px;
    color: var(--gray-900);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-one-line {
    margin: 0 0 22px;
    color: var(--gray-700);
    font-size: 19px;
}

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

.detail-meta-grid span {
    display: grid;
    gap: 3px;
    border-radius: 16px;
    padding: 14px;
    background: rgba(249, 250, 251, 0.88);
    color: var(--gray-700);
    font-weight: 800;
}

.detail-meta-grid strong {
    color: var(--gray-500);
    font-size: 12px;
}

.detail-tags {
    margin-bottom: 24px;
}

.player-section {
    padding: 28px;
}

.movie-player {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #020617;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.35);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 16px;
    border: none;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.20));
    cursor: pointer;
}

.player-play-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.35);
    font-size: 30px;
}

.player-cover strong {
    max-width: 80%;
    font-size: clamp(20px, 3vw, 34px);
}

.movie-player.is-playing .player-cover {
    display: none;
}

.player-controls {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.movie-player:hover .player-controls,
.movie-player.is-playing .player-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.player-controls button {
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    font-weight: 900;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.player-controls button:hover {
    background: rgba(236, 72, 153, 0.88);
}

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

.detail-text-card {
    padding: 28px;
}

.detail-text-card h2 {
    margin: 0 0 14px;
    color: var(--gray-900);
}

.detail-text-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
}

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.82), rgba(243, 244, 246, 0.94));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 42px 0;
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--gray-900);
}

.footer-grid p {
    margin: 0;
    color: var(--gray-600, #4b5563);
}

.footer-grid a {
    display: block;
    margin: 7px 0;
    color: var(--gray-700);
    font-weight: 700;
}

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

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

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

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

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

    .hero-slide {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 760px) {
    .header-inner,
    .mobile-panel,
    .page-shell,
    .footer-grid {
        width: min(100% - 22px, 1180px);
    }

    .logo-text {
        font-size: 20px;
    }

    .mobile-search,
    .hero-search,
    .filter-search {
        flex-direction: column;
        align-items: stretch;
    }

    .mobile-search input,
    .hero-search input,
    .filter-search input {
        width: 100%;
        min-width: 0;
    }

    .hero-shell {
        min-height: auto;
        border-radius: 24px;
    }

    .hero-shell::before {
        border-radius: 19px;
    }

    .hero-topline,
    .hero-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-slide {
        padding: 28px 18px;
        gap: 28px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .movie-grid,
    .compact-grid,
    .category-tile-grid,
    .category-overview-grid,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .page-title-card,
    .filter-panel,
    .detail-hero,
    .player-section,
    .detail-text-card {
        border-radius: 22px;
        padding: 20px;
    }

    .rank-row {
        grid-template-columns: 44px 92px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-thumb img {
        width: 92px;
    }

    .rank-heat {
        grid-column: 2 / -1;
        justify-items: start;
    }

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

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

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

    .player-controls {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        flex-wrap: wrap;
    }

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