:root {
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-soft: #fff7ed;
    --color-pink: #f472b6;
    --color-orange: #f97316;
    --color-yellow: #facc15;
    --color-red: #ef4444;
    --shadow-soft: 0 20px 45px rgba(249, 115, 22, 0.14);
    --shadow-card: 0 14px 34px rgba(31, 41, 55, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--color-text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 34%, #fdf2f8 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.94), rgba(253, 242, 248, 0.94), rgba(254, 252, 232, 0.94));
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.12);
}

.nav-shell {
    max-width: 1280px;
    height: 80px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--color-orange), var(--color-pink));
    box-shadow: 0 12px 24px rgba(244, 114, 182, 0.35);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-5deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 24px;
    background: linear-gradient(90deg, #ea580c, #db2777, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 500;
}

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

.nav-link,
.mobile-nav-link {
    padding: 10px 16px;
    border-radius: 12px;
    color: #374151;
    font-weight: 700;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ea580c;
    background: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.14);
}

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

.nav-search input,
.mobile-search input,
.inline-filter,
.search-panel input {
    border: 2px solid #fed7aa;
    border-radius: 999px;
    background: white;
    outline: none;
    color: var(--color-text);
    transition: all 0.25s ease;
}

.nav-search input {
    width: 220px;
    padding: 10px 16px;
}

.nav-search input:focus,
.mobile-search input:focus,
.inline-filter:focus,
.search-panel input:focus {
    border-color: var(--color-pink);
    box-shadow: 0 0 0 5px rgba(244, 114, 182, 0.14);
}

.nav-search button,
.mobile-search button {
    border: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-pink));
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 10px 12px;
    background: white;
    color: #374151;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.08);
}

.mobile-panel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 18px;
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mobile-search input {
    flex: 1;
    padding: 11px 16px;
}

.mobile-nav {
    display: grid;
    gap: 8px;
}

.hero-section {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: linear-gradient(110deg, #fb923c, #f472b6 52%, #facc15);
}

.hero-bg-glow {
    position: absolute;
    inset: -25%;
    background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.32), transparent 32%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.24), transparent 28%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-slider {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px 96px;
}

.hero-slide {
    position: absolute;
    inset: 54px 24px 96px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: center;
    gap: 54px;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-content {
    color: white;
    max-width: 760px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-content h1 span {
    display: block;
    margin-top: 12px;
    color: #fef08a;
    font-size: clamp(28px, 5vw, 56px);
}

.hero-content p {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.8;
}

.hero-actions,
.detail-copy .primary-button {
    margin-top: 34px;
}

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: all 0.25s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    color: white;
    background: linear-gradient(135deg, #f97316, #ec4899);
    box-shadow: 0 16px 30px rgba(236, 72, 153, 0.28);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(236, 72, 153, 0.34);
}

.ghost-button {
    min-height: 48px;
    margin-left: 12px;
    padding: 0 22px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.ghost-button:hover {
    background: white;
    color: #ea580c;
}

.hero-poster {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 460px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 36px 80px rgba(127, 29, 29, 0.24);
    transform: rotate(2deg);
}

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

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

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

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

.hero-dot.active {
    width: 38px;
    background: white;
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    background: linear-gradient(0deg, #fff7ed, rgba(255, 247, 237, 0));
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.compact-section {
    padding-top: 68px;
    padding-bottom: 68px;
}

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

.section-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-orange), var(--color-pink));
    box-shadow: 0 14px 30px rgba(244, 114, 182, 0.25);
}

.section-heading h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.section-heading p {
    margin: 7px 0 0;
    color: var(--color-muted);
}

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

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

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

.movie-card,
.horizontal-card,
.article-panel,
.player-card,
.category-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(254, 215, 170, 0.72);
    box-shadow: var(--shadow-card);
}

.movie-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(31, 41, 55, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

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

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

.poster-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, #f97316, #ec4899);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

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

.rank-badge,
.horizontal-rank {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.28);
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.movie-card h3,
.horizontal-card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.32;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover {
    color: #ea580c;
}

.movie-card p,
.horizontal-card p,
.category-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span,
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
}

.tag-row span {
    padding: 6px 10px;
}

.soft-band {
    background: linear-gradient(90deg, #fce7f3, #ffedd5, #fef9c3);
}

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

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

.horizontal-card {
    position: relative;
    min-height: 190px;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-xl);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(31, 41, 55, 0.14);
}

.horizontal-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

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

.horizontal-rank {
    left: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.horizontal-content {
    min-width: 0;
}

.text-link {
    margin-top: 14px;
    color: #ea580c;
    font-size: 14px;
}

.text-link:hover {
    color: #db2777;
    transform: translateX(3px);
}

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

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 22px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 50px rgba(31, 41, 55, 0.16);
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.78));
}

