:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-600: #ea580c;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --white: #ffffff;
    --shadow-sm: 0 8px 18px rgba(23, 23, 23, 0.06);
    --shadow-md: 0 14px 35px rgba(23, 23, 23, 0.11);
    --shadow-lg: 0 24px 55px rgba(23, 23, 23, 0.18);
    --radius-lg: 16px;
    --radius-xl: 22px;
    --container: 1180px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--gray-50), #ffffff 45%, rgba(254, 243, 199, 0.36));
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(212, 212, 212, 0.7);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.28);
}

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

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.02em;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 600;
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--amber-700);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-search input {
    width: 220px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.search-page-form input:focus,
.filter-field input:focus,
.filter-field select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.header-search button,
.search-page-form button {
    height: 40px;
    padding: 0 18px;
    border: 0;
    color: #ffffff;
    background: var(--amber-600);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.search-page-form button:hover {
    background: var(--amber-700);
    transform: translateY(-1px);
}

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

.hero-carousel {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    background-image: var(--hero-image), linear-gradient(135deg, #111827, #78350f);
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.12));
}

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

.hero-copy {
    max-width: 680px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 5px 12px;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.92);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.eyebrow.light {
    color: var(--amber-700);
    background: var(--amber-100);
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

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

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 13px;
}

.hero-meta.simple span {
    color: #ffffff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.ghost-button,
.solid-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button,
.solid-link {
    min-height: 46px;
    padding: 0 22px;
    color: #ffffff;
    background: var(--amber-600);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(217, 119, 6, 0.28);
}

.primary-button:hover,
.solid-link:hover {
    background: var(--amber-700);
    transform: translateY(-2px);
}

.ghost-button {
    min-height: 46px;
    padding: 0 22px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.text-link:hover {
    color: var(--orange-600);
}

.solid-link.full {
    width: 100%;
    margin-top: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 30px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: #ffffff;
}

.section {
    padding: 64px 0;
}

.section-warm {
    background: linear-gradient(90deg, rgba(254, 243, 199, 0.58), rgba(255, 237, 213, 0.58));
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--gray-600);
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(229, 229, 229, 0.86);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: var(--shadow-md);
}

.poster-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-800), #78350f);
    aspect-ratio: 16 / 9;
}

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

.movie-card:hover .poster-frame img,
.related-card:hover img,
.rank-item:hover img,
.category-card:hover img {
    transform: scale(1.08);
}

.duration-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.68);
    border-radius: 999px;
    font-size: 12px;
}

.duration-badge {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
}

.play-badge {
    left: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: rgba(217, 119, 6, 0.92);
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 17px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

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

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

.card-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.card-meta span {
    color: var(--gray-500);
    font-size: 12px;
}

.tag-row {
    margin-top: 10px;
}

.tag-row span {
    padding: 3px 8px;
    color: var(--amber-700);
    background: var(--amber-100);
    border-radius: 999px;
    font-size: 12px;
}

.ranking-section {
    background: #ffffff;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 42px;
    align-items: start;
}

.ranking-copy {
    position: sticky;
    top: 110px;
}

.ranking-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 46px);
}

.ranking-copy p {
    margin: 0 0 24px;
    color: var(--gray-600);
}

.rank-list {
    display: grid;
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 138px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    border-radius: 12px;
    font-weight: 800;
}

.rank-item figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: var(--gray-200);
}

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

.rank-item h3 {
    margin: 0 0 4px;
    font-size: 17px;
}

.rank-item p {
    display: -webkit-box;
    margin: 0 0 4px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-item small {
    color: var(--gray-500);
}

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

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

.category-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(229, 229, 229, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 8;
    background: linear-gradient(135deg, #111827, #92400e);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.35s ease;
}

.category-card div {
    padding: 16px;
}

.category-card span {
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 800;
}

.category-card h3 {
    margin: 5px 0 8px;
    font-size: 18px;
}

.category-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.55), transparent 30%), linear-gradient(135deg, #78350f, #111827 62%, #0f172a);
}

.small-hero {
    padding: 58px 0;
}

