:root {
    --sunset-50: #fff7ed;
    --sunset-100: #ffedd5;
    --sunset-500: #f97316;
    --sunset-600: #ea580c;
    --twilight-50: #fef2f2;
    --twilight-500: #ef4444;
    --golden-50: #fefce8;
    --golden-500: #eab308;
    --ocean-500: #0ea5e9;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 2rem, 80rem);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    width: 2.1rem;
    height: 2.1rem;
    place-items: center;
    overflow: hidden;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.28);
}

.brand-mark span {
    width: 0;
    height: 0;
    margin-left: 0.18rem;
    border-top: 0.42rem solid transparent;
    border-bottom: 0.42rem solid transparent;
    border-left: 0.65rem solid white;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 1.14rem;
    font-weight: 800;
    color: var(--gray-900);
}

.brand-text small {
    margin-top: 0.15rem;
    color: var(--gray-500);
    font-size: 0.72rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-link {
    color: var(--gray-700);
    font-size: 0.92rem;
    font-weight: 650;
    transition: color 0.2s ease;
}

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

.menu-toggle {
    display: none;
    width: 2.55rem;
    height: 2.55rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    border: 0;
    border-radius: 0.75rem;
    background: var(--gray-100);
}

.menu-toggle span {
    width: 1.2rem;
    height: 2px;
    background: var(--gray-700);
}

.mobile-nav {
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--gray-200);
    background: white;
}

.mobile-nav.open {
    display: grid;
    gap: 0.35rem;
}

.mobile-nav .nav-link {
    padding: 0.7rem 0.9rem;
    border-radius: 0.7rem;
}

.mobile-nav .nav-link.active,
.mobile-nav .nav-link:hover {
    background: var(--sunset-50);
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sunset-50), white 48%, var(--twilight-50));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.75;
    background-image: radial-gradient(circle at 15% 10%, rgba(249, 115, 22, 0.18), transparent 30%), radial-gradient(circle at 85% 20%, rgba(239, 68, 68, 0.16), transparent 32%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(20rem, 0.75fr);
    gap: 2rem;
    align-items: stretch;
    padding: 3rem 0;
}

.hero-slider {
    min-height: 35rem;
}

.hero-slide {
    display: none;
    min-height: 35rem;
    overflow: hidden;
    border-radius: 1.4rem;
    background: var(--gray-900);
    box-shadow: var(--shadow-xl);
}

.hero-slide.active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.85fr);
}

.hero-art {
    position: relative;
    min-height: 35rem;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-art img {
    width: 100%;
    height: 100%;
    min-height: 35rem;
    object-fit: cover;
}

.hero-art span,
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.20));
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    color: white;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.36), transparent 34%), linear-gradient(135deg, #111827, #1f2937);
}

.eyebrow,
.section-kicker,
.panel-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    color: var(--sunset-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    color: #fed7aa;
}

