:root {
    color-scheme: light;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --red-600: #dc2626;
    --amber-400: #fbbf24;
    --white: #ffffff;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 16px 35px rgba(15, 23, 42, 0.12);
    --gradient-hot: linear-gradient(135deg, var(--orange-600), var(--red-600));
    --gradient-dark: linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.92));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--slate-50);
    color: var(--slate-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.94);
    color: var(--white);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--gradient-hot);
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.45);
}

.brand-name {
    font-size: 1.16rem;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.desktop-nav a {
    white-space: nowrap;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--orange-500);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    background: rgba(51, 65, 85, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.mobile-search input {
    width: 210px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    padding: 10px 14px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(226, 232, 240, 0.72);
}

.header-search button,
.mobile-search button {
    border: 0;
    color: var(--white);
    background: var(--gradient-hot);
    padding: 10px 16px;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 2px;
}

.mobile-panel {
    display: none;
    padding: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

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

.mobile-panel nav a {
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.8s ease;
    pointer-events: none;
}

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
}

.hero-overlay,
.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 40%, rgba(249, 115, 22, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.76) 48%, rgba(15, 23, 42, 0.48)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 35%);
}

.hero-content {
    position: relative;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) 360px;
    gap: 56px;
    align-items: center;
    color: var(--white);
    padding: 88px 0 96px;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 20px 0 16px;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.hero-tags,
.detail-tags-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-tags-top span,
.section-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.16);
    color: #fed7aa;
    border: 1px solid rgba(251, 146, 60, 0.36);
    padding: 7px 12px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.hero-line {
    max-width: 720px;
    margin: 0 0 12px;
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    color: rgba(255, 255, 255, 0.92);
}

.hero-summary {
    max-width: 740px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 1rem;
}

.hero-actions,
.detail-actions,
.center-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

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

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

.btn-primary {
    color: var(--white);
    background: var(--gradient-hot);
    box-shadow: 0 18px 35px rgba(220, 38, 38, 0.28);
}

.btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.11);
}

.btn-outline {
    color: var(--slate-900);
    border-color: var(--slate-200);
    background: var(--white);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.72);
    color: var(--white);
    font-weight: 900;
    backdrop-filter: blur(12px);
}

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

.hero-controls > button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    background: rgba(15, 23, 42, 0.65);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--orange-500);
}

.section {
    padding: 72px 0;
}

.section-light {
    background: var(--slate-50);
}

.section-muted {
    background: #eef2f7;
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}

.section-head h2,
.page-hero h1,
.detail-info h1,
.content-card h2 {
    margin: 0;
    color: var(--slate-900);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.section-head p,
.page-hero p {
    margin: 0;
    max-width: 760px;
    color: var(--slate-600);
}

.quick-filter {
    margin: 0 0 28px;
}

.quick-filter input {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    background: var(--white);
    color: var(--slate-900);
    padding: 0 22px;
    outline: 0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.quick-filter input:focus {
    border-color: rgba(249, 115, 22, 0.65);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.sticky-filter {
    position: sticky;
    top: 88px;
    z-index: 20;
}

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

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

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
}

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

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--slate-900);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), transparent 48%);
}

.poster-year,
.poster-type,
.rank-number {
    position: absolute;
    top: 12px;
    z-index: 3;
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.poster-year {
    left: 12px;
    background: rgba(234, 88, 12, 0.9);
}

.poster-type {
    right: 12px;
    background: rgba(15, 23, 42, 0.72);
}

.rank-number {
    left: 12px;
    top: auto;
    bottom: 12px;
    background: var(--gradient-hot);
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 2.7em;
    margin-bottom: 8px;
    color: var(--slate-900);
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-line {
    display: -webkit-box;
    min-height: 3.15em;
    margin: 0 0 12px;
    color: var(--slate-600);
    font-size: 0.9rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    color: var(--slate-500);
    font-size: 0.78rem;
}

.movie-meta span + span::before {
    content: "·";
    margin-right: 6px;
}

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

.tag-row span,
.tag-row a {
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--slate-700);
    padding: 4px 8px;
    font-size: 0.72rem;
    font-weight: 800;
}

.tag-row-large {
    margin-top: 20px;
}

.tag-row-large a {
    color: #fed7aa;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(251, 146, 60, 0.35);
}

.movie-grid-compact {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 18px;
}

.movie-card-compact .movie-card-body {
    padding: 12px;
}

.movie-card-compact .movie-line,
.movie-card-compact .tag-row {
    display: none;
}

.movie-card-compact .movie-title {
    font-size: 0.9rem;
}

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

.category-tile,
.category-page-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.category-main {
    display: block;
    padding: 28px;
    color: var(--white);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.category-main::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.28);
}

