:root {
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --orange: #f97316;
    --red: #ef4444;
    --pink: #ec4899;
    --blue: #2563eb;
    --green: #16a34a;
    --purple: #7c3aed;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.32);
    transform: translateZ(0);
    transition: transform 0.25s ease;
}

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

.brand-text {
    font-size: 22px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ea580c;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

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

.header-search input,
.mobile-search input,
.search-page-form input,
.category-filter input {
    width: 230px;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0 16px;
    outline: none;
    background: #fff;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.category-filter input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.header-search button,
.mobile-search button,
.search-page-form button,
.category-filter button {
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.2);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #111827;
    border-radius: 999px;
}

.mobile-panel {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f9fafb;
}

.hero-section {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 237, 213, 0.92), transparent 30%),
        linear-gradient(135deg, #f97316 0%, #ef4444 50%, #ec4899 100%);
    padding: 46px 0 54px;
    color: #fff;
    overflow: hidden;
}

.hero-carousel {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
}

.hero-slide {
    min-height: 540px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    position: relative;
    padding: 56px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.46), rgba(17, 24, 39, 0.2)),
        var(--hero-image) center / cover;
    box-shadow: var(--shadow);
}

.hero-slide.active {
    display: flex;
    animation: heroFade 0.55s ease both;
}

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

.hero-copy {
    width: min(620px, 100%);
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 900;
    color: #fed7aa;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 16px 0 16px;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.hero-copy p {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.hero-tags span,
.pill-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.pill-row span {
    color: #ea580c;
    background: #ffedd5;
}

.large-pills span {
    min-height: 34px;
    padding: 6px 14px;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 18px 36px rgba(239, 68, 68, 0.28);
}

.ghost-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    width: min(360px, 32vw);
    aspect-ratio: 2 / 3;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
    transition: transform 0.28s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-6px);
}

.hero-poster img,
.poster-link img,
.detail-poster img,
.category-thumbs img,
.rank-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-controls {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-prev,
.hero-next {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 34px;
    line-height: 1;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 34px;
    background: #fff;
}

.feature-strip {
    margin-top: -32px;
    position: relative;
    z-index: 3;
}

.feature-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-tile {
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-tile:hover,
.movie-card:hover,
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-tile span,
.category-card span {
    display: block;
    color: #ea580c;
    font-weight: 900;
    margin-bottom: 6px;
}

.feature-tile strong {
    display: block;
    font-size: 17px;
}

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

.content-section {
    padding: 58px 0;
}

.soft-section {
    width: 100%;
    padding-left: max(16px, calc((100% - 1240px) / 2));
    padding-right: max(16px, calc((100% - 1240px) / 2));
    background: linear-gradient(135deg, #fff7ed, #eff6ff);
}

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

.section-heading h2,
.rank-panel h2,
.detail-side h2,
.detail-block h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading a,
.compact-heading a {
    color: #ea580c;
    font-weight: 900;
}

.section-kicker {
    color: #ea580c;
    margin-bottom: 6px;
}

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

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

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

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

.movie-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-link {
    display: block;
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #111827;
}

.poster-link img {
    transition: transform 0.34s ease, filter 0.34s ease;
}

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

.score-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.32);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(12px);
}

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

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

.movie-title {
    display: -webkit-box;
    min-height: 52px;
    color: #111827;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 900;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-title:hover {
    color: #ea580c;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 10px 0 14px;
    color: #6b7280;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 12px;
}

.wide-card {
    display: grid;
    grid-template-columns: 160px 1fr;
}

.wide-card .poster-link {
    aspect-ratio: auto;
    min-height: 230px;
}

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

.category-card {
    display: grid;
    grid-template-rows: 150px 1fr;
    overflow: hidden;
    border-radius: 24px;
    color: #111827;
    background: #fff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: #111827;
}

.category-card > div:last-child {
    padding: 20px;
}

.category-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.category-card p {
    margin: 0;
    color: #6b7280;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
}

.rank-panel,
.detail-side {
    align-self: start;
    padding: 24px;
    border-radius: var(--radius);
    background: #111827;
    color: #fff;
    box-shadow: var(--shadow);
}

.rank-panel h2,
.detail-side h2 {
    margin-bottom: 18px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(4px);
}

.rank-row img {
    width: 54px;
    height: 74px;
    border-radius: 12px;
}

.rank-num {
    font-size: 18px;
    font-weight: 900;
    color: #fed7aa;
}

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

.rank-info strong {
    color: #fff;
    line-height: 1.4;
}

.rank-info em {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-style: normal;
}

.seo-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 64px;
    padding: 38px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ef4444 55%, #ec4899);
    box-shadow: var(--shadow);
}