.hero-copy h1,
.page-hero h1,
.detail-title-block h1 {
    margin: 0;
    font-size: clamp(2rem, 4.6vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-title-block p {
    max-width: 42rem;
    margin: 1.1rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.03rem;
}

.hero-tags,
.chip-row,
.detail-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tags {
    margin-top: 1.35rem;
}

.hero-tags span,
.chip-row span,
.tag-cloud span {
    padding: 0.36rem 0.68rem;
    border-radius: 0.55rem;
    color: white;
    background: rgba(249, 115, 22, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-tags span:nth-child(2n),
.chip-row span:nth-child(2n),
.tag-cloud span:nth-child(2n) {
    background: rgba(239, 68, 68, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.65rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1.15rem;
    border-radius: 0.75rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
    color: white;
    background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
    box-shadow: 0 15px 25px rgba(249, 115, 22, 0.22);
}

.button.secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.button.full {
    width: 100%;
}

.hero-panel,
.search-card,
.side-panel {
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.hero-panel {
    padding: 1.5rem;
}

.hero-panel h2,
.search-card h2,
.side-panel h2 {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.18;
}

.hero-panel p,
.search-card p,
.side-panel p {
    color: var(--gray-600);
}

.hero-search,
.filter-bar,
.inline-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.hero-search input,
.filter-bar input,
.filter-bar select,
.inline-filter input,
.inline-filter select {
    width: 100%;
    min-height: 3rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.85rem;
    padding: 0 0.95rem;
    color: var(--gray-900);
    background: white;
    outline: none;
}

.hero-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus,
.inline-filter input:focus,
.inline-filter select:focus {
    border-color: var(--sunset-500);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.hero-search button {
    min-height: 3rem;
    padding: 0 1rem;
    border: 0;
    border-radius: 0.85rem;
    color: white;
    background: var(--sunset-500);
    font-weight: 800;
}

.hero-dots {
    display: grid;
    gap: 0.72rem;
    margin-top: 1.2rem;
}

.hero-dot {
    display: grid;
    grid-template-columns: 3.8rem 1fr;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    padding: 0.45rem;
    color: var(--gray-700);
    background: white;
    text-align: left;
}

.hero-dot.active,
.hero-dot:hover {
    border-color: #fed7aa;
    background: var(--sunset-50);
}

.hero-dot img {
    width: 3.8rem;
    height: 3rem;
    border-radius: 0.62rem;
    object-fit: cover;
}

.hero-dot span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.88rem;
    font-weight: 750;
}

.stats-strip {
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
}

.stats-grid div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stats-grid strong {
    color: var(--sunset-600);
    font-size: 2rem;
    line-height: 1;
}

.stats-grid span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.section-block {
    padding: 3.2rem 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-head p {
    max-width: 42rem;
    margin: 0.45rem 0 0;
    color: var(--gray-600);
}

.section-more {
    flex: 0 0 auto;
    color: var(--sunset-600);
    font-weight: 800;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.featured-card,
.movie-card,
.category-card,
.category-overview-card,
.rank-row,
.detail-poster-card,
.detail-copy {
    overflow: hidden;
    border-radius: 1rem;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover,
.movie-card:hover,
.category-card:hover,
.category-overview-card:hover,
.rank-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.featured-card a {
    position: relative;
    display: block;
    min-height: 22rem;
}

.featured-card img {
    width: 100%;
    height: 22rem;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.featured-card:hover img,
.movie-card:hover img,
.category-card:hover img {
    transform: scale(1.045);
}

.featured-content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1.25rem;
    color: white;
}

.featured-content h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0.65rem 0 0.4rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 1.45rem;
}

.featured-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.1rem;
}

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

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

.movie-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--gray-100);
}

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

.play-mini {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.72);
}

.play-mini::after {
    position: absolute;
    top: 50%;
    left: 54%;
    width: 0;
    height: 0;
    border-top: 0.42rem solid transparent;
    border-bottom: 0.42rem solid transparent;
    border-left: 0.62rem solid white;
    content: "";
    transform: translate(-50%, -50%);
}

.rank-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    color: white;
    background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
    font-size: 0.72rem;
    font-weight: 900;
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0.95rem;
}

.card-topline,
.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    color: var(--gray-500);
    font-size: 0.76rem;
}

.card-topline span:first-child {
    max-width: 60%;
    overflow: hidden;
    color: var(--sunset-600);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0.45rem 0 0.35rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 1rem;
    line-height: 1.35;
}

.movie-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.7rem;
    margin: 0;
    color: var(--gray-600);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.86rem;
}

.card-meta {
    margin-top: auto;
    padding-top: 0.8rem;
}

.category-section {
    background: linear-gradient(135deg, white, var(--golden-50));
}

.category-grid,
.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
}

.category-card a {
    display: grid;
    min-height: 15rem;
    grid-template-rows: 8rem 1fr;
}

.category-card img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.category-card div {
    padding: 1rem;
}

.category-card span,
.category-overview-body span {
    color: var(--sunset-600);
    font-size: 0.78rem;
    font-weight: 850;
}

.category-card h3,
.category-overview-body h2 {
    margin: 0.35rem 0;
}

.category-card p,
.category-overview-body p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.two-column-section,
.rank-layout,
.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1.5rem;
    align-items: start;
}

.search-card,
.side-panel {
    padding: 1.4rem;
}

.rank-list {
    display: grid;
    gap: 0.75rem;
}

.rank-row a {
    display: grid;
    grid-template-columns: 3rem 4.2rem 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.65rem;
}

.rank-number {
    color: var(--sunset-600);
    font-size: 1.25rem;
    font-weight: 900;
}

.rank-row img {
    width: 4.2rem;
    height: 4.8rem;
    border-radius: 0.55rem;
    object-fit: cover;
}

.rank-info {
    display: grid;
    min-width: 0;
    gap: 0.2rem;
}

.rank-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info small {
    overflow: hidden;
    color: var(--gray-500);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-score {
    padding: 0.28rem 0.52rem;
    border-radius: 0.55rem;
    color: white;
    background: var(--gray-900);
    font-weight: 850;
}

.page-main,
.detail-main {
    min-height: 60vh;
}

.page-hero {
    padding: 4rem 0 3rem;
    color: white;
    background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.42), transparent 32%), linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.soft-hero,
.search-hero,
.category-hero {
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--sunset-50), white 48%, var(--twilight-50));
}

.soft-hero p,
.search-hero p,
.category-hero p {
    color: var(--gray-600);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
}

.soft-hero .breadcrumb,
.category-hero .breadcrumb {
    color: var(--gray-600);
}

.breadcrumb a:hover {
    color: var(--sunset-600);
}

.filter-bar {
    grid-template-columns: minmax(16rem, 1fr) repeat(3, minmax(9rem, 0.25fr));
    max-width: 62rem;
}

.compact-filter {
    max-width: 44rem;
    grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.3fr);
}

.filter-status {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-weight: 700;
}

.filter-item.hidden-by-filter {
    display: none;
}

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

