:root {
    --accent: #f97316;
    --accent-dark: #ea580c;
    --red: #ef4444;
    --pink: #ec4899;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --green: #10b981;
    --purple: #8b5cf6;
    --ink: #111827;
    --text: #374151;
    --muted: #6b7280;
    --line: #e5e7eb;
    --paper: #ffffff;
    --soft: #f9fafb;
    --dark: #111827;
    --shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 10px 24px rgba(17, 24, 39, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #f3f4f6;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--red));
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.24);
}

.brand-text {
    font-size: 20px;
    background: linear-gradient(90deg, var(--accent-dark), var(--red));
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #4b5563;
    font-weight: 700;
    font-size: 15px;
}

.desktop-nav a,
.mobile-menu a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
    color: var(--accent-dark);
}

.nav-search {
    position: relative;
    width: 260px;
}

.nav-search input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 10px 44px 10px 16px;
    color: var(--ink);
    outline: none;
    background: #ffffff;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.nav-search button {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--red));
    transform: translateY(-50%);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--ink);
    background: #f3f4f6;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: currentColor;
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 10px 4px;
    color: #4b5563;
    font-weight: 700;
}

.mobile-menu .nav-search {
    width: 100%;
    margin: 10px 0;
}

.main {
    min-height: 70vh;
}

.section {
    padding: 58px 0;
}

.section-white {
    background: #ffffff;
}

.section-blue {
    background: linear-gradient(90deg, #eff6ff, #ecfeff);
}

.section-orange {
    color: #ffffff;
    background: linear-gradient(90deg, var(--accent), var(--red));
}

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

.hero-slider {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.75), transparent 34%),
        linear-gradient(135deg, #f97316, #ef4444 48%, #ec4899);
}

.hero-stage {
    position: relative;
    min-height: 590px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 42px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0 76px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-background {
    position: absolute;
    inset: -80px -12vw -90px;
    z-index: 0;
    opacity: 0.2;
    filter: blur(1px);
}

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

.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.25));
}

.hero-content,
.hero-cover-link {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    font-weight: 700;
    font-size: 14px;
}

.hero-title {
    margin: 0 0 16px;
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-desc {
    max-width: 740px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(17, 24, 39, 0.22);
    font-weight: 700;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.primary-btn,
.ghost-btn,
.light-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: var(--accent-dark);
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(17, 24, 39, 0.18);
}

.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.22);
}

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

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.light-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--red));
    box-shadow: 0 14px 28px rgba(239, 68, 68, 0.22);
}

.light-btn:hover {
    transform: translateY(-2px);
}

.hero-search {
    position: relative;
    width: min(520px, 100%);
}

.hero-search input {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 999px;
    padding: 0 132px 0 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 28px rgba(17, 24, 39, 0.16);
    outline: none;
}

.hero-search button {
    position: absolute;
    top: 7px;
    right: 7px;
    height: 40px;
    min-width: 108px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--red));
    font-weight: 800;
}

.hero-cover-link {
    display: block;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.34);
    transform: rotate(1.2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cover-link:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 34px 70px rgba(17, 24, 39, 0.42);
}

.hero-cover-link img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hero-cover-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.42);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

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

.hero-control,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-control {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 22px;
}

.hero-dot {
    width: 36px;
    height: 8px;
    border-radius: 999px;
    opacity: 0.62;
}

.hero-dot.is-active {
    opacity: 1;
    background: #ffffff;
}

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

.section-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-lead {
    max-width: 700px;
    margin: 10px 0 0;
    color: var(--muted);
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-dark);
    font-weight: 800;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    padding: 24px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--red));
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

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

.category-card:nth-child(4n) {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

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

.category-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -48px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111827;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.42s ease, opacity 0.42s ease;
}

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

.card-badge,
.rank-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.card-badge {
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.74);
}

.play-badge {
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    min-height: 50px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-desc {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #6b7280;
    font-size: 13px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    max-width: 52%;
    padding: 4px 8px;
    border-radius: 999px;
    overflow: hidden;
    color: var(--accent-dark);
    background: #fff7ed;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.list-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.list-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.list-card img {
    width: 100%;
    height: 100%;
    min-height: 148px;
    object-fit: cover;
}

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

.list-card h3 {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-card p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 78px 180px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--red));
    font-weight: 900;
    font-size: 18px;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

.rank-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.rank-info h2,
.rank-info h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.3;
}

.rank-info p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta {
    color: var(--accent-dark);
    font-weight: 900;
    white-space: nowrap;
}

.page-hero {
    color: #ffffff;
    background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.2), transparent 32%),
        linear-gradient(135deg, var(--accent), var(--red) 54%, var(--pink));
}

.page-hero .container {
    padding: 64px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
}

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

.page-title {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.page-desc {
    max-width: 820px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 0 14px;
    color: var(--ink);
    background: #ffffff;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.empty-state {
    display: none;
    padding: 46px 20px;
    border-radius: 20px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

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

.player-card,
.detail-card,
.side-card {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.player-card {
    overflow: hidden;
}

.video-shell {
    position: relative;
    overflow: hidden;
    background: #000000;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 100%;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: #000000;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2));
}

.player-play {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--red));
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.34);
    font-size: 28px;
}

.player-title {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    text-align: left;
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 900;
    line-height: 1.25;
}

.detail-card {
    margin-top: 22px;
    padding: 26px;
}

.detail-card h1 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

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

.detail-meta span,
.tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    color: #4b5563;
    background: #f3f4f6;
    font-weight: 700;
    font-size: 13px;
}

.detail-meta a {
    color: var(--accent-dark);
    background: #fff7ed;
}

.detail-section {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.detail-section + .detail-section {
    margin-top: 22px;
}

.detail-section h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 24px;
}

.detail-section p {
    margin: 0;
    color: #4b5563;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.side-card {
    position: sticky;
    top: 90px;
    padding: 20px;
}

.side-card h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 22px;
}

.related-list {
    display: grid;
    gap: 14px;
}

.related-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.related-thumb {
    overflow: hidden;
    border-radius: 12px;
    background: #111827;
}

.related-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.related-item:hover img {
    transform: scale(1.08);
}

.related-item h3 {
    display: -webkit-box;
    margin: 0 0 5px;
    overflow: hidden;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
    padding: 46px 0;
}

.site-footer .brand-text {
    color: #ffffff;
    background: none;
}

.footer-grid p {
    max-width: 520px;
    color: #9ca3af;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fb923c;
}

.copyright {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .desktop-nav,
    .nav-shell > .nav-search {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-cover-link {
        max-width: 620px;
        transform: none;
    }

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

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

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

    .side-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        height: 62px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero-stage {
        min-height: 680px;
    }

    .hero-slide {
        padding: 42px 0 92px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-search input {
        padding-right: 110px;
    }

    .hero-search button {
        min-width: 88px;
    }

    .section {
        padding: 42px 0;
    }

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

    .category-grid,
    .movie-grid,
    .movie-grid.compact,
    .list-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-row {
        grid-template-columns: 52px 100px minmax(0, 1fr);
    }

    .rank-number {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 15px;
    }

    .rank-meta {
        display: none;
    }

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

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

    .related-item {
        grid-template-columns: 100px minmax(0, 1fr);
    }
}

@media (max-width: 460px) {
    .hero-stage {
        min-height: 720px;
    }

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

    .primary-btn,
    .ghost-btn,
    .light-btn {
        width: 100%;
    }

    .hero-controls {
        bottom: 18px;
    }

    .card-body {
        padding: 14px;
    }

    .page-hero .container {
        padding: 46px 0;
    }
}
