:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-100: #dbeafe;
    --green-100: #dcfce7;
    --amber-100: #fef3c7;
    --white: #ffffff;
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.18);
    --radius-lg: 18px;
    --radius-md: 14px;
    --max-width: 1180px;
}

* {
    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(--slate-800);
    background: var(--slate-50);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), #0ea5e9);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

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

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

.nav-link,
.mobile-nav-link {
    border-radius: 12px;
    color: var(--slate-600);
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 9px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover {
    color: var(--blue-600);
    background: var(--blue-100);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--slate-100);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--slate-700);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    border-top: 1px solid var(--slate-200);
    background: var(--white);
}

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

.mobile-nav-link {
    padding: 11px 13px;
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-900);
}

.hero-track {
    position: relative;
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 90px 20px 110px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-bg {
    position: fixed;
    inset: 68px 0 auto 0;
    height: 680px;
    background-size: cover;
    background-position: center;
    opacity: 0.92;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 15%, rgba(59, 130, 246, 0.28), transparent 28%), radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.16), transparent 25%);
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--blue-600);
}

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

.hero-one-line {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--slate-200);
    font-size: clamp(18px, 2vw, 24px);
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span,
.detail-meta span {
    padding: 7px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-actions,
.simple-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

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

.primary-btn {
    color: var(--white);
    background: var(--blue-600);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

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

.primary-btn:hover {
    background: var(--blue-700);
    box-shadow: 0 22px 45px rgba(37, 99, 235, 0.34);
}

.secondary-btn {
    color: var(--slate-700);
    background: var(--slate-100);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-poster {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.46);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(37, 99, 235, 0.9);
    box-shadow: 0 18px 50px rgba(37, 99, 235, 0.42);
}

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

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-prev,
.hero-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dot.active {
    width: 32px;
    opacity: 1;
    background: var(--blue-500);
}

.feature-strip,
.section-block,
.ranking-preview,
.page-shell {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: -54px;
    position: relative;
    z-index: 5;
}

.feature-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    color: var(--slate-700);
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.feature-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--slate-900);
    font-size: 20px;
}

.section-block {
    padding-top: 72px;
    padding-bottom: 72px;
}

.section-muted {
    max-width: none;
    margin: 0;
    padding-left: calc((100% - var(--max-width)) / 2 + 20px);
    padding-right: calc((100% - var(--max-width)) / 2 + 20px);
    background: var(--white);
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.section-heading p,
.page-hero p,
.detail-info p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 17px;
}

.section-heading > a {
    color: var(--blue-600);
    font-weight: 800;
}

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 18px;
}

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

.category-chip,
.category-card-large {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--white), var(--slate-50));
    transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-chip {
    padding: 22px;
}

.category-chip:hover,
.category-card-large:hover,
.movie-card:hover,
.ranking-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.28);
}

.category-chip strong {
    display: block;
    color: var(--slate-900);
    font-size: 19px;
    margin-bottom: 6px;
}

.category-chip span,
.category-card-large p {
    color: var(--slate-600);
    font-size: 14px;
}

.filter-panel {
    margin-bottom: 26px;
    padding: 22px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

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

.filter-grid label {
    display: grid;
    gap: 8px;
    color: var(--slate-700);
    font-weight: 750;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--slate-300);
    border-radius: 12px;
    color: var(--slate-800);
    background: var(--white);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-grid input:focus,
.filter-grid select:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

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

.category-movie-grid {
    padding-bottom: 72px;
}

.movie-card {
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-900);
}

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

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

.movie-badge,
.movie-region,
.cover-play {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
}

.movie-badge {
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    font-size: 12px;
    background: var(--blue-600);
}

.movie-region {
    left: 10px;
    top: 10px;
    padding: 5px 9px;
    font-size: 12px;
    background: rgba(15, 23, 42, 0.72);
}

.cover-play {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    background: rgba(37, 99, 235, 0.9);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.movie-card:hover .cover-play {
    opacity: 1;
}

.movie-body {
    padding: 17px;
}

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 52px;
    color: var(--slate-900);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-title:hover,
.ranking-title:hover {
    color: var(--blue-600);
}

.movie-line {
    display: -webkit-box;
    overflow: hidden;
    min-height: 48px;
    margin: 10px 0 12px;
    color: var(--slate-600);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-500);
    font-size: 13px;
}

.movie-meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--slate-300);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-row span {
    padding: 4px 8px;
    color: var(--slate-600);
    background: var(--slate-100);
}

.ranking-preview {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
    margin-top: 72px;
    margin-bottom: 72px;
    padding-top: 56px;
    padding-bottom: 56px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--slate-900));
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.ranking-preview h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.ranking-preview p {
    margin: 0 0 24px;
    color: var(--slate-200);
}

