:root {
    --color-orange: #ea580c;
    --color-orange-deep: #c2410c;
    --color-red: #dc2626;
    --color-yellow: #fde047;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-300: #d1d5db;
    --color-gray-500: #6b7280;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
    --color-white: #ffffff;
    --shadow-card: 0 18px 35px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 10px 25px rgba(17, 24, 39, 0.08);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-orange);
    font-size: 26px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: var(--color-white);
    font-size: 16px;
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.34);
}

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

.nav-link,
.mobile-link {
    border-radius: 999px;
    color: var(--color-gray-700);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    background: #fff7ed;
    color: var(--color-orange);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(300px, 26vw);
    padding: 4px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #fff7ed;
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 8px 10px;
    color: var(--color-gray-900);
}

.header-search button,
.hero-search button {
    border: 0;
    border-radius: 999px;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 8px 16px;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover {
    background: var(--color-orange-deep);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 3px;
    background: var(--color-orange);
}

.mobile-nav {
    display: none;
    border-top: 1px solid #fed7aa;
    background: var(--color-white);
}

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

.mobile-link {
    padding: 16px 24px;
    border-radius: 0;
}

.hero-slider {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: linear-gradient(135deg, #f97316, #dc2626 56%, #7f1d1d);
    color: var(--color-white);
}

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

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

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(1.12) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 25%, rgba(253, 224, 71, 0.32), transparent 30%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(127, 29, 29, 0.72) 48%, rgba(234, 88, 12, 0.46));
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 330px;
    align-items: center;
    gap: 58px;
    min-height: 640px;
    padding: 76px 0 92px;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 12px;
    color: var(--color-yellow);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero-copy h2 {
    margin-top: 10px;
    color: var(--color-yellow);
    font-size: clamp(32px, 4.4vw, 54px);
}

.hero-copy p {
    max-width: 680px;
    margin: 22px 0 0;
    color: #fef3c7;
    font-size: clamp(17px, 2vw, 22px);
}

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

.primary-button,
.secondary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    padding: 0 26px;
    background: var(--color-white);
    color: var(--color-orange);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.secondary-button,
.section-more {
    padding: 0 22px;
    background: #fff7ed;
    color: var(--color-orange);
}

.ghost-button {
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    color: var(--color-white);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.section-more:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.34);
    border-radius: 30px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
    transform: rotate(2deg);
}

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

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

.hero-poster span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.92);
    color: var(--color-white);
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
    border: 0;
    background: rgba(255, 255, 255, 0.22);
    color: var(--color-white);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    padding: 0;
}

.hero-dot.is-active {
    width: 36px;
    background: var(--color-yellow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: -46px;
    position: relative;
    z-index: 3;
}

.stat-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--color-orange);
    font-size: 34px;
    line-height: 1;
}

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

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

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

.section-heading h2 {
    margin: 0;
    color: var(--color-gray-900);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-kicker {
    color: var(--color-orange);
}

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 26px;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(17, 24, 39, 0.2);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.category-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.86));
}

.category-card strong,
.category-card em {
    position: relative;
    display: block;
    z-index: 1;
}

.category-card strong {
    margin-top: 88px;
    font-size: 25px;
    font-weight: 900;
}

.category-card em {
    margin-top: 8px;
    color: #fef3c7;
    font-style: normal;
    font-weight: 700;
}

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

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

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 44px rgba(17, 24, 39, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fed7aa, #fecaca);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.82));
    transition: opacity 0.2s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: var(--color-white);
    font-weight: 900;
}

.play-chip {
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    background: rgba(234, 88, 12, 0.94);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    color: #7c2d12;
}

.movie-card-body {
    padding: 18px;
}

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-gray-500);
    font-size: 13px;
    font-weight: 700;
}

.movie-card h3 {
    margin: 10px 0 8px;
    font-size: 19px;
    line-height: 1.28;
    font-weight: 900;
}

.movie-card h3 a:hover,
.ranking-info h2 a:hover,
.next-links a:hover {
    color: var(--color-orange);
}

.movie-card p {
    margin: 0;
    min-height: 48px;
    color: var(--color-gray-500);
    font-size: 14px;
}

.tag-row,
.ranking-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span,
.ranking-tags span,
.detail-meta span {
    border-radius: 999px;
    background: #fff7ed;
    color: var(--color-orange);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.large-tags span {
    padding: 8px 12px;
    font-size: 14px;
}

.content-band {
    padding: 72px 0;
    background: var(--color-gray-900);
    color: var(--color-white);
}

.content-band .section-heading h2,
.content-band .section-more {
    color: var(--color-white);
}

.content-band .section-more {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.band-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: start;
}

.band-panel {
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.9), rgba(220, 38, 38, 0.86));
    padding: 36px;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
}

.band-panel h2 {
    margin: 0 0 12px;
    font-size: 36px;
}

.band-panel p {
    color: #ffedd5;
}

.hero-search {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    padding: 8px;
    border-radius: 20px;
    background: var(--color-white);
}

.hero-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 12px 14px;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.quick-tags a {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    padding: 7px 13px;
    font-weight: 800;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 14px;
    position: relative;
    min-height: 78px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-gray-900);
    padding: 10px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, background 0.2s ease;
}

.content-band .mini-card {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

.mini-card:hover {
    transform: translateX(4px);
    background: #fff7ed;
}

.content-band .mini-card:hover {
    background: rgba(255, 255, 255, 0.16);
}

.mini-card img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
}

.mini-card strong,
.mini-card em {
    display: block;
}

