:root {
    --color-red: #ef4444;
    --color-orange: #f97316;
    --color-pink: #ec4899;
    --color-purple: #8b5cf6;
    --color-blue: #60a5fa;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-soft: #fff7fb;
    --color-card: rgba(255, 255, 255, 0.86);
    --shadow-soft: 0 16px 48px rgba(236, 72, 153, 0.16);
    --shadow-card: 0 12px 30px rgba(31, 41, 55, 0.10);
    --radius-large: 28px;
    --radius-medium: 20px;
    --radius-small: 14px;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(255, 214, 224, 0.95), transparent 38%),
        radial-gradient(circle at top right, rgba(219, 234, 254, 0.95), transparent 36%),
        linear-gradient(180deg, #fff7fb 0%, #eff6ff 46%, #faf5ff 100%);
    font-size: 16px;
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: linear-gradient(90deg, rgba(255, 241, 242, 0.92), rgba(239, 246, 255, 0.92), rgba(250, 245, 255, 0.92));
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 32px rgba(236, 72, 153, 0.12);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(239, 68, 68, 0.28);
}

.brand-text,
.footer-brand span:last-child {
    font-size: 21px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    color: #374151;
    font-weight: 650;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-link:hover,
.nav-link-active {
    color: var(--color-pink);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.14);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 330px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.22s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 11px 14px;
    border-radius: 16px;
    font-weight: 750;
}

.dropdown-link span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 500;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, #fff1f2, #faf5ff);
    color: var(--color-pink);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #374151;
    border-radius: 99px;
}

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

.mobile-panel a {
    display: block;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 650;
}

.mobile-panel a:hover {
    background: rgba(255, 255, 255, 0.78);
    color: var(--color-pink);
}

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

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 48px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.45;
    animation: floatBlob 13s ease-in-out infinite alternate;
}

.hero::before {
    width: 330px;
    height: 330px;
    left: 4%;
    top: 14%;
    background: #fecdd3;
}

.hero::after {
    width: 390px;
    height: 390px;
    right: 5%;
    bottom: 6%;
    background: #ddd6fe;
    animation-delay: 2.4s;
}

@keyframes floatBlob {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(24px, -18px, 0) scale(1.08);
    }
}

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

.hero-carousel {
    position: relative;
    min-height: 560px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 46px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: var(--radius-large);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 247, 251, 0.62));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

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

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

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--color-pink);
    background: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.10);
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(34px, 5.6vw, 66px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 24px;
    color: #4b5563;
    font-size: 18px;
}

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

.hero-tags span,
.tag-list span,
.meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange));
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.28);
}

.btn-secondary,
.btn-ghost {
    color: #374151;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 36px rgba(236, 72, 153, 0.20);
}

.hero-media {
    position: relative;
}

.hero-media a {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(31, 41, 55, 0.22);
}

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

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

.hero-media::before {
    content: "";
    position: absolute;
    inset: 20px -20px -20px 20px;
    z-index: -1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.28), rgba(139, 92, 246, 0.22));
    filter: blur(1px);
}

.hero-play {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-pink));
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.32);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.22);
    transition: all 0.22s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.stat-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--color-red);
    font-size: 28px;
    line-height: 1.1;
}

.stat-card span {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

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

.section-head h2,
.page-title h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-head p,
.page-title p {
    max-width: 680px;
    margin: 8px 0 0;
    color: var(--color-muted);
}

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-medium);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(236, 72, 153, 0.20);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #ffe4e6, #dbeafe);
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.48));
    opacity: 0.75;
}

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

.duration-badge {
    right: 10px;
    bottom: 10px;
    padding: 4px 9px;
    background: rgba(0, 0, 0, 0.58);
}

.play-badge {
    left: 10px;
    bottom: 10px;
    padding: 4px 10px;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

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

.movie-card-body h3,
.movie-card-body h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 850;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-body p {
    min-height: 46px;
    margin: 0 0 12px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 24px;
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
}

.category-card::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.20), rgba(139, 92, 246, 0.18));
}

.category-card h2 {
    position: relative;
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 900;
}

.category-card p {
    position: relative;
    min-height: 52px;
    margin: 0 0 18px;
    color: var(--color-muted);
}