.category-main span {
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: #fed7aa;
    font-weight: 900;
}

.category-main strong {
    display: block;
    position: relative;
    z-index: 1;
    max-width: 540px;
    font-size: 1.35rem;
    line-height: 1.35;
}

.category-mini-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
}

.mini-link {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.mini-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.mini-link span {
    display: -webkit-box;
    color: var(--slate-700);
    font-weight: 800;
    font-size: 0.82rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 70px;
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.24), transparent 28%),
        linear-gradient(135deg, #fff7ed, #f8fafc 58%, #e2e8f0);
}

.compact-page-hero {
    padding: 64px 0 48px;
}

.page-hero-inner {
    position: relative;
}

.page-hero h1 {
    margin-top: 14px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.page-hero p {
    margin-top: 16px;
    font-size: 1.08rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.page-hero .breadcrumb {
    color: var(--slate-600);
}

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

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

.category-page-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
}

.category-cover {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    background: var(--slate-900);
}

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

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent 58%);
}

.category-cover span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    color: var(--white);
    font-weight: 900;
    font-size: 1.35rem;
}

.category-page-body {
    padding: 22px;
}

.category-page-body h2 {
    margin: 0 0 8px;
    font-size: 1.4rem;
}

.category-page-body p {
    margin: 0 0 10px;
    color: var(--slate-600);
}

.category-page-body .category-mini-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
}

.ranking-hero {
    background: var(--gradient-dark);
    color: var(--white);
}

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

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

.rank-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    min-height: 260px;
    background: var(--slate-900);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.28);
}

.rank-hero-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    opacity: 0.74;
}

.rank-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent 60%);
}

.rank-hero-card strong,
.rank-hero-card em,
.rank-medal {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
}

.rank-medal {
    top: 18px;
    right: auto;
    border-radius: 999px;
    padding: 6px 11px;
    color: var(--white);
    background: var(--gradient-hot);
    font-weight: 900;
    font-size: 0.76rem;
}

.rank-hero-card strong {
    bottom: 44px;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.25;
}

.rank-hero-card em {
    bottom: 20px;
    color: rgba(226, 232, 240, 0.78);
    font-style: normal;
}

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

.detail-hero-inner {
    position: relative;
    padding: 72px 0 76px;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
}

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

.detail-info h1 {
    margin-top: 18px;
    color: var(--white);
    font-size: clamp(2.3rem, 6vw, 5.2rem);
}

.detail-one-line {
    max-width: 800px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.2rem;
}

.player-section {
    background: var(--slate-950);
    padding-top: 0;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: var(--slate-900);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
    color: var(--white);
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.player-cover-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(249, 115, 22, 0.18), transparent 28%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.28));
}

.play-button {
    position: relative;
    z-index: 3;
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient-hot);
    box-shadow: 0 18px 42px rgba(220, 38, 38, 0.38);
}

.play-button span {
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 25px solid var(--white);
    margin-left: 6px;
}

.player-cover strong {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: 22px;
    font-size: clamp(1.2rem, 2.8vw, 2.4rem);
    line-height: 1.2;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.content-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.content-card h2 {
    margin-top: 16px;
    font-size: 1.65rem;
}

.content-card p {
    color: var(--slate-700);
    font-size: 1.03rem;
}

.site-footer {
    background: var(--slate-950);
    color: rgba(255, 255, 255, 0.78);
    padding: 44px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
}

.footer-brand {
    color: var(--white);
    font-size: 1.2rem;
}

.site-footer p {
    max-width: 720px;
    margin: 12px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
    color: var(--orange-500);
}

.center-actions {
    justify-content: center;
}

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

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .header-search {
        display: none;
    }

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

@media (max-width: 900px) {
    .hero,
    .hero-content {
        min-height: auto;
    }

    .hero-slide {
        position: relative;
        display: none;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 86px 0 118px;
    }

    .hero-poster {
        max-width: 320px;
        transform: none;
    }

    .category-grid,
    .category-page-grid,
    .detail-content-grid,
    .rank-hero-grid {
        grid-template-columns: 1fr;
    }

    .category-page-card,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .category-cover {
        height: 280px;
    }

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

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

    .header-inner {
        min-height: 64px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero-copy h1,
    .detail-info h1 {
        letter-spacing: -0.045em;
    }

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

    .btn {
        width: 100%;
    }

    .movie-grid,
    .movie-grid-compact,
    .movie-grid-ranked {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-mini-list,
    .category-page-body .category-mini-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
        padding: 48px 0;
    }

    .page-hero {
        padding: 54px 0 42px;
    }

    .content-card {
        padding: 22px;
    }

    .play-button {
        width: 74px;
        height: 74px;
    }

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