:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --red-500: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.12), 0 2px 4px -2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 20px -8px rgba(120, 53, 15, 0.22);
    --shadow-xl: 0 22px 40px -18px rgba(120, 53, 15, 0.42);
    --shadow-2xl: 0 28px 60px -20px rgba(120, 53, 15, 0.55);
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-500), var(--amber-500));
    box-shadow: var(--shadow-lg);
}

.site-header__inner {
    max-width: var(--max-width);
    height: 72px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    min-width: max-content;
}

.site-logo__mark {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--white);
    display: grid;
    place-items: center;
    font-size: 25px;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease;
}

.site-logo:hover .site-logo__mark {
    transform: scale(1.08);
}

.site-logo__text {
    display: grid;
    gap: 2px;
}

.site-logo__text strong {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.site-logo__text small {
    color: var(--amber-100);
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--orange-600);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header-search {
    width: 230px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input {
    width: 100%;
    min-width: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    outline: 0;
    padding: 9px 12px;
}

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

.header-search button {
    border: 0;
    color: var(--orange-700);
    background: var(--white);
    padding: 9px 13px;
    font-weight: 800;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--white);
}

.mobile-nav {
    display: none;
    padding: 8px 16px 16px;
    background: var(--amber-600);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.mobile-link {
    padding: 12px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background: linear-gradient(90deg, #fbbf24 0%, #fb923c 50%, #facc15 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 20px 150px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    color: var(--white);
}

.hero-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    border-radius: 999px;
    font-weight: 800;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 8px 16px;
}

.eyebrow {
    color: var(--orange-800);
    background: var(--orange-100);
    padding: 7px 15px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-copy h1 span {
    color: var(--amber-100);
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--amber-50);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    border: 0;
    font-weight: 900;
    transition: all 0.22s ease;
}

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

.button-light {
    color: var(--orange-600);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.button-light:hover {
    background: var(--amber-50);
    box-shadow: var(--shadow-xl);
}

.button-dark {
    color: var(--white);
    background: var(--amber-800);
}

.button-dark:hover {
    background: var(--amber-900);
}

.hero-mini-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.hero-mini {
    position: relative;
    min-height: 104px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.hero-mini img {
    width: 100%;
    height: 100%;
    min-height: 104px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-mini:hover img {
    transform: scale(1.08);
}

.hero-mini span {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 28px 10px 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.hero-poster-wrap {
    position: relative;
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 460px;
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.hero-poster:hover {
    transform: scale(1.035);
}

.hero-poster img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.hero-poster__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
}

.hero-poster__text {
    position: absolute;
    inset: auto 0 0 0;
    color: var(--white);
    padding: 26px;
}

.hero-poster__text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 27px;
}

.hero-poster__text small {
    display: block;
    color: var(--amber-100);
    font-size: 15px;
}

.hero-sticker {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 3;
    color: var(--white);
    background: var(--red-500);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    transform: rotate(12deg);
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
    line-height: 0;
}

.hero-shapes .shape {
    position: absolute;
    z-index: 1;
    color: rgba(255, 255, 255, 0.55);
    opacity: 0.28;
    user-select: none;
}

.shape-one {
    top: 80px;
    left: 7%;
    font-size: 64px;
}

.shape-two {
    top: 210px;
    right: 12%;
    font-size: 52px;
}

.shape-three {
    bottom: 160px;
    left: 26%;
    font-size: 78px;
}

.shape-four {
    bottom: 110px;
    right: 6%;
    font-size: 64px;
}

.section {
    padding: 76px 20px;
}

.section-white {
    background: var(--white);
}

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

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.page-hero h1,
.content-card h2,
.player-card h1 {
    margin: 0;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-heading h2,
.page-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
}

.section-heading p,
.page-hero p {
    color: var(--gray-600);
    font-size: 18px;
}

.movie-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

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

.movie-card__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46));
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.movie-card__badge,
.movie-card__rank {
    position: absolute;
    z-index: 2;
    top: 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(6px);
}

.movie-card__badge {
    right: 12px;
    color: var(--orange-600);
    background: rgba(255, 255, 255, 0.92);
    padding: 5px 10px;
}

.movie-card__rank {
    left: 12px;
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
    padding: 5px 9px;
}

.movie-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--orange-600);
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-xl);
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
    transition: all 0.22s ease;
}

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

.movie-card__body {
    padding: 18px;
}

.movie-card__meta {
    margin: 0 0 8px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-card h3 {
    margin: 0 0 10px;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--orange-600);
}

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

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

.movie-card__tags span,
.detail-tags a,
.mission-tags a {
    color: var(--orange-700);
    background: var(--orange-50);
    border: 1px solid var(--orange-100);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.category-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.category-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), var(--amber-600));
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(3n + 2) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #fb923c, #b45309);
}

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

.category-card__icon {
    font-size: 34px;
}

.category-card__name {
    font-size: 24px;
    font-weight: 900;
}

.category-card__desc {
    color: var(--amber-50);
    font-size: 14px;
}

.category-card__sample {
    margin-top: auto;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.ranking-section {
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500), #facc15);
}

.ranking-panel {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
    align-items: start;
}