.category-card strong {
    display: block;
    margin-bottom: 18px;
    color: var(--color-red);
    font-size: 30px;
}

.category-samples {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.category-samples img {
    width: 58px;
    height: 78px;
    border: 3px solid rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(31, 41, 55, 0.12);
}

.category-samples img + img {
    margin-left: -18px;
}

.page-hero {
    padding: 58px 0 24px;
}

.page-title {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px;
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: var(--shadow-soft);
}

.toolbar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 14px;
    margin-bottom: 24px;
}

.search-input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 999px;
    outline: none;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.06);
}

.search-input:focus {
    border-color: rgba(236, 72, 153, 0.46);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.10);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.82);
    color: #4b5563;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.06);
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

.result-count {
    margin: 0 0 16px;
    color: var(--color-muted);
    font-weight: 750;
}

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

.compact-card a {
    display: grid;
    grid-template-columns: auto 116px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.compact-card a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.16);
}

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

.compact-card img {
    width: 116px;
    height: 74px;
    border-radius: 14px;
    object-fit: cover;
}

.compact-card h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 850;
}

.compact-card p {
    margin: 0 0 6px;
    color: var(--color-muted);
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.compact-card span {
    color: #6b7280;
    font-size: 12px;
    font-weight: 750;
}

.detail-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 60px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
}

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

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

.player-panel,
.detail-info,
.content-panel,
.related-panel {
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.player-panel {
    overflow: hidden;
}

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

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111827;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.64)),
        var(--poster-image, none);
    background-size: cover;
    background-position: center;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    box-shadow: 0 20px 48px rgba(239, 68, 68, 0.42);
    font-size: 34px;
}

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

.player-caption {
    padding: 16px 20px;
    color: var(--color-muted);
    font-size: 14px;
}

.detail-info {
    padding: 24px;
}

.detail-poster {
    overflow: hidden;
    margin-bottom: 18px;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffe4e6, #dbeafe);
}

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

.detail-info h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 900;
}

.detail-info .detail-subtitle {
    margin: 0 0 18px;
    color: var(--color-muted);
}

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

.detail-meta span {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 247, 251, 0.92);
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    margin-top: 24px;
}

.content-panel,
.related-panel {
    padding: 28px;
}

.content-panel h2,
.related-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 900;
}

.content-panel p {
    margin: 0 0 18px;
    color: #374151;
    line-height: 1.85;
}

.hidden {
    display: none !important;
}

.search-results {
    min-height: 260px;
}

.empty-state {
    padding: 34px;
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.76);
    color: var(--color-muted);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.site-footer {
    margin-top: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.78));
    border-top: 1px solid rgba(255, 255, 255, 0.72);
}

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

.footer-inner h2 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 900;
}

.footer-inner p,
.footer-inner li {
    color: var(--color-muted);
    font-size: 14px;
}

.footer-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-inner li + li {
    margin-top: 8px;
}

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

.footer-bottom {
    padding: 18px 16px;
    color: var(--color-muted);
    text-align: center;
    border-top: 1px solid rgba(209, 213, 219, 0.50);
    font-size: 13px;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 46px;
    height: 46px;
    display: none;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-pink));
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.26);
    font-weight: 900;
}

.back-to-top.is-visible {
    display: grid;
    place-items: center;
}

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

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

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

    .detail-poster {
        margin-bottom: 0;
    }

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

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

    .nav-toggle {
        display: block;
    }

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

    .hero {
        padding: 32px 0;
    }

    .hero-carousel {
        min-height: 0;
    }

    .hero-slide {
        padding: 22px;
    }

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

    .hero-media a {
        aspect-ratio: 16 / 10;
    }

    .section-head,
    .toolbar {
        display: block;
    }

    .filter-chips {
        margin-top: 12px;
    }

    .movie-grid,
    .category-grid,
    .compact-list,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .compact-card a {
        grid-template-columns: auto 96px minmax(0, 1fr);
    }

    .compact-card img {
        width: 96px;
        height: 66px;
    }

    .detail-info {
        display: block;
    }

    .detail-poster {
        max-width: 230px;
        margin: 0 auto 18px;
    }

    .content-panel,
    .related-panel,
    .page-title {
        padding: 22px;
    }
}
