:root {
    color-scheme: light;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-50: #fff7ed;
    --orange-500: #f97316;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --blue-50: #eff6ff;
    --indigo-50: #eef2ff;
    --purple-50: #faf5ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(120, 53, 15, 0.16);
    --soft-shadow: 0 12px 32px rgba(120, 53, 15, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(135deg, var(--orange-50), var(--amber-50) 45%, #fff7ed);
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.12);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500), var(--rose-500));
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
    transition: transform 0.3s ease;
}

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

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--amber-700), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--gray-500);
    font-size: 12px;
    margin-top: 3px;
}

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

.desktop-nav a,
.mobile-nav a {
    border-radius: 14px;
    color: var(--gray-700);
    padding: 10px 14px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
    color: var(--amber-700);
    background: var(--amber-100);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: var(--amber-700);
    background: var(--amber-100);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

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

.hero-carousel {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500), var(--rose-500));
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    background-image: linear-gradient(90deg, rgba(90, 39, 5, 0.92), rgba(146, 64, 14, 0.70), rgba(244, 63, 94, 0.28)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 28%), radial-gradient(circle at 82% 64%, rgba(255, 255, 255, 0.12), transparent 30%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(0deg, var(--orange-50), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    color: var(--white);
    text-align: center;
    padding: 130px 0 160px;
}

.eyebrow {
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber-200);
}

.hero-content h1 {
    margin: 0 auto 22px;
    font-size: clamp(42px, 8vw, 82px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    text-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.hero-content p {
    width: min(780px, 100%);
    margin: 0 auto 28px;
    font-size: clamp(18px, 2.2vw, 25px);
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-tags,
.tag-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    padding: 0 26px;
    font-weight: 800;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary-button {
    color: var(--amber-700);
    background: var(--white);
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(120, 53, 15, 0.22);
}

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

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

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

.search-panel {
    position: relative;
    z-index: 10;
    width: min(1040px, calc(100% - 32px));
    margin: -42px auto 34px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 18px;
    align-items: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.search-panel strong {
    display: block;
    font-size: 22px;
    color: var(--gray-900);
}

.search-panel span {
    color: var(--gray-500);
    font-size: 14px;
}

.search-panel input,
.inline-search input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    padding: 0 20px;
    color: var(--gray-800);
    background: var(--amber-50);
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.search-panel input:focus,
.inline-search input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.inner-search {
    margin-top: -38px;
}

.section-block {
    padding: 68px 0;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--amber-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.section-heading h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    color: var(--gray-900);
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 720px;
    margin: 12px 0 0;
    color: var(--gray-600);
}

.center-heading {
    text-align: center;
}

.center-heading p {
    margin-left: auto;
    margin-right: auto;
}

.split-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.text-link {
    color: var(--amber-700);
    font-weight: 800;
}

.text-link:hover {
    color: var(--rose-500);
}

.warm-section {
    background: linear-gradient(135deg, var(--amber-100), var(--orange-50), #fff1f2);
}

.cool-section {
    background: linear-gradient(135deg, var(--blue-50), var(--indigo-50), var(--purple-50));
}

.movie-grid {
    display: grid;
    gap: 26px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.large-card .poster {
    aspect-ratio: 16 / 10;
}

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

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

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 24, 39, 0.72));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .poster::after {
    opacity: 1;
}

.play-dot {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%) scale(0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--amber-700);
    background: rgba(255, 255, 255, 0.94);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

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

.movie-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 800;
}

.movie-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--amber-100);
}

.movie-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.28;
    color: var(--gray-900);
}

.compact-grid .movie-card h2,
.catalog-grid .movie-card h2 {
    font-size: 17px;
}

.movie-card h2 a:hover {
    color: var(--amber-700);
}