.ranking-copy {
    color: var(--white);
    position: sticky;
    top: 100px;
}

.ranking-copy .eyebrow {
    color: var(--amber-900);
    background: rgba(255, 255, 255, 0.78);
}

.ranking-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.ranking-copy p {
    margin-bottom: 28px;
    color: var(--amber-50);
    font-size: 18px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 52px 64px 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    transform: translateX(6px);
    background: var(--white);
}

.rank-row img {
    width: 64px;
    height: 76px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-row__num {
    color: var(--orange-600);
    font-size: 22px;
    font-weight: 950;
}

.rank-row__title {
    font-weight: 900;
}

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

.rank-row__score {
    color: var(--white);
    background: var(--red-500);
    border-radius: 999px;
    padding: 4px 9px;
    font-weight: 900;
}

.mission-section {
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500), #eab308);
    overflow: hidden;
}

.mission-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.mission-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
}

.mission-copy p {
    color: var(--amber-50);
    font-size: 18px;
}

.mission-tags a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

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

.mission-gallery a {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.mission-gallery a:nth-child(2) {
    transform: translateY(32px);
}

.mission-gallery a:nth-child(3) {
    transform: translateY(-32px);
}

.mission-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-gallery a:hover img {
    transform: scale(1.08);
}

.page-hero {
    padding: 88px 20px 72px;
    text-align: center;
    background: linear-gradient(180deg, var(--amber-100), var(--orange-50));
}

.page-hero .eyebrow {
    justify-content: center;
}

.page-hero p {
    max-width: 760px;
    margin: 16px auto 0;
}

.category-preview-wrap {
    display: grid;
    gap: 28px;
}

.category-preview {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-lg);
}

.category-preview__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.category-preview h2 {
    margin: 0;
    font-size: 28px;
}

.category-preview__head a {
    color: var(--white);
    background: var(--orange-600);
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 900;
}

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

.category-preview__list a {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.category-preview__list img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-preview__list span {
    position: absolute;
    inset: auto 0 0 0;
    color: var(--white);
    padding: 36px 12px 12px;
    font-weight: 900;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.filter-bar {
    max-width: var(--max-width);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: minmax(230px, 1fr) 180px 180px 160px;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: var(--amber-50);
    box-shadow: var(--shadow-md);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--amber-200);
    border-radius: 16px;
    outline: 0;
    background: var(--white);
    padding: 12px 14px;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.detail-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 36px 20px 84px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange-700);
    font-weight: 800;
}

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

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

.player-card,
.content-card,
.detail-info {
    padding: 24px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.player-card h1 {
    font-size: clamp(30px, 5vw, 46px);
}

.player-card p {
    color: var(--gray-600);
    font-size: 18px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: var(--gray-900);
    box-shadow: var(--shadow-xl);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
    cursor: pointer;
}

.player-overlay span {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--orange-600);
    background: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.2s ease;
}

.player-overlay strong {
    max-width: 80%;
    font-size: 22px;
}

.player-overlay:hover span {
    transform: scale(1.08);
}

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

.content-card h2,
.detail-info h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: var(--gray-700, #374151);
    font-size: 17px;
}

.detail-aside {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 20px;
}

.detail-cover {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.detail-info dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.detail-info dl div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 10px;
}

.detail-info dt {
    color: var(--gray-500);
    font-weight: 800;
}

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

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

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

.site-footer {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-900), var(--orange-800), var(--amber-900));
}

.site-footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 22px;
}

.footer-logo span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--white);
}

.site-footer p,
.site-footer__bottom {
    color: var(--amber-100);
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: var(--amber-100);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 7px 12px;
    transition: color 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

.site-footer__bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

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

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

    .ranking-copy,
    .detail-aside {
        position: static;
    }

    .detail-aside {
        grid-template-columns: 260px 1fr;
    }
}

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

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

    .site-header__inner {
        height: 66px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-inner {
        padding: 70px 18px 120px;
        gap: 36px;
    }

    .hero-mini-list,
    .category-preview__list,
    .filter-bar,
    .site-footer__grid,
    .detail-aside {
        grid-template-columns: 1fr 1fr;
    }

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

    .rank-row {
        grid-template-columns: 40px 54px 1fr auto;
    }

    .rank-row__meta {
        display: none;
    }

    .mission-gallery a:nth-child(n) {
        transform: none;
    }
}

@media (max-width: 560px) {
    .site-logo__text strong {
        font-size: 18px;
    }

    .site-logo__text small {
        display: none;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-lead,
    .section-heading p,
    .page-hero p,
    .player-card p {
        font-size: 16px;
    }

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

    .hero-mini-list,
    .movie-grid,
    .movie-grid-wide,
    .category-grid,
    .category-preview__list,
    .filter-bar,
    .site-footer__grid,
    .detail-aside,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .hero-poster img {
        min-height: 360px;
        height: 360px;
    }

    .section {
        padding: 56px 16px;
    }

    .page-hero {
        padding: 62px 16px 48px;
    }

    .player-card,
    .content-card,
    .detail-info {
        padding: 18px;
        border-radius: 22px;
    }

    .video-shell {
        border-radius: 18px;
    }

    .player-overlay span {
        width: 64px;
        height: 64px;
    }
}
