:root {
    --bg-start: #fffbeb;
    --bg-mid: #fefce8;
    --bg-end: #fff7ed;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --amber: #d97706;
    --amber-light: #f59e0b;
    --yellow: #facc15;
    --orange: #ea580c;
    --card: rgba(255, 255, 255, 0.86);
    --line: rgba(252, 211, 77, 0.55);
    --shadow: 0 24px 60px rgba(146, 64, 14, 0.14);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.28), transparent 34rem),
        linear-gradient(135deg, var(--bg-start), var(--bg-mid) 45%, var(--bg-end));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.honey-gradient,
.btn-primary,
.brand-mark,
.category-tile__mark,
.section-icon,
.play-circle,
.rank-badge {
    background: linear-gradient(135deg, #fbbf24, #eab308 48%, #fb923c);
}

.honey-text,
.section-heading h2,
.footer-brand {
    background: linear-gradient(90deg, #d97706, #ca8a04, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.honey-card,
.movie-card,
.filter-panel,
.overview-card,
.ranking-panel,
.article-card {
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(252, 211, 77, 0.42);
    background: rgba(255, 251, 235, 0.88);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: min(var(--container), calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.28);
}

.brand-text {
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #d97706, #ca8a04, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.nav-link {
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease;
}

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

.site-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-search-form input {
    width: 250px;
    border: 2px solid rgba(251, 191, 36, 0.58);
    border-radius: 999px;
    background: #ffffff;
    color: #1f2937;
    padding: 10px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-form input:focus {
    border-color: var(--amber-light);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.site-search-form button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(251, 191, 36, 0.16);
    padding: 11px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #92400e;
    border-radius: 999px;
}

.mobile-nav {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border: 1px solid rgba(252, 211, 77, 0.45);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.mobile-link {
    display: block;
    padding: 12px 10px;
    color: #4b5563;
    font-weight: 800;
    border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.active {
    background: #fef3c7;
    color: #b45309;
}

.mobile-link.minor {
    font-size: 14px;
    color: #92400e;
}

.home-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.home-hero__media,
.home-hero__shade,
.home-hero__bottom {
    position: absolute;
    inset: 0;
}

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

.home-hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.08));
}

.home-hero__bottom {
    top: auto;
    height: 160px;
    background: linear-gradient(0deg, #fffbeb, rgba(255, 251, 235, 0));
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    max-width: 680px;
    margin-left: max(16px, calc((100% - var(--container)) / 2));
    color: #ffffff;
    animation: floatIn 0.9s ease both;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.hero-label::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 18px currentColor;
}

.home-hero h1,
.page-hero h1,
.ranking-hero h1,
.detail-hero h1 {
    margin: 16px 0;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 72px);
}

.home-hero p {
    max-width: 760px;
    margin: 0 0 28px;
    color: #e5e7eb;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 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) scale(1.02);
}

.btn-primary {
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(234, 88, 12, 0.28);
}

.btn-glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
}

.btn-soft {
    color: #92400e;
    background: #fef3c7;
}

.category-strip {
    position: relative;
    z-index: 3;
    width: min(var(--container), calc(100% - 32px));
    margin: -64px auto 80px;
}

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

.category-tile {
    min-height: 145px;
    padding: 24px 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(146, 64, 14, 0.2);
}

.category-tile__mark {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
}

.category-tile strong,
.category-tile em {
    display: block;
}

.category-tile strong {
    font-size: 18px;
    color: #1f2937;
}

.category-tile em {
    margin-top: 5px;
    color: #d97706;
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
}

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

.content-section {
    margin-bottom: 88px;
}

.page-main {
    padding: 36px 0 88px;
}

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

.section-heading__title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.22);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 950;
}

.section-more {
    color: #d97706;
    font-weight: 900;
}

.section-more span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.section-more:hover span {
    transform: translateX(4px);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 30px 70px rgba(146, 64, 14, 0.22);
}

.movie-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #fde68a, #fed7aa);
}

.movie-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 50%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

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

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

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

.region-badge,
.rank-badge,
.play-chip {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
}

.region-badge {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    background: rgba(217, 119, 6, 0.92);
}

.rank-badge {
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.play-circle {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-card__body {
    padding: 18px;
}

.movie-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 52px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
    transition: color 0.2s ease;
}

.movie-card__title:hover {
    color: #d97706;
}

.movie-card__meta,
.movie-card__desc {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.movie-card__desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.tag-row span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #92400e;
    background: #fef3c7;
    font-size: 12px;
    font-weight: 800;
}

.movie-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 340px);
    gap: 18px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
}

.rail-item {
    scroll-snap-align: start;
}

.editor-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: start;
}

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