.movie-card p {
    display: -webkit-box;
    min-height: 50px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag-row {
    justify-content: flex-start;
}

.tag-row span {
    color: var(--gray-600);
    background: var(--gray-100);
}

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

.category-tile,
.category-overview-card {
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-tile strong,
.category-main-link span {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-900);
    font-size: 22px;
}

.category-tile span,
.category-main-link strong {
    display: block;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

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

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

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

.ranking-panel {
    position: sticky;
    top: 104px;
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 4px 14px;
    align-items: center;
    border-radius: 18px;
    padding: 13px;
    background: var(--gray-50);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.rank-number {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--rose-500));
    font-weight: 900;
}

.rank-title {
    color: var(--gray-900);
    font-weight: 900;
}

.rank-meta {
    color: var(--gray-500);
    font-size: 13px;
}

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

.page-hero {
    position: relative;
    padding: 110px 0 86px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.98), rgba(249, 115, 22, 0.9), rgba(244, 63, 94, 0.74));
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 100px;
    background: linear-gradient(0deg, var(--orange-50), transparent);
}

.page-hero .max-wrap {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 7vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

.detail-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 42px;
    align-items: end;
}

.movie-detail-hero {
    position: relative;
    min-height: 650px;
    padding: 110px 0 74px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background-image: linear-gradient(90deg, rgba(73, 31, 4, 0.96), rgba(120, 53, 15, 0.82), rgba(31, 41, 55, 0.46)), var(--detail-image);
    background-size: cover;
    background-position: center;
}

.movie-detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(0deg, var(--orange-50), transparent);
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
    background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

.detail-headline h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.detail-headline p:not(.eyebrow) {
    max-width: 820px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 21px;
}

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

.detail-main,
.detail-side {
    display: grid;
    gap: 24px;
}

.player-card,
.content-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.movie-player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-900);
    cursor: pointer;
}

.player-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: var(--gray-900);
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.36));
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.player-button {
    width: 84px;
    height: 84px;
    border: 0;
    border-radius: 50%;
    color: var(--amber-700);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    font-size: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.player-button:hover {
    transform: scale(1.08);
    background: var(--amber-50);
}

.content-card {
    padding: 26px;
}

.content-card h2 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: 24px;
}

.content-card p {
    margin: 0;
    color: var(--gray-700);
}

.meta-card dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px 14px;
    margin: 0;
}

.meta-card dt {
    color: var(--gray-500);
}

.meta-card dd {
    margin: 0;
    color: var(--gray-900);
    font-weight: 800;
}

.side-links {
    display: grid;
    gap: 10px;
}

.side-links a {
    display: grid;
    gap: 4px;
    border-radius: 16px;
    padding: 12px;
    background: var(--gray-50);
    color: var(--gray-900);
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.side-links a:hover {
    transform: translateX(4px);
    background: var(--amber-100);
}

.side-links span {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--amber-600);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--amber-700);
}

.site-footer {
    color: var(--amber-100);
    background: linear-gradient(135deg, #78350f, #92400e 48%, #7f1d1d);
    padding: 58px 0 24px;
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-brand .brand-text strong {
    color: var(--amber-100);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand .brand-text small,
.site-footer p,
.site-footer li,
.site-footer a {
    color: var(--amber-200);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--amber-50);
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    border-top: 1px solid rgba(253, 230, 138, 0.24);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.no-results {
    grid-column: 1 / -1;
    padding: 30px;
    text-align: center;
    color: var(--gray-500);
    background: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
}

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

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .featured-grid,
    .compact-grid,
    .catalog-grid,
    .category-grid,
    .category-overview-grid,
    .full-ranking-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .ranking-panel {
        position: static;
    }

    .detail-poster {
        width: min(320px, 100%);
    }
}

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

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

    .hero-carousel {
        min-height: 610px;
    }

    .hero-content {
        padding: 105px 0 135px;
    }

    .search-panel {
        grid-template-columns: 1fr;
        margin-top: -34px;
    }

    .section-block {
        padding: 48px 0;
    }

    .split-heading {
        display: block;
    }

    .split-heading .text-link,
    .split-heading .inline-search {
        display: block;
        margin-top: 18px;
    }

    .featured-grid,
    .compact-grid,
    .catalog-grid,
    .category-grid,
    .category-overview-grid,
    .full-ranking-list {
        grid-template-columns: 1fr;
    }

    .movie-grid {
        gap: 18px;
    }

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

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

    .detail-headline p:not(.eyebrow),
    .page-hero p:not(.eyebrow) {
        font-size: 17px;
    }

    .movie-detail-hero,
    .page-hero {
        padding-top: 86px;
    }

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