.seo-panel span {
    font-weight: 900;
    color: #ffedd5;
}

.seo-panel h2 {
    margin: 8px 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
}

.seo-panel p {
    margin: 0;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero {
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 56px max(16px, calc((100% - 1240px) / 2));
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ef4444 55%, #ec4899);
}

.page-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

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

.search-page-form input,
.category-filter input {
    width: min(420px, 58vw);
}

.category-filter {
    padding: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

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

.detail-hero {
    position: relative;
    min-height: 680px;
    padding: 48px 0;
    color: #fff;
    background: var(--detail-image) center / cover;
    overflow: hidden;
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.4)),
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.35), transparent 34%);
    backdrop-filter: blur(6px);
}

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

.detail-grid {
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: 44px;
    align-items: center;
}

.detail-poster {
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.detail-copy h1 {
    margin: 14px 0 16px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.detail-line {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
}

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

.detail-meta span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 800;
}

.watch-section {
    padding: 58px 0 34px;
}

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

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

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.play-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
}

.play-cover.hidden {
    display: none;
}

.play-cover span {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 34px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 20px 44px rgba(239, 68, 68, 0.42);
    transition: transform 0.2s ease;
}

.play-cover:hover span {
    transform: scale(1.08);
}

.player-title {
    padding: 22px 26px 28px;
    color: #fff;
}

.player-title h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.player-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    padding: 28px 0 42px;
}

.detail-main {
    display: grid;
    gap: 22px;
}

.detail-block {
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.detail-block h2 {
    margin-bottom: 14px;
}

.detail-block p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.related-section {
    padding-top: 22px;
}

.search-status {
    margin-bottom: 22px;
    padding: 18px 22px;
    border-radius: 18px;
    color: #374151;
    background: #fff;
    box-shadow: var(--soft-shadow);
    font-weight: 800;
}

.no-results {
    grid-column: 1 / -1;
    padding: 48px;
    text-align: center;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--soft-shadow);
    color: #6b7280;
}

.site-footer {
    margin-top: 24px;
    color: #d1d5db;
    background: #111827;
}

.footer-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    color: #fff;
    font-size: 22px;
}

.footer-shell p {
    max-width: 560px;
    margin: 16px 0 0;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-content: start;
    justify-content: flex-end;
}

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

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

    .nav-shell {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .feature-shell,
    .category-grid,
    .four-col,
    .ranking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-section,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .detail-side {
        width: 100%;
    }
}

@media (max-width: 820px) {
    .hero-slide {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 34px;
    }

    .hero-poster {
        width: min(260px, 75vw);
    }

    .feature-shell,
    .movie-list-grid,
    .three-col,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-page-form,
    .category-filter {
        width: 100%;
    }

    .search-page-form input,
    .category-filter input {
        flex: 1;
        width: 100%;
    }

    .footer-shell {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

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

    .hero-section {
        padding-top: 24px;
    }

    .hero-slide {
        padding: 24px;
        border-radius: 24px;
    }

    .hero-actions,
    .seo-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-shell,
    .category-grid,
    .four-col,
    .ranking-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        display: block;
    }

    .wide-card .poster-link {
        aspect-ratio: 2 / 3;
    }

    .content-section {
        padding: 42px 0;
    }

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

    .detail-hero {
        min-height: auto;
    }

    .detail-copy h1,
    .hero-copy h1,
    .page-hero h1 {
        letter-spacing: -0.04em;
    }

    .play-cover span {
        width: 74px;
        height: 74px;
        font-size: 28px;
    }
}