.mini-card strong {
    font-weight: 900;
    line-height: 1.3;
}

.mini-card em {
    margin-top: 4px;
    color: var(--color-gray-500);
    font-size: 13px;
    font-style: normal;
}

.content-band .mini-card em {
    color: #fed7aa;
}

.mini-rank {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-yellow);
    color: #7c2d12;
    font-size: 12px;
    font-weight: 900;
}

.page-hero {
    padding: 70px 0;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
}

.compact-hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(253, 224, 71, 0.24), transparent 30%),
        linear-gradient(135deg, var(--color-orange), var(--color-red));
}

.category-hero,
.ranking-hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(253, 224, 71, 0.26), transparent 32%),
        linear-gradient(135deg, #111827, #c2410c 56%, #dc2626);
}

.page-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #ffedd5;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: #ffedd5;
    font-size: 14px;
    font-weight: 800;
}

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

.overview-layout {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.category-overview-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.category-overview-head p {
    margin: 0 0 8px;
    color: var(--color-orange);
    font-weight: 900;
}

.category-overview-head h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
}

.category-overview-head span {
    display: block;
    margin-top: 8px;
    color: var(--color-gray-500);
}

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

.filter-panel {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.filter-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-gray-700);
    font-size: 14px;
    font-weight: 900;
}

.filter-field input,
.filter-field select {
    width: 100%;
    border: 1px solid var(--color-gray-300);
    border-radius: 14px;
    outline: 0;
    background: var(--color-white);
    padding: 12px 14px;
    color: var(--color-gray-900);
}

.filter-field input:focus,
.filter-field select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.filterable-card.is-hidden {
    display: none;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 140px;
    align-items: center;
    gap: 22px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

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

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

.ranking-cover span {
    position: absolute;
    top: 8px;
    left: 8px;
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-yellow);
    color: #7c2d12;
    font-weight: 900;
}

.ranking-info p {
    margin: 0;
    color: var(--color-gray-500);
}

.ranking-info h2 {
    margin: 8px 0;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.ranking-score {
    text-align: right;
}

.ranking-score strong {
    display: block;
    color: var(--color-orange);
    font-size: 38px;
    line-height: 1;
}

.ranking-score span {
    display: block;
    margin-top: 8px;
    color: var(--color-gray-500);
    font-size: 13px;
    font-weight: 800;
}

.detail-hero {
    padding: 72px 0;
    color: var(--color-white);
    background:
        radial-gradient(circle at 80% 20%, rgba(253, 224, 71, 0.24), transparent 26%),
        linear-gradient(135deg, #111827, #7f1d1d 48%, #ea580c);
}

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

.detail-poster {
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.26);
    border-radius: 30px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
}

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

.detail-intro h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.detail-one-line {
    max-width: 760px;
    margin: 22px 0 0;
    color: #ffedd5;
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-meta span {
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
}

.detail-intro .primary-button {
    margin-top: 28px;
}

.player-section {
    padding: 56px 0 20px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.22);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

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

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

.player-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 34px;
    box-shadow: 0 20px 42px rgba(234, 88, 12, 0.38);
}

.player-overlay strong {
    width: min(680px, calc(100% - 40px));
    font-size: clamp(22px, 4vw, 36px);
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    padding: 46px 0 14px;
}

.detail-article,
.detail-side {
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 900;
}

.detail-article h2:not(:first-child) {
    margin-top: 34px;
}

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

.next-links {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.next-links a {
    border-radius: 14px;
    background: #fff7ed;
    color: var(--color-orange);
    padding: 12px 14px;
    font-weight: 900;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 50px 0;
}

.footer-logo {
    margin-bottom: 14px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 900;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--color-white);
}

.site-footer p {
    margin: 0;
    color: #9ca3af;
}

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

.site-footer a:hover {
    color: var(--color-yellow);
}

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

.accent-orange { --accent: #ea580c; }
.accent-red { --accent: #dc2626; }
.accent-amber { --accent: #d97706; }
.accent-green { --accent: #16a34a; }
.accent-blue { --accent: #2563eb; }
.accent-purple { --accent: #9333ea; }
.accent-cyan { --accent: #0891b2; }
.accent-pink { --accent: #db2777; }

.category-overview-card[class*="accent-"] {
    border-left: 6px solid var(--accent);
}

@media (max-width: 1100px) {
    .header-search {
        display: none;
    }

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

    .hero-content {
        grid-template-columns: 1fr 260px;
    }

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

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

    .menu-toggle {
        display: block;
    }

    .hero-slider,
    .hero-content {
        min-height: 720px;
    }

    .hero-content,
    .detail-hero-grid,
    .detail-content,
    .band-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .detail-poster {
        width: min(260px, 72vw);
        margin: 0 auto;
    }

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

    .ranking-row {
        grid-template-columns: 90px 1fr;
    }

    .ranking-score {
        grid-column: 1 / -1;
        text-align: left;
    }

    .section-heading,
    .category-overview-head {
        align-items: start;
        flex-direction: column;
    }
}

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

    .site-logo {
        font-size: 22px;
    }

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

    .hero-content {
        padding-top: 52px;
    }

    .hero-actions,
    .hero-search {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button,
    .ghost-button,
    .section-more,
    .hero-search button {
        width: 100%;
    }

    .stats-grid,
    .movie-grid,
    .category-grid,
    .category-samples {
        grid-template-columns: 1fr;
    }

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

    .page-hero,
    .detail-hero {
        padding: 48px 0;
    }

    .detail-article,
    .detail-side,
    .band-panel {
        padding: 22px;
    }
}
