:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-50: #fff7ed;
    --orange-600: #ea580c;
    --yellow-400: #facc15;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(146, 64, 14, 0.16);
    --shadow: 0 20px 45px rgba(146, 64, 14, 0.14);
    --shadow-strong: 0 28px 70px rgba(146, 64, 14, 0.22);
    --radius-xl: 22px;
    --radius-2xl: 30px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50) 48%, #fefce8);
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(253, 230, 138, 0.76);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(146, 64, 14, 0.16);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-icon {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--yellow-400), var(--amber-500), var(--orange-600));
    box-shadow: var(--shadow);
    font-size: 25px;
    transform: translateZ(0);
    transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-weight: 900;
    font-size: 25px;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600), #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--amber-100);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--amber-700);
}

.mobile-nav {
    display: none;
    padding: 0 16px 14px;
    border-top: 1px solid var(--line);
}

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

.page-section {
    padding: 72px 0;
}

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

.section-heading span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    font-size: 13px;
    font-weight: 800;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.12;
}

.section-heading a {
    color: var(--amber-700);
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 130px;
}

.hero-copy {
    max-width: 720px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--amber-500);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.34);
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0;
}

.hero-copy h1 {
    font-size: clamp(36px, 7vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    margin-top: 12px;
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.05;
}

.hero-copy p {
    margin: 18px 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.75;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.tag-row span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 20px;
}

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

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
}

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

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: inherit;
    font-size: 13px;
}

.meta-row span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(146, 64, 14, 0.10);
    color: inherit;
}

.hero .meta-row span,
.detail-hero .meta-row span {
    background: rgba(255, 255, 255, 0.18);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 92px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

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

.hero-dot {
    width: 10px !important;
    height: 10px !important;
    padding: 0;
    background: rgba(255, 255, 255, 0.42) !important;
}

.hero-dot.active {
    width: 28px !important;
    background: var(--amber-500) !important;
}

.hero-thumbs {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    transform: translateX(-50%);
}

.hero-thumb {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px;
    border-radius: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(16px);
}

.hero-thumb img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-thumb span {
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-band {
    background: linear-gradient(90deg, rgba(254, 243, 199, 0.72), rgba(255, 247, 237, 0.96));
}

.page-band.soft {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.84), rgba(254, 252, 232, 0.95));
}

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

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

.poster-card {
    min-width: 0;
}

.poster-link,
.wide-card-link,
.ranking-card a {
    display: block;
    height: 100%;
    color: inherit;
}

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #fde68a, #fed7aa);
    box-shadow: var(--shadow);
}

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

.poster-card:hover .poster-frame img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.74));
}

.card-label,
.poster-duration {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.card-label {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: #ef4444;
}

.poster-duration {
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.7);
}

.card-content {
    display: block;
    padding: 13px 4px 0;
}

.movie-title {
    display: block;
    overflow: hidden;
    min-height: 42px;
    color: #111827;
    font-size: 16px;
    line-height: 1.32;
    transition: color 0.2s ease;
}

.poster-card:hover .movie-title,
.wide-card:hover strong,
.ranking-card:hover strong {
    color: var(--amber-700);
}

.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 42px;
    margin: 8px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-content .meta-row {
    color: #6b7280;
}

.wide-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 6px 4px 20px;
    scroll-snap-type: x proximity;
}

.wide-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
}

.wide-card-link {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.wide-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.wide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.wide-card:hover .wide-thumb img {
    transform: scale(1.07);
}

.play-mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.24);
    font-size: 34px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.wide-card:hover .play-mark {
    opacity: 1;
}

.wide-info {
    position: relative;
    display: block;
    padding: 18px;
}

.wide-info .card-label {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
    background: #22c55e;
}

.wide-info strong,
.wide-info em {
    display: block;
}

.wide-info strong {
    font-size: 18px;
    line-height: 1.35;
}

.wide-info em {
    display: -webkit-box;
    overflow: hidden;
    margin: 9px 0 12px;
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(146, 64, 14, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
    background: #fff;
    transform: translateY(-3px);
}

.rank-num {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-score {
    color: var(--amber-700);
    font-weight: 900;
}

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

.category-tile,
.category-overview-card a {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 180px;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    filter: saturate(1.08);
    transition: transform 0.55s ease;
}

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

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.76));
}

.category-tile span {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 2;
    display: block;
    color: #fff;
}

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

.category-tile strong {
    font-size: 21px;
}