.category-card span {
    font-size: 24px;
    font-weight: 900;
}

.category-card p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.84);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #fb923c, #f472b6 52%, #facc15);
    color: white;
}

.page-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
    padding: 70px 24px;
}

.page-hero > div {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 68px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.8;
}

.search-panel {
    max-width: 760px;
    margin-top: 28px;
}

.search-panel input {
    width: 100%;
    padding: 17px 22px;
    font-size: 18px;
}

.filter-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.inline-filter {
    width: min(520px, 100%);
    padding: 13px 18px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-chip {
    border: 0;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-chip.active,
.filter-chip:hover {
    color: white;
    background: linear-gradient(135deg, var(--color-orange), var(--color-pink));
    box-shadow: 0 12px 26px rgba(236, 72, 153, 0.22);
}

.empty-state {
    padding: 32px;
    border-radius: var(--radius-xl);
    color: var(--color-muted);
    background: white;
    text-align: center;
}

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

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

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

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(249, 115, 22, 0.92), rgba(236, 72, 153, 0.88), rgba(250, 204, 21, 0.78));
}

.detail-shell {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px 72px;
}

.breadcrumb,
.breadcrumb-sep {
    display: inline-flex;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

.breadcrumb:hover {
    color: #fef08a;
}

.breadcrumb-sep {
    margin-left: 10px;
    margin-right: 10px;
}

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

.detail-cover {
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 36px 80px rgba(127, 29, 29, 0.26);
}

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

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

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

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

.detail-meta-grid span {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 48px;
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.detail-meta-grid strong {
    color: #fef08a;
}

.large-tags span {
    color: white;
    background: rgba(255, 255, 255, 0.18);
}

.player-section {
    max-width: 1280px;
    margin: -58px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 6;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 34px 80px rgba(17, 24, 39, 0.28);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: white;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.22), rgba(17, 24, 39, 0.58));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ec4899);
    font-size: 32px;
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.32);
}

.play-overlay strong {
    font-size: 18px;
}

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

.detail-content {
    padding-top: 54px;
}

.article-panel {
    border-radius: var(--radius-xl);
    padding: 34px;
}

.article-panel h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.article-panel h2:not(:first-child) {
    margin-top: 30px;
}

.article-panel p {
    margin: 0;
    color: #4b5563;
    line-height: 2;
    font-size: 17px;
}

.site-footer {
    margin-top: 64px;
    background: linear-gradient(90deg, #fff7ed, #fdf2f8, #fefce8);
    border-top: 1px solid #fed7aa;
}

.footer-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: start;
}

.footer-brand {
    font-size: 24px;
    color: #ea580c;
}

.footer-shell p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--color-muted);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 22px;
    color: #4b5563;
    font-weight: 700;
}

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

.footer-bottom {
    padding: 18px 24px 26px;
    color: var(--color-muted);
    text-align: center;
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1180px) {
    .nav-search input {
        width: 170px;
    }

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

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

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

@media (max-width: 920px) {
    .nav-shell {
        height: 72px;
    }

    .main-nav,
    .nav-search {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .brand-name {
        font-size: 21px;
    }

    .hero-section {
        height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 26px;
        inset: 42px 24px 96px;
    }

    .hero-poster {
        min-height: 310px;
        max-height: 340px;
        transform: none;
    }

    .hero-poster img {
        min-height: 310px;
    }

    .featured-grid,
    .movie-grid,
    .all-grid,
    .horizontal-grid,
    .ranking-list,
    .category-grid,
    .category-grid.large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 640px) {
    .nav-shell,
    .mobile-panel,
    .hero-slider,
    .content-section,
    .detail-shell,
    .player-section,
    .footer-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-section {
        height: 780px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h1 span {
        font-size: 30px;
    }

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

    .ghost-button {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
        align-items: stretch;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .featured-grid,
    .movie-grid,
    .all-grid,
    .horizontal-grid,
    .ranking-list,
    .category-grid,
    .category-grid.large {
        grid-template-columns: 1fr;
    }

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

    .filter-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .page-hero {
        min-height: 280px;
        padding: 56px 16px;
    }

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

    .detail-cover {
        max-width: 240px;
    }

    .article-panel {
        padding: 24px;
    }

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

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