
:root {
    --color-primary: #06b6d4;
    --color-primary-dark: #0891b2;
    --color-secondary: #2563eb;
    --color-bg: #f0fdff;
    --color-soft: #e0f7ff;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-card: #ffffff;
    --color-line: rgba(8, 145, 178, 0.16);
    --shadow-soft: 0 20px 60px rgba(8, 145, 178, 0.16);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.10);
    --radius-large: 28px;
    --radius-medium: 20px;
    --radius-small: 14px;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #ecfeff 0%, #ffffff 42%, #f8fafc 100%);
    color: var(--color-text);
    min-width: 320px;
}

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

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

button,
input,
select {
    font: inherit;
}

.sr-only {
    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: 100;
    background: rgba(240, 253, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.14);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.12);
}

.site-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 76px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    white-space: nowrap;
}

.brand__mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.28);
}

.brand__text {
    font-size: 1.35rem;
}

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

.nav-link,
.mobile-nav-link {
    color: #334155;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    transform: translateY(-1px);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input {
    width: 190px;
    border: 2px solid rgba(6, 182, 212, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.header-search button,
.mobile-search button {
    border: 0;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: #ffffff;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: #0f172a;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 22px 18px;
    border-top: 1px solid rgba(6, 182, 212, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

.mobile-nav.is-open {
    display: grid;
    gap: 10px;
}

.section-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

.hero {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 52%, #22d3ee 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 22px 96px;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.22) 0 3px, transparent 4px), radial-gradient(circle at 60px 70px, rgba(255, 255, 255, 0.12) 0 4px, transparent 5px);
    background-size: 92px 92px;
}

.hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.36;
    background: rgba(255, 255, 255, 0.35);
}

.hero__glow--one {
    top: -140px;
    left: -120px;
}

.hero__glow--two {
    right: -110px;
    bottom: -160px;
}

.hero__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(0deg, #ecfeff 0%, rgba(236, 254, 255, 0) 100%);
}

.hero-slider {
    position: relative;
    min-height: 470px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.7fr);
    align-items: center;
    gap: 46px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    color: inherit;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-slide h1,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hero-slide p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.90);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    line-height: 1.8;
}

.hero-slide__tags,
.detail-tags,
.movie-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-slide__tags span,
.detail-tags span,
.movie-card__tags span {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

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

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

.button--primary {
    color: var(--color-primary-dark);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.button--ghost {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.button--light {
    color: var(--color-primary-dark);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.hero-slide__poster,
.detail-poster,
.podium-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.34);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    min-height: 420px;
}

.hero-slide__poster::before,
.detail-poster::before,
.podium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: inherit;
    pointer-events: none;
    z-index: 3;
}

.hero-slide__poster img,
.detail-poster img,
.podium-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.25s ease;
}

.hero-slide__poster:hover img,
.movie-card:hover img,
.podium-card:hover img {
    transform: scale(1.06);
}

img.is-missing {
    opacity: 0;
}

.poster-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    color: #ffffff;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 34%), linear-gradient(135deg, #06b6d4, #2563eb);
    z-index: 0;
}

.poster-fallback strong {
    font-size: 1.2rem;
    line-height: 1.4;
}

.poster-fallback small {
    opacity: 0.82;
}

.poster-fallback--hero strong {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.hero-controls {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.hero-control,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.hero-control {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.9rem;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #ffffff;
}

.stats-section {
    margin-top: -42px;
    position: relative;
    z-index: 10;
}

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

.stat-card,
.category-summary,
.content-card,
.filter-panel,
.movie-card,
.category-tile {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.stat-card {
    padding: 24px;
    border-radius: var(--radius-medium);
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1;
    font-weight: 900;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-weight: 700;
}

.section {
    padding: 78px 0;
}

.section--soft {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(37, 99, 235, 0.08));
}

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

.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1.02rem;
}

.section-heading__action {
    color: var(--color-primary-dark);
    font-weight: 900;
}

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

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

.movie-grid--catalog {
    padding: 36px 0 78px;
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-medium);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.38);
    box-shadow: var(--shadow-soft);
}

.movie-card[hidden] {
    display: none;
}

.movie-card__link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.movie-card__poster {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.movie-card__poster img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.25s ease;
}

.movie-card__rank,
.movie-card__play {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: rgba(15, 23, 42, 0.64);
    backdrop-filter: blur(12px);
}

.movie-card__rank {
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 0.78rem;
}

.movie-card__play {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.movie-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.movie-card__meta,
.movie-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.movie-card h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 900;
    color: #0f172a;
}

.movie-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.movie-card__tags span {
    color: var(--color-primary-dark);
    background: rgba(6, 182, 212, 0.10);
}

.rating {
    color: #f59e0b;
}

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