.category-overview-card a {
    display: grid;
    grid-template-columns: 11rem 1fr;
    height: 100%;
}

.category-preview-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    padding: 0.7rem;
    background: var(--gray-100);
}

.category-preview-stack img {
    width: 100%;
    height: 5.2rem;
    border-radius: 0.55rem;
    object-fit: cover;
}

.category-overview-body {
    padding: 1.25rem;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: white;
    background: var(--gray-900);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.68)), var(--detail-image);
    background-position: center;
    background-size: cover;
    filter: blur(0px);
}

.detail-hero-inner {
    position: relative;
    padding: 3.5rem 0 3rem;
}

.detail-title-block {
    max-width: 54rem;
}

.player-section {
    margin-top: -2rem;
    padding-bottom: 2.8rem;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.1rem;
    background: black;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: black;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.7rem;
    border: 0;
    color: white;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.35));
    text-align: center;
    z-index: 2;
}

.player-overlay[hidden] {
    display: none;
}

.play-ring {
    display: inline-grid;
    width: 5rem;
    height: 5rem;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.9);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.35);
}

.play-ring span {
    width: 0;
    height: 0;
    margin-left: 0.28rem;
    border-top: 0.72rem solid transparent;
    border-bottom: 0.72rem solid transparent;
    border-left: 1.1rem solid white;
}

.player-overlay strong {
    max-width: min(90%, 42rem);
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    line-height: 1.1;
}

.player-overlay small {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.detail-content-grid {
    grid-template-columns: 18rem 1fr;
    padding-bottom: 1rem;
}

.detail-poster-card {
    position: sticky;
    top: 5.4rem;
    padding: 0.85rem;
}

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

.detail-poster-card .button {
    margin-top: 0.9rem;
}

.detail-copy {
    padding: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.info-grid div {
    padding: 0.9rem;
    border-radius: 0.8rem;
    background: var(--gray-50);
}

.info-grid span {
    display: block;
    color: var(--gray-500);
    font-size: 0.76rem;
}

.info-grid strong {
    display: block;
    overflow: hidden;
    margin-top: 0.25rem;
    color: var(--gray-900);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-copy section + section {
    margin-top: 1.6rem;
}

.detail-copy h2 {
    margin: 0 0 0.65rem;
    font-size: 1.35rem;
}

.detail-copy p {
    margin: 0;
    color: var(--gray-700);
    font-size: 1rem;
}

.tag-cloud span {
    color: var(--sunset-700, #c2410c);
    background: var(--sunset-100);
}

.tag-cloud span:nth-child(2n) {
    color: #991b1b;
    background: var(--twilight-50);
}

.site-footer {
    margin-top: 2rem;
    color: #d1d5db;
    background: var(--gray-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

.footer-brand {
    color: white;
    font-weight: 850;
}

.site-footer p {
    color: #9ca3af;
    font-size: 0.92rem;
}

.site-footer h3 {
    margin: 0 0 0.75rem;
    color: white;
}

.site-footer ul {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: #fed7aa;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid #1f2937;
    color: #9ca3af;
    font-size: 0.9rem;
}

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

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

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

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero-shell,
    .hero-slide.active,
    .two-column-section,
    .rank-layout,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        order: -1;
    }

    .hero-slider,
    .hero-slide,
    .hero-art,
    .hero-art img {
        min-height: 29rem;
    }

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

    .filter-bar,
    .compact-filter {
        grid-template-columns: 1fr 1fr;
    }

    .detail-poster-card {
        position: static;
        max-width: 20rem;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 1rem, 80rem);
    }

    .brand-text small {
        display: none;
    }

    .hero-shell {
        padding: 1rem 0 1.5rem;
    }

    .hero-slide.active {
        display: flex;
        flex-direction: column;
    }

    .hero-copy {
        padding: 1.4rem;
    }

    .hero-slider,
    .hero-slide,
    .hero-art,
    .hero-art img {
        min-height: 24rem;
    }

    .stats-grid,
    .featured-grid,
    .movie-grid,
    .large-grid,
    .related-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .filter-bar,
    .compact-filter,
    .hero-search {
        grid-template-columns: 1fr;
    }

    .rank-row a {
        grid-template-columns: 2rem 3.8rem 1fr;
    }

    .rank-score {
        grid-column: 3;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .movie-grid,
    .large-grid,
    .related-grid,
    .category-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        padding: 1rem;
    }

    .hero-dot {
        grid-template-columns: 3.2rem 1fr;
    }

    .hero-dot img {
        width: 3.2rem;
        height: 2.7rem;
    }

    .section-block {
        padding: 2.2rem 0;
    }
}

.sitemap-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.sitemap-list a {
    overflow: hidden;
    padding: 0.65rem 0.8rem;
    border-radius: 0.65rem;
    background: white;
    box-shadow: var(--shadow-soft);
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .sitemap-list {
        grid-template-columns: 1fr 1fr;
    }
}
