:root {
    --rose-900: #881337;
    --rose-800: #9f1239;
    --rose-700: #be123c;
    --rose-600: #e11d48;
    --rose-500: #f43f5e;
    --rose-100: #ffe4e6;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --orange-100: #ffedd5;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow-soft: 0 18px 55px rgba(136, 19, 55, 0.15);
    --shadow-card: 0 12px 35px rgba(17, 24, 39, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gray-900);
    background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 44%, #ffffff 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(244, 63, 94, 0.16);
    box-shadow: 0 8px 30px rgba(136, 19, 55, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 18px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.26);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong,
.footer-brand span:last-child {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--rose-700), var(--orange-600));
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text em {
    margin-top: 5px;
    font-style: normal;
    font-size: 12px;
    color: var(--gray-500);
}

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

.nav-link {
    position: relative;
    color: var(--gray-700);
    font-weight: 700;
    padding: 24px 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--rose-700);
}

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

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.header-search input,
.mobile-search input {
    width: 180px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 11px 14px;
    color: var(--gray-800);
}

.header-search button,
.mobile-search button {
    border: 0;
    color: var(--white);
    font-weight: 800;
    padding: 11px 16px;
    background: linear-gradient(90deg, var(--rose-600), var(--orange-500));
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 228, 230, 0.8);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--rose-800);
    border-radius: 10px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(244, 63, 94, 0.16);
    padding: 14px 16px 18px;
    background: rgba(255, 255, 255, 0.96);
}

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

.mobile-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--gray-700);
    font-weight: 700;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--rose-700);
    background: var(--rose-100);
}

.mobile-search {
    margin-top: 10px;
}

.mobile-search input {
    flex: 1;
    width: auto;
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--gray-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.9s ease;
}

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

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(136, 19, 55, 0.94) 0%, rgba(190, 18, 60, 0.78) 38%, rgba(234, 88, 12, 0.52) 66%, rgba(3, 7, 18, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-copy {
    width: min(650px, 100%);
}

.hero-kicker,
.detail-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #ffe4e6;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-copy p {
    margin: 0 0 26px;
    max-width: 590px;
    color: #ffe4e6;
    font-size: 20px;
    line-height: 1.75;
}

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

.hero-chips span,
.detail-chips span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

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

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

.btn-light {
    color: var(--rose-700);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.24);
}

.btn-ghost {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-control {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-prev,
.hero-next {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    font-size: 28px;
    line-height: 1;
}

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

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

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

.section {
    padding: 66px 0;
}

.soft-section {
    background: linear-gradient(135deg, rgba(255, 228, 230, 0.66), rgba(255, 237, 213, 0.78));
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.section-head p {
    margin: 12px 0 0;
    color: var(--gray-600);
    font-size: 16px;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rose-700);
    font-weight: 900;
    white-space: nowrap;
}

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

.category-pill {
    display: flex;
    min-height: 140px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid rgba(244, 63, 94, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-pill:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.category-pill span {
    color: var(--rose-800);
    font-size: 22px;
    font-weight: 900;
}

.category-pill em {
    color: var(--gray-600);
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

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

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0) 42%, rgba(3, 7, 18, 0.78) 100%);
    opacity: 0.8;
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.84);
    border-radius: 999px;
    color: var(--rose-700);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

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

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose-600), var(--orange-500));
    box-shadow: 0 10px 24px rgba(225, 29, 72, 0.28);
}

.movie-info {
    padding: 16px 16px 18px;
}

.movie-meta-line {
    display: flex;
    gap: 10px;
    color: var(--rose-700);
    font-size: 13px;
    font-weight: 800;
}

.movie-info h3 {
    margin: 9px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-info h3 a:hover {
    color: var(--rose-700);
}

.movie-info p {
    min-height: 47px;
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
}

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

.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--rose-700);
    background: var(--rose-100);
    font-size: 12px;
    font-weight: 800;
}

.movie-card.compact .movie-info h3 {
    font-size: 16px;
}

.movie-card.compact .movie-info p {
    display: none;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 94px;
    padding: 22px;
    border: 1px solid rgba(244, 63, 94, 0.16);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.rank-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rank-panel-head h2 {
    margin: 0;
    font-size: 24px;
}

.rank-panel-head a {
    color: var(--rose-700);
    font-weight: 900;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.page-main {
    min-height: 60vh;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 78px;
    color: var(--white);
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.28), transparent 26%), linear-gradient(135deg, var(--rose-800), var(--rose-600) 45%, var(--orange-500));
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #ffe4e6;
    font-size: 18px;
    line-height: 1.8;
}