.category-tile em {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    font-size: 13px;
    line-height: 1.5;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.5fr));
    gap: 14px;
    margin-bottom: 30px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.08);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(217, 119, 6, 0.20);
    border-radius: 14px;
    color: #374151;
    background: #fff;
    outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.empty-state {
    display: none;
    margin-top: 26px;
    padding: 26px;
    border-radius: 20px;
    color: var(--muted);
    text-align: center;
    background: #fff;
}

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

.sub-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: linear-gradient(135deg, #92400e, #d97706 46%, #f59e0b);
    color: #fff;
}

.image-sub-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
}

.image-sub-hero > img,
.sub-hero-shade {
    position: absolute;
    inset: 0;
}

.image-sub-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.26));
}

.sub-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.breadcrumb a {
    color: inherit;
    font-weight: 800;
}

.breadcrumb a::after {
    content: "/";
    margin-left: 9px;
    color: rgba(255, 255, 255, 0.5);
}

.sub-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
}

.sub-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.75;
}

.category-overview-card a {
    min-height: 300px;
    padding: 18px;
}

.category-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-collage img {
    width: 100%;
    height: 116px;
    border-radius: 16px;
    object-fit: cover;
}

.category-overview-copy {
    display: block;
    padding: 18px 2px 0;
}

.category-overview-copy strong,
.category-overview-copy em,
.category-overview-copy span {
    display: block;
}

.category-overview-copy strong {
    font-size: 22px;
}

.category-overview-copy em {
    margin: 9px 0 16px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.6;
}

.category-overview-copy span {
    color: var(--amber-700);
    font-weight: 900;
}

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

.ranking-card a {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 18px;
    overflow: hidden;
    padding: 12px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}

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

.ranking-cover b {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.ranking-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.ranking-copy strong {
    font-size: 21px;
    line-height: 1.3;
}

.ranking-copy em {
    display: -webkit-box;
    overflow: hidden;
    margin: 12px 0;
    color: var(--muted);
    font-style: normal;
    line-height: 1.65;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ranking-copy span {
    color: var(--amber-700);
    font-weight: 900;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #111827;
}

.detail-bg,
.detail-bg-shade {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) scale(1.06);
    opacity: 0.72;
}

.detail-bg-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.32));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 56px 0 70px;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-copy h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
}

.detail-copy p {
    max-width: 780px;
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.8;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 26px;
}

.detail-stats span {
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
}

.player-section {
    padding-bottom: 36px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000;
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.26);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding-left: 6px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.38);
    font-size: 40px;
}

.player-overlay strong {
    max-width: min(760px, 80%);
    font-size: clamp(22px, 4vw, 42px);
    line-height: 1.2;
    text-align: center;
}

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

.content-block,
.side-panel {
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.content-block {
    padding: 30px;
}

.content-block h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 25px;
}

.content-block p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 16px;
    line-height: 1.95;
}

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

.info-list div {
    padding: 15px;
    border-radius: 16px;
    background: var(--amber-50);
}

.info-list dt {
    color: var(--amber-700);
    font-weight: 900;
}

.info-list dd {
    margin: 7px 0 0;
    color: #374151;
}

.side-panel {
    padding: 22px;
    align-self: start;
}

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

.side-list .wide-card {
    flex: auto;
}

.side-list .wide-card-link {
    box-shadow: none;
    border: 1px solid var(--line);
}

.side-list .wide-thumb {
    aspect-ratio: 16 / 10;
}

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

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

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

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-bottom: 190px;
    }

    .hero-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        bottom: 22px;
    }

    .hero-controls {
        bottom: 160px;
    }

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

    .rank-list,
    .ranking-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        max-width: 260px;
    }
}

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

    .brand-name {
        font-size: 20px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

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

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-flex;
        margin-top: 12px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48));
    }

    .hero-content {
        align-items: flex-start;
        padding-top: 54px;
    }

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

    .hero-copy h2 {
        font-size: 34px;
    }

    .hero-thumbs {
        display: none;
    }

    .hero-controls {
        bottom: 26px;
    }

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

    .movie-title {
        font-size: 14px;
    }

    .movie-desc {
        display: none;
    }

    .wide-card {
        flex-basis: 290px;
    }

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

    .filter-panel {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .ranking-card a {
        grid-template-columns: 100px 1fr;
    }

    .ranking-copy strong {
        font-size: 17px;
    }

    .ranking-copy em {
        -webkit-line-clamp: 2;
    }

    .sub-hero {
        padding: 48px 0;
    }

    .detail-hero-inner {
        padding: 38px 0 50px;
    }

    .detail-copy h1 {
        font-size: 34px;
    }

    .content-block {
        padding: 22px;
    }

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

    .play-circle {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}