.movie-card--horizontal {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: stretch;
}

.movie-card--horizontal .movie-card__image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 150px;
}

.movie-card--horizontal .movie-card__title {
    min-height: auto;
}

.play-chip {
    left: 12px;
    bottom: 12px;
    padding: 7px 11px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.ranking-panel {
    border-radius: 28px;
    padding: 24px;
}

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

.page-hero,
.compact-hero,
.ranking-hero,
.detail-hero {
    border-radius: 32px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.28), transparent 26rem),
        rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.compact-hero {
    padding: clamp(34px, 5vw, 64px);
    margin-bottom: 34px;
}

.compact-hero h1 {
    margin: 14px 0 12px;
    color: #111827;
    font-size: clamp(34px, 6vw, 58px);
    font-weight: 950;
}

.compact-hero p {
    max-width: 780px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #78350f;
    font-weight: 800;
}

.breadcrumb a {
    color: #d97706;
}

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

.overview-card {
    overflow: hidden;
    border-radius: 28px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card__covers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 10px;
    background: #fffbeb;
}

.overview-card__covers img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    background: #fde68a;
}

.overview-card__body {
    padding: 24px;
}

.overview-card h2 {
    margin: 0 0 10px;
    font-size: 25px;
}

.overview-card p {
    margin: 0 0 16px;
    color: #6b7280;
    line-height: 1.7;
}

.overview-card span {
    color: #d97706;
    font-weight: 900;
}

.filter-panel {
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 24px;
}

.filter-panel__row {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 220px 220px;
    gap: 16px;
}

.filter-panel__wide {
    grid-column: 1 / -1;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: #92400e;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    border: 2px solid rgba(251, 191, 36, 0.48);
    border-radius: 16px;
    background: #ffffff;
    padding: 10px 14px;
    color: #1f2937;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

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

.ranking-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    overflow: hidden;
    padding: 28px;
    margin-bottom: 34px;
}

.ranking-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 26px;
    background: #fde68a;
}

.ranking-hero h1 {
    color: #111827;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 950;
}

.ranking-hero p {
    max-width: 760px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.ranking-page-panel {
    padding: 28px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 28px;
    margin-bottom: 34px;
}

.detail-hero__poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 26px;
    background: #fde68a;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.detail-hero h1 {
    color: #111827;
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 950;
}

.detail-one-line {
    max-width: 780px;
    color: #4b5563;
    font-size: 20px;
    line-height: 1.8;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.18);
    color: #92400e;
    font-weight: 900;
}

.player-section {
    margin-bottom: 34px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
    object-fit: contain;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.38);
    font-size: 34px;
}

.play-overlay strong {
    font-size: 18px;
    letter-spacing: 0.08em;
}

.video-shell.is-ready .play-overlay,
.video-shell.is-playing .play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 6;
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

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

.article-card {
    border-radius: 28px;
    padding: 28px;
}

.article-card h2 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 28px;
}

.article-card p {
    margin: 0 0 16px;
    color: #4b5563;
    line-height: 1.95;
    font-size: 17px;
}

.related-section {
    width: 100%;
}

.site-footer {
    background: linear-gradient(135deg, #78350f, #92400e 55%, #431407);
    color: #fffbeb;
    margin-top: 60px;
}

.site-footer__inner {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    gap: 30px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 950;
}

.site-footer p {
    max-width: 640px;
    margin: 0;
    color: #fde68a;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer-links a {
    color: #fffbeb;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(253, 230, 138, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

    .detail-hero__poster,
    .ranking-hero img {
        max-width: 420px;
    }
}

@media (max-width: 760px) {
    .brand-text {
        font-size: 21px;
    }

    .home-hero {
        min-height: 560px;
    }

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

    .home-hero__shade {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52));
    }

    .category-strip {
        margin-top: -44px;
    }

    .category-strip__grid,
    .movie-grid,
    .movie-grid--three,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .filter-panel__row {
        grid-template-columns: 1fr;
    }

    .movie-card--horizontal {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .movie-card--horizontal .movie-card__image {
        min-height: 138px;
    }

    .movie-card__body {
        padding: 14px;
    }

    .movie-card__title {
        font-size: 16px;
        min-height: 46px;
    }

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

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .site-header__inner {
        min-height: 68px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 20px;
    }

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

    .category-strip__grid,
    .movie-grid,
    .movie-grid--three,
    .overview-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-hero,
    .ranking-hero,
    .compact-hero,
    .article-card,
    .ranking-panel {
        padding: 20px;
        border-radius: 24px;
    }

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

    .btn {
        width: 100%;
    }

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

    .movie-card--horizontal .movie-card__image {
        aspect-ratio: 16 / 10;
    }
}