.category-tile,
.category-summary {
    display: block;
    border-radius: var(--radius-medium);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile__icon,
.category-summary__top span {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.category-tile h3,
.category-summary h2 {
    margin: 18px 0 10px;
    font-size: 1.2rem;
    font-weight: 900;
}

.category-tile p,
.category-summary p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}

.category-summary__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary-dark);
}

.category-summary__samples {
    margin-top: 16px;
    display: grid;
    gap: 7px;
    color: #334155;
    font-size: 0.88rem;
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

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

.page-hero--category {
    padding: 56px 0 72px;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

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

.filter-panel {
    margin-top: -36px;
    position: relative;
    z-index: 4;
    border-radius: var(--radius-large);
    padding: 24px;
}

.filter-panel__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.filter-panel h2 {
    margin: 0;
    font-weight: 900;
}

.filter-panel p {
    margin: 0;
    color: var(--color-muted);
}

.filter-controls {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 14px;
}

.filter-controls label {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    border: 2px solid rgba(6, 182, 212, 0.16);
    border-radius: 16px;
    padding: 12px 13px;
    background: #ffffff;
    outline: none;
}

.empty-state {
    margin: 20px 0 80px;
    padding: 30px;
    border-radius: var(--radius-medium);
    text-align: center;
    color: var(--color-muted);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.cta-band {
    padding: 72px 0;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.cta-band h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.cta-band p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.15rem;
}

.detail-hero {
    padding: 52px 0 76px;
    color: #ffffff;
    background: radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.18), transparent 30%), linear-gradient(135deg, #06b6d4, #2563eb);
}

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

.detail-poster {
    min-height: 520px;
}

.detail-info h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.detail-one-line {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.75;
}

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

.detail-meta-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
}

.detail-meta-list span {
    color: rgba(255, 255, 255, 0.78);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    min-height: 420px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.26);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.28), rgba(2, 6, 23, 0.78));
}

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

.play-overlay__icon {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.1rem;
    color: var(--color-primary-dark);
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.player-status {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    text-align: center;
    pointer-events: none;
}

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

.content-card {
    border-radius: var(--radius-large);
    padding: 30px;
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    font-weight: 900;
}

.content-card p {
    margin: 0;
    color: #334155;
    line-height: 1.9;
    font-size: 1.02rem;
}

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

.podium-card {
    display: block;
    min-height: 420px;
    color: #ffffff;
}

.podium-card img {
    position: absolute;
    inset: 0;
}

.podium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.12));
    z-index: 2;
}

.podium-card > div,
.podium-card__rank {
    position: absolute;
    z-index: 4;
}

.podium-card > div {
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.podium-card__rank {
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.podium-card h2 {
    margin: 0 0 8px;
    font-size: 1.55rem;
    font-weight: 900;
}

.podium-card p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
}

.sitemap-list {
    padding: 58px 22px 88px;
    display: grid;
    gap: 28px;
}

.sitemap-section {
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    padding: 24px;
}

.sitemap-section h2 {
    margin: 0 0 16px;
    font-size: 1.4rem;
}

.sitemap-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.sitemap-section li a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #334155;
    background: #f8fafc;
}

.sitemap-section li a:hover {
    color: var(--color-primary-dark);
    background: rgba(6, 182, 212, 0.08);
}

.sitemap-section span {
    color: var(--color-muted);
    font-size: 0.86rem;
    white-space: nowrap;
}

.site-footer {
    color: #dbeafe;
    background: #0f172a;
}

.site-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 22px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
}

.brand--footer {
    color: #ffffff;
}

.footer-brand p,
.footer-column a {
    color: #cbd5e1;
}

.footer-brand p {
    max-width: 420px;
    line-height: 1.8;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: #22d3ee;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 18px 22px;
    color: #94a3b8;
}

.footer-bottom p {
    margin: 0;
}

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

    .mobile-menu-button {
        display: block;
    }

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

    .hero-slider {
        min-height: 830px;
    }

    .hero-slide__poster,
    .detail-poster {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .movie-grid,
    .movie-grid--featured,
    .movie-grid--related,
    .category-grid,
    .category-summary-grid,
    .podium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .brand__text {
        font-size: 1.15rem;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        padding-top: 46px;
    }

    .hero-slider {
        min-height: 760px;
    }

    .hero-slide {
        gap: 28px;
    }

    .stats-grid,
    .movie-grid,
    .movie-grid--featured,
    .movie-grid--related,
    .category-grid,
    .category-summary-grid,
    .podium-grid,
    .detail-content,
    .filter-controls,
    .site-footer__inner,
    .sitemap-section ul {
        grid-template-columns: 1fr;
    }

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

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

    .section {
        padding: 56px 0;
    }

    .player-shell {
        min-height: 240px;
    }
}