.ranking-preview ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.ranking-preview li {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.ranking-preview li span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 900;
}

.ranking-preview li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.ranking-preview li em {
    color: var(--slate-300);
    font-style: normal;
}

.page-shell {
    padding-top: 34px;
    padding-bottom: 72px;
}

.page-hero {
    margin-bottom: 36px;
    padding: 54px;
    border-radius: 28px;
    color: var(--white);
    background: radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.38), transparent 34%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow-xl);
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero p {
    max-width: 820px;
    color: var(--slate-200);
}

.compact-hero {
    padding: 42px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 22px;
    color: var(--slate-500);
    font-size: 14px;
}

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

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

.category-card-large {
    padding: 24px;
}

.category-card-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 12px;
}

.category-card-head span {
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 900;
}

.category-card-head strong {
    color: var(--blue-600);
    font-size: 14px;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.category-samples a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--slate-600);
    background: var(--slate-100);
    font-size: 13px;
}

.ranking-list {
    display: grid;
    gap: 16px;
}

.ranking-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 18px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.ranking-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    background: var(--slate-900);
}

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

.ranking-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: var(--blue-600);
    font-weight: 900;
}

.ranking-title {
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 900;
}

.ranking-card p {
    margin: 8px 0 12px;
    color: var(--slate-600);
}

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

.detail-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 28px;
    color: var(--white);
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.36), transparent 32%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow-xl);
}

.detail-poster {
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 2 / 3;
    background: var(--slate-900);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

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

.detail-info h1,
.detail-info p {
    color: var(--white);
}

.detail-info p {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--slate-200);
    font-size: 19px;
}

.detail-tags span {
    color: var(--slate-100);
    background: rgba(255, 255, 255, 0.12);
}

.player-section {
    margin-top: 32px;
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #000000;
    box-shadow: var(--shadow-xl);
}

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

.player-mask {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-mask span {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-600);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.45);
    font-size: 38px;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    margin-top: 32px;
}

.content-card,
.side-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.content-card {
    padding: 34px;
}

.content-card h2,
.side-card h2 {
    margin: 0 0 18px;
    color: var(--slate-900);
    font-size: 24px;
}

.content-card p {
    margin: 0 0 28px;
    color: var(--slate-700);
    font-size: 17px;
}

.content-card blockquote {
    margin: 0;
    padding: 22px;
    border-left: 5px solid var(--blue-600);
    border-radius: 14px;
    color: var(--slate-700);
    background: var(--slate-50);
    font-size: 17px;
}

.side-card {
    padding: 26px;
    align-self: start;
}

.side-card dl {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
}

.side-card dt {
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 800;
}

.side-card dd {
    margin: -8px 0 0;
    color: var(--slate-900);
    font-weight: 800;
}

.related-block {
    padding-left: 0;
    padding-right: 0;
}

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

.movie-card.compact .movie-title {
    min-height: 0;
    font-size: 16px;
}

.movie-card.compact .movie-line {
    min-height: 42px;
}

.simple-page {
    max-width: 900px;
}

.simple-page .content-card {
    padding: 36px;
}

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

@media (max-width: 1080px) {
    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 34px;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .hero-carousel,
    .hero-track {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 70px;
    }

    .hero-bg {
        height: 760px;
    }

    .hero-poster {
        max-width: 260px;
        margin: 0 auto;
        transform: none;
    }

    .feature-strip,
    .ranking-preview,
    .detail-hero,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        margin-top: 24px;
    }

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

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

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

@media (max-width: 640px) {
    .header-inner {
        height: 62px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero-carousel,
    .hero-track {
        min-height: 720px;
    }

    .hero-slide {
        padding: 42px 18px 96px;
    }

    .hero-bg {
        inset: 62px 0 auto 0;
        height: 720px;
    }

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

    .hero-one-line {
        font-size: 17px;
    }

    .hero-actions,
    .simple-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn,
    .ghost-btn {
        width: 100%;
    }

    .feature-strip,
    .movie-grid,
    .category-grid,
    .category-overview-grid,
    .related-grid,
    .filter-grid {
        grid-template-columns: 1fr;
    }

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

    .section-block,
    .section-muted,
    .page-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-hero,
    .compact-hero,
    .detail-hero,
    .content-card,
    .simple-page .content-card {
        padding: 24px;
        border-radius: 22px;
    }

    .ranking-preview {
        margin-left: 16px;
        margin-right: 16px;
        padding: 28px;
    }

    .ranking-card {
        grid-template-columns: 1fr;
    }

    .detail-info h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .player-mask span {
        width: 74px;
        height: 74px;
        font-size: 30px;
    }
}