.dark-hero {
    background: radial-gradient(circle at 80% 0%, rgba(217, 119, 6, 0.45), transparent 36%), linear-gradient(135deg, #111827, #1f2937);
}

.page-hero h1 {
    max-width: 780px;
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

.filter-panel {
    display: flex;
    align-items: end;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-field {
    display: flex;
    min-width: 160px;
    flex-direction: column;
    gap: 7px;
}

.filter-field.grow {
    flex: 1;
}

.filter-field label {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 700;
}

.filter-field input,
.filter-field select {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    outline: none;
    background: #ffffff;
}

.filter-count {
    min-width: 78px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--amber-600);
    border-radius: 12px;
    font-weight: 800;
}

.empty-state {
    margin: 28px 0 0;
    padding: 32px;
    text-align: center;
    color: var(--gray-600);
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.ranking-table {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.ranking-row {
    display: grid;
    grid-template-columns: 70px 1.4fr 0.8fr 90px 130px;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.2s ease;
}

.ranking-row:hover {
    background: var(--amber-50);
}

.ranking-row:last-child {
    border-bottom: 0;
}

.ranking-index {
    color: var(--amber-700);
    font-size: 20px;
    font-weight: 900;
}

.ranking-title {
    font-weight: 800;
}

.search-page-form {
    display: flex;
    max-width: 640px;
    gap: 10px;
    margin-top: 28px;
}

.search-page-form input {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    outline: none;
}

.detail-hero {
    padding: 28px 0 48px;
    background: linear-gradient(135deg, #111827, #1f2937 55%, #78350f);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.player-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: stretch;
}

.player-panel,
.detail-cover {
    min-width: 0;
}

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

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 10px;
    color: #ffffff;
    border: 0;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.22), rgba(0, 0, 0, 0.68));
    cursor: pointer;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    padding-left: 4px;
    color: #ffffff;
    background: var(--amber-600);
    border-radius: 999px;
    box-shadow: 0 22px 42px rgba(217, 119, 6, 0.28);
    font-size: 28px;
}

.play-overlay strong {
    font-size: 18px;
}

.play-overlay.is-hidden {
    display: none;
}

.detail-cover figure {
    height: 100%;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #92400e);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

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

.detail-title-block,
.content-card,
.sticky-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.detail-title-block {
    padding: 26px;
    margin-bottom: 20px;
}

.detail-title-block h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.detail-title-block p {
    margin: 0 0 18px;
    color: var(--gray-600);
    font-size: 17px;
}

.detail-meta span {
    color: var(--gray-700);
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.detail-tags {
    margin-top: 14px;
}

.content-card {
    padding: 26px;
    margin-bottom: 20px;
}

.content-card h2,
.sticky-card h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

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

.warm-card {
    background: linear-gradient(135deg, var(--amber-50), #ffffff);
}

.prev-next {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.prev-next a {
    min-height: 44px;
    display: grid;
    place-items: center;
    color: var(--amber-700);
    background: #ffffff;
    border: 1px solid var(--amber-200);
    border-radius: 12px;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.prev-next a:hover {
    background: var(--amber-50);
    transform: translateY(-2px);
}

.detail-sidebar {
    min-width: 0;
}

.sticky-card {
    position: sticky;
    top: 104px;
    padding: 20px;
}

.related-list {
    display: grid;
    gap: 14px;
}

.related-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 12px;
    align-items: center;
}

.related-card figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--gray-200);
    border-radius: 12px;
}

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

.related-card h3 {
    display: -webkit-box;
    margin: 0 0 4px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-card:hover h3 {
    color: var(--amber-700);
}

.related-card small {
    color: var(--gray-500);
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
    padding: 46px 0 32px;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer p {
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 8px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.54);
    font-size: 14px;
}

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

    .menu-toggle {
        display: block;
    }

    .site-header.is-open .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        display: grid;
        gap: 0;
        padding: 14px 16px;
        background: #ffffff;
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }

    .site-header.is-open .main-nav a {
        padding: 12px;
        border-bottom: 1px solid var(--gray-100);
    }

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

    .player-layout,
    .detail-grid,
    .ranking-layout {
        grid-template-columns: 1fr;
    }

    .ranking-copy,
    .sticky-card {
        position: static;
    }

    .detail-cover {
        display: none;
    }
}

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

    .nav-wrap {
        min-height: 68px;
        gap: 10px;
    }

    .brand-text small,
    .header-search {
        display: none;
    }

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

    .site-header.is-open .main-nav {
        top: 68px;
    }

    .hero-carousel {
        height: 520px;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.62));
    }

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

    .section {
        padding: 44px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading .text-link,
    .section-heading .solid-link {
        margin-top: 14px;
    }

    .movie-grid.four-columns,
    .movie-grid.three-columns,
    .category-grid,
    .category-grid.large {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 34px 112px 1fr;
        gap: 10px;
    }

    .filter-panel {
        display: grid;
    }

    .filter-field {
        min-width: 0;
    }

    .ranking-row {
        grid-template-columns: 48px 1fr;
    }

    .ranking-row span:nth-child(n + 3) {
        display: none;
    }

    .search-page-form {
        display: grid;
    }

    .prev-next {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-bottom {
        display: grid;
    }
}
