:root {
    --color-amber: #d97706;
    --color-amber-dark: #92400e;
    --color-orange: #c2410c;
    --color-stone-50: #fafaf9;
    --color-stone-100: #f5f5f4;
    --color-stone-200: #e7e5e4;
    --color-stone-400: #a8a29e;
    --color-stone-600: #57534e;
    --color-stone-700: #44403c;
    --color-stone-800: #292524;
    --color-stone-900: #1c1917;
    --shadow-card: 0 18px 45px rgba(41, 37, 36, 0.14);
    --shadow-soft: 0 12px 28px rgba(41, 37, 36, 0.12);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--color-stone-50);
    color: var(--color-stone-800);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: linear-gradient(90deg, #78350f, #9a3412, #78350f);
    box-shadow: 0 10px 28px rgba(67, 20, 7, 0.28);
}

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

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

.site-brand__mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-amber);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-brand__name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-brand__tagline {
    margin-top: 3px;
    color: #fde68a;
    font-size: 12px;
}

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

.site-nav__link {
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: #fde68a;
}

.site-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 999px;
    background: #fbbf24;
}

.header-search {
    width: 260px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    color: #fff;
    background: transparent;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.header-search button {
    border: 0;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    background: var(--color-amber);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 760px;
    color: #fff;
    background: var(--color-stone-900);
    overflow: hidden;
}

.hero__stage {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 4s ease;
}

.hero__slide.is-active .hero__image {
    transform: scale(1.01);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.1)),
        linear-gradient(0deg, rgba(28, 25, 23, 1), rgba(28, 25, 23, 0.05) 44%);
}

.hero__content {
    position: absolute;
    left: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 180px;
    width: min(640px, calc(100vw - 48px));
    z-index: 2;
}

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

.hero__content h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero__content p {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

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

.hero__meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(8px);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.32);
}

.button--ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.hero__arrow--prev {
    left: 24px;
}

.hero__arrow--next {
    right: 24px;
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 118px;
    z-index: 4;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero__dot.is-active {
    width: 34px;
    background: #fff;
}

.hero__panel {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    width: min(calc(100% - 32px), var(--container));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(28, 25, 23, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
    transform: translateX(-50%);
}

.hero__panel h1 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
}

.hero__panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.hero-search,
.search-panel__form {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.hero-search input,
.search-panel__form input {
    width: 100%;
    min-height: 52px;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--color-stone-800);
}

.hero-search button,
.search-panel__form button {
    border: 0;
    padding: 0 22px;
    color: #fff;
    background: var(--color-amber);
    cursor: pointer;
    font-weight: 800;
}

.hero__quick-links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__quick-links a {
    padding: 8px 14px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(255, 255, 255, 0.08);
}

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

.content-section--warm {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - var(--container)) / 2));
    padding-right: max(16px, calc((100vw - var(--container)) / 2));
    background: linear-gradient(180deg, #fffbeb, var(--color-stone-50));
}

.content-section--dark {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - var(--container)) / 2));
    padding-right: max(16px, calc((100vw - var(--container)) / 2));
    color: #fff;
    background: linear-gradient(160deg, #78350f, #431407);
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.detail-card h2,
.side-card h2 {
    margin: 0;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.section-link {
    color: var(--color-amber-dark);
    font-weight: 800;
}

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

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

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 8px 24px rgba(41, 37, 36, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-stone-200);
}

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

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

.movie-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.05) 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-card__shade {
    opacity: 1;
}

.movie-card__type,
.movie-card__rank {
    position: absolute;
    top: 12px;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(8px);
}

.movie-card__type {
    right: 12px;
    padding: 5px 10px;
}

.movie-card__rank {
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: var(--color-amber);
}

.movie-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-amber);
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.36);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card__body {
    padding: 16px;
}

.movie-card__body h3 {
    margin: 0 0 8px;
    min-height: 48px;
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card__body h3 a:hover {
    color: var(--color-amber-dark);
}

.movie-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--color-stone-600);
    font-size: 13px;
}

.movie-card__genre,
.movie-card__desc {
    margin: 0;
    color: var(--color-stone-600);
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card__genre {
    min-height: 21px;
    -webkit-line-clamp: 1;
}

.movie-card__desc {
    margin-top: 10px;
    -webkit-line-clamp: 2;
}

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

.category-tile,
.category-overview-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.category-tile a {
    position: relative;
    display: block;
    min-height: 220px;
    color: #fff;
}

.category-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-tile:hover img {
    transform: scale(1.07);
}

.category-tile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14));
}

.category-tile__name,
.category-tile__desc {
    position: absolute;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.category-tile__name {
    bottom: 62px;
    font-size: 26px;
    font-weight: 900;
}

.category-tile__desc {
    bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.rank-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.rank-list__item a {
    display: grid;
    grid-template-columns: 42px 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 8px 20px rgba(41, 37, 36, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-list__item a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.rank-list__number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-amber);
    font-weight: 900;
}

.rank-list__item img {
    width: 92px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--color-stone-200);
}

.rank-list__content {
    min-width: 0;
}

.rank-list__content strong,
.rank-list__content small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-list__content small {
    color: var(--color-stone-600);
}

.page-hero {
    width: min(100% - 32px, var(--container));
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 240px;
    padding: 48px;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.26), transparent 34%),
        linear-gradient(135deg, #78350f, #9a3412, #431407);
    box-shadow: var(--shadow-card);
}