.small-actions {
    margin-top: 26px;
}

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

.category-card {
    min-height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.category-card a {
    position: relative;
    display: block;
    height: 100%;
    min-height: 280px;
    color: var(--white);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(136, 19, 55, 0.9), rgba(234, 88, 12, 0.48));
}

.category-card div {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px;
}

.category-card h2 {
    margin: 0 0 12px;
    font-size: 34px;
}

.category-card p {
    max-width: 520px;
    margin: 0 0 18px;
    color: #ffe4e6;
    line-height: 1.7;
}

.category-card span:last-child {
    font-weight: 900;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid rgba(244, 63, 94, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.filter-input,
.filter-select {
    min-height: 48px;
    border: 1px solid rgba(244, 63, 94, 0.22);
    border-radius: 999px;
    outline: 0;
    background: var(--white);
    color: var(--gray-800);
}

.filter-input {
    flex: 1;
    padding: 0 18px;
}

.filter-select {
    padding: 0 16px;
}

.filter-status {
    color: var(--gray-600);
    font-weight: 700;
    white-space: nowrap;
}

.filter-list .movie-card.is-hidden {
    display: none;
}

.detail-main {
    background: #fff7ed;
}

.detail-hero {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    color: var(--white);
}

.detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.88), rgba(136, 19, 55, 0.74), rgba(234, 88, 12, 0.44));
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0 52px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: #ffe4e6;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.detail-title-wrap {
    max-width: 780px;
}

.detail-title-wrap h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.detail-title-wrap p {
    margin: 0 0 24px;
    color: #ffe4e6;
    font-size: 19px;
    line-height: 1.8;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--gray-950);
    box-shadow: 0 24px 70px rgba(3, 7, 18, 0.3);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--gray-950);
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--rose-700);
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.68));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-button {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
    font-size: 34px;
    padding-left: 6px;
}

.detail-card,
.related-panel {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid rgba(244, 63, 94, 0.14);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.stats-row span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 800;
}

.stats-row strong,
.stats-row a {
    color: var(--rose-700);
}

.detail-card h2,
.related-panel h2 {
    margin: 0 0 15px;
    font-size: 24px;
}

.detail-card p {
    margin: 0 0 24px;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.95;
}

.related-panel {
    position: sticky;
    top: 94px;
    margin-top: 0;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.related-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #fff7ed;
    transition: transform 0.2s ease, background 0.2s ease;
}

.related-item:hover {
    transform: translateX(4px);
    background: var(--rose-100);
}

.related-item img {
    width: 88px;
    height: 66px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 12px;
}

.related-item strong {
    display: block;
    color: var(--gray-900);
    line-height: 1.45;
}

.related-item em {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

.site-footer {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-900), var(--orange-600));
}

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

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand .brand-mark {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.footer-brand span:last-child {
    color: var(--white);
    background: none;
    -webkit-background-clip: initial;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: #ffe4e6;
    line-height: 1.75;
}

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

.site-footer a:hover {
    color: var(--white);
}

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

@media (max-width: 1080px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .rank-panel,
    .related-panel {
        position: static;
    }

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

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

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(136, 19, 55, 0.9), rgba(234, 88, 12, 0.46), rgba(3, 7, 18, 0.72));
    }

    .hero-copy p {
        font-size: 17px;
    }

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

    .category-grid,
    .movie-grid,
    .compact-grid,
    .category-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .filter-select,
    .filter-input {
        width: 100%;
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-text strong {
        font-size: 17px;
    }

    .hero {
        height: 620px;
    }

    .hero-copy h1,
    .detail-title-wrap h1 {
        font-size: 42px;
    }

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

    .btn {
        width: 100%;
    }

    .category-grid,
    .movie-grid,
    .compact-grid,
    .category-card-grid,
    .rank-grid {
        grid-template-columns: 1fr;
    }

    .category-pill {
        min-height: auto;
    }

    .page-hero {
        padding: 62px 0;
    }

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

    .detail-card,
    .related-panel {
        padding: 20px;
    }

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