.page-hero--compact {
    min-height: 210px;
}

.page-hero h1 {
    max-width: 720px;
    font-size: clamp(34px, 4vw, 52px);
}

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

.filter-bar,
.search-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.filter-bar__search input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--color-stone-200);
    border-radius: 14px;
    padding: 0 16px;
    outline: 0;
}

.filter-bar__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-bar__buttons button {
    border: 0;
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--color-stone-700);
    background: var(--color-stone-100);
    cursor: pointer;
    font-weight: 800;
}

.filter-bar__buttons button.is-active,
.filter-bar__buttons button:hover {
    color: #fff;
    background: var(--color-amber);
}

.empty-state {
    display: none;
    margin: 34px 0 0;
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--color-stone-600);
    background: #fff;
}

.empty-state.is-visible {
    display: block;
}

.category-overview-card a {
    display: grid;
    min-height: 100%;
}

.category-overview-card__covers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    background: var(--color-stone-900);
}

.category-overview-card__covers img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    object-fit: cover;
    background: var(--color-stone-200);
}

.category-overview-card__body {
    padding: 22px;
}

.category-overview-card__body h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.category-overview-card__body p:last-child {
    margin: 0;
    color: var(--color-stone-600);
}

.detail-hero {
    position: relative;
    min-height: 560px;
    color: #fff;
    overflow: hidden;
    background: var(--color-stone-900);
}

.detail-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.08);
    opacity: 0.52;
}

.detail-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46)),
        linear-gradient(0deg, var(--color-stone-50), rgba(28, 25, 23, 0) 38%);
}

.detail-hero__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 28px 0 80px;
}

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

.breadcrumb a:hover {
    color: #fde68a;
}

.detail-hero__content {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
    margin-top: 60px;
}

.detail-poster {
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
    background: var(--color-stone-200);
}

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

.detail-copy h1 {
    max-width: 780px;
    font-size: clamp(36px, 5vw, 64px);
}

.detail-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
}

.detail-layout {
    width: min(100% - 32px, var(--container));
    margin: -72px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
    padding-bottom: 64px;
}

.detail-main,
.detail-sidebar {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.62));
    cursor: pointer;
}

.player-start span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-amber);
    font-size: 34px;
    box-shadow: 0 18px 35px rgba(217, 119, 6, 0.38);
}

.player-start strong {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
}

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

.player-message {
    position: absolute;
    left: 50%;
    bottom: 18px;
    margin: 0;
    color: #fff;
    transform: translateX(-50%);
}

.detail-card,
.side-card {
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.detail-card {
    padding: 28px;
}

.detail-card h2 {
    margin-bottom: 14px;
    font-size: 26px;
}

.detail-card p {
    margin: 0;
    color: var(--color-stone-700);
    font-size: 17px;
}

.side-card {
    padding: 22px;
}

.detail-sidebar {
    position: sticky;
    top: 92px;
}

.side-card h2 {
    margin-bottom: 16px;
    font-size: 22px;
}

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

.side-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-stone-200);
}

.side-card dt {
    color: var(--color-stone-600);
}

.side-card dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud span {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--color-stone-700);
    background: var(--color-stone-100);
}

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

.side-card--nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--color-amber-dark);
    background: #fffbeb;
    font-weight: 800;
}

.search-panel {
    grid-template-columns: 1fr;
}

.site-footer {
    color: var(--color-stone-200);
    background: linear-gradient(180deg, var(--color-stone-800), var(--color-stone-900));
}

.site-footer__inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 52px 0;
}

.footer-logo {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.footer-column p {
    color: var(--color-stone-400);
}

.footer-column h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--color-stone-400);
}

.footer-column a:hover {
    color: #fbbf24;
}

.site-footer__bottom {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-stone-400);
    text-align: center;
}

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

@media (max-width: 1100px) {
    .movie-grid,
    .movie-grid--wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .header-search {
        display: none;
    }

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

    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 820px) {
    .site-header__inner {
        flex-wrap: wrap;
        min-height: 64px;
        padding: 10px 0;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__link {
        padding: 12px 0;
    }

    .site-nav__link.is-active::after {
        display: none;
    }

    .hero {
        min-height: 860px;
    }

    .hero__content {
        bottom: 300px;
    }

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

    .hero__arrow {
        display: none;
    }

    .hero__dots {
        bottom: 270px;
    }

    .movie-grid,
    .movie-grid--wide,
    .movie-grid--compact,
    .movie-grid--featured,
    .movie-grid--editor,
    .rank-list,
    .rank-list--large,
    .category-grid,
    .category-overview-grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .page-hero {
        display: block;
        padding: 32px 24px;
    }

    .page-hero .button {
        margin-top: 18px;
    }

    .detail-hero__content {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: 220px;
    }

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

@media (max-width: 560px) {
    .site-brand__tagline {
        display: none;
    }

    .hero__content h2 {
        font-size: 34px;
    }

    .hero__content p,
    .detail-copy p {
        font-size: 16px;
    }

    .hero-search,
    .search-panel__form {
        flex-direction: column;
        border-radius: 18px;
    }

    .hero-search button,
    .search-panel__form button {
        min-height: 46px;
    }

    .rank-list__item a {
        grid-template-columns: 38px 76px minmax(0, 1fr);
    }

    .rank-list__item img {
        width: 76px;
        height: 52px;
    }

    .content-section {
        padding: 46px 0;
    }
}
