:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --pink: #ec4899;
    --yellow: #f59e0b;
    --red: #ef4444;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: rgba(249, 115, 22, 0.16);
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 18px 48px rgba(249, 115, 22, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 34rem),
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.14), transparent 32rem),
        linear-gradient(135deg, #fff7ed 0%, #fdf2f8 48%, #fefce8 100%);
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(249, 115, 22, 0.12);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.12);
    backdrop-filter: blur(14px);
}

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

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    background: linear-gradient(135deg, #fb923c, #ec4899);
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.28);
    transition: transform 0.25s ease;
}

.logo:hover .logo-mark {
    transform: scale(1.08) rotate(-6deg);
}

.logo-title {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #f97316, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    color: transparent;
}

.logo-subtitle {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
}

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

.nav-link,
.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 14px;
    padding: 10px 14px;
    color: #4b5563;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-button:hover,
.nav-link.active {
    color: var(--orange-dark);
    background: #ffedd5;
    transform: translateY(-1px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 190px;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(249, 115, 22, 0.14);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
    color: #374151;
}

.dropdown-menu a:hover {
    color: var(--orange-dark);
    background: #fff7ed;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(249, 115, 22, 0.16);
    background: #fff;
    color: #f97316;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 0 16px 16px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(249, 115, 22, 0.12);
}

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

.mobile-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: #374151;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: #ffedd5;
    color: var(--orange-dark);
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    background: #111827;
}

.hero-track {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.82) 0%, rgba(17, 24, 39, 0.58) 48%, rgba(17, 24, 39, 0.25) 100%),
        radial-gradient(circle at 26% 18%, rgba(249, 115, 22, 0.28), transparent 28rem),
        radial-gradient(circle at 78% 64%, rgba(236, 72, 153, 0.26), transparent 30rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 96px 0 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
    gap: 36px;
    align-items: end;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #fdba74;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    font-weight: 800;
}

.hero h1,
.hero h2 {
    margin: 0;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 950;
    text-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.hero-desc {
    margin: 24px 0 0;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.78;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(90deg, #f97316, #ec4899);
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.28);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 42px rgba(236, 72, 153, 0.34);
    filter: saturate(1.08);
}

.btn.secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.hero-side {
    position: relative;
    border-radius: 28px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.hero-side h3 {
    margin: 0 0 14px;
    font-size: 20px;
}

.hero-side .side-movie strong {
    color: #fff;
}

.hero-side .side-movie span span {
    color: rgba(255, 255, 255, 0.72);
}

.hero-side .side-movie:hover {
    background: rgba(255, 255, 255, 0.18);
}

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

.hero-side-link {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 9px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-side-link:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateX(4px);
}

.hero-side-link img {
    width: 58px;
    height: 42px;
    object-fit: cover;
    border-radius: 14px;
}

.hero-side-link strong {
    display: block;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-side-link span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    margin-top: 3px;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
}

.hero-dot.active {
    width: 36px;
    background: linear-gradient(90deg, #fb923c, #ec4899);
    border-color: transparent;
}

.hero-search {
    margin-top: 26px;
    display: flex;
    max-width: 560px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 0 16px;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.hero-search button {
    border: 0;
    white-space: nowrap;
}

.section {
    padding: 68px 0;
}

.section.tight {
    padding: 42px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.48);
    border-top: 1px solid rgba(249, 115, 22, 0.08);
    border-bottom: 1px solid rgba(249, 115, 22, 0.08);
}

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

.section-kicker {
    color: var(--orange-dark);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
}

.section-title {
    margin: 6px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(90deg, #f97316, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    color: transparent;
}

.section-desc {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 720px;
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid rgba(249, 115, 22, 0.12);
    box-shadow: 0 14px 34px rgba(249, 115, 22, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(236, 72, 153, 0.18);
    border-color: rgba(236, 72, 153, 0.28);
}

.movie-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.18));
}

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

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

.movie-hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: rgba(17, 24, 39, 0.42);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.poster-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #ec4899);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.movie-body {
    padding: 18px;
}

.movie-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card:hover .movie-title {
    color: var(--orange-dark);
}

.movie-intro {
    margin: 10px 0 0;
    color: #6b7280;
    line-height: 1.65;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.meta-left,
.meta-right {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

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

.category-card {
    position: relative;
    min-height: 168px;
    overflow: hidden;
    border-radius: 26px;
    padding: 22px;
    color: #fff;
    box-shadow: 0 22px 42px rgba(249, 115, 22, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(236, 72, 153, 0.22);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--from, #f97316), var(--to, #ec4899));
}

.category-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -54px;
    bottom: -54px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.22);
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 16px;
}

.category-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 950;
}

.category-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
    font-size: 14px;
}

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

.list-card {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 18px;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(249, 115, 22, 0.12);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.15);
}

.list-thumb {
    position: relative;
    height: 136px;
    overflow: hidden;
}

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

.list-body {
    padding: 16px 0;
}

.list-title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}

.list-intro {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.list-action {
    padding-right: 18px;
}

.page-hero {
    padding: 76px 0 40px;
}

.page-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: clamp(28px, 5vw, 54px);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.94), rgba(236, 72, 153, 0.9), rgba(245, 158, 11, 0.88));
    color: #fff;
    box-shadow: 0 26px 80px rgba(236, 72, 153, 0.28);
}

.page-hero-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    top: -130px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.page-hero-card h1 {
    position: relative;
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.page-hero-card p {
    position: relative;
    margin: 18px 0 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.78;
}

.search-panel {
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(249, 115, 22, 0.12);
    box-shadow: 0 14px 34px rgba(249, 115, 22, 0.09);
}

.search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.search-input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    background: #fff;
    outline: none;
    padding: 13px 16px;
    color: #111827;
}

.search-input:focus {
    border-color: rgba(236, 72, 153, 0.46);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.08);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.filter-button {
    border: 1px solid rgba(249, 115, 22, 0.16);
    background: #fff7ed;
    color: #9a3412;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
    color: #fff;
    background: linear-gradient(90deg, #f97316, #ec4899);
    border-color: transparent;
}

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

.player-card,
.detail-card,
.side-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.12);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.player-wrap {
    position: relative;
    background: #111827;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.player-wrap video {
    width: 100%;
    height: 100%;
    background: #111827;
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.6)),
        radial-gradient(circle at center, rgba(249, 115, 22, 0.18), transparent 28rem);
    cursor: pointer;
}

.play-layer.hidden {
    display: none;
}

.play-button {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ec4899);
    box-shadow: 0 18px 44px rgba(236, 72, 153, 0.4);
    cursor: pointer;
    font-size: 34px;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.08);
}

.detail-content {
    padding: 28px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #9a3412;
    font-size: 14px;
}

.detail-title {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-lead {
    margin: 18px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.85;
}

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

.info-box {
    border-radius: 18px;
    background: #fff7ed;
    padding: 12px;
    border: 1px solid rgba(249, 115, 22, 0.14);
}

.info-box span {
    display: block;
    color: #9a3412;
    font-size: 12px;
    font-weight: 800;
}

.info-box strong {
    display: block;
    margin-top: 4px;
    color: #111827;
    font-size: 15px;
}

.article-block {
    margin-top: 28px;
}

.article-block h2 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 950;
}

.article-block p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 11px;
    background: #fff1f2;
    color: #be123c;
    font-size: 13px;
    font-weight: 700;
}

.side-card {
    padding: 18px;
}

.side-card h2,
.side-card h3 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 950;
}

.side-movie {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.side-movie img {
    width: 82px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
}

.side-movie strong {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    color: #111827;
}

.side-movie span {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 12px;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 58px 150px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.12);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.14);
}

.rank-no {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 950;
    background: linear-gradient(135deg, #f97316, #ec4899);
}

.rank-thumb {
    height: 92px;
    border-radius: 18px;
    overflow: hidden;
}

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

.rank-title {
    margin: 0;
    font-size: 20px;
    font-weight: 950;
}

.rank-desc {
    margin: 8px 0 0;
    color: #6b7280;
    line-height: 1.6;
}

.rank-score {
    text-align: right;
    color: #9a3412;
    font-weight: 900;
}

.site-footer {
    margin-top: 70px;
    color: #fff;
    background: linear-gradient(90deg, #ea580c, #db2777, #d97706);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 48px 0;
}

.footer-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 950;
}

.footer-text,
.footer-list a {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.footer-list {
    display: grid;
    gap: 8px;
}

.footer-list a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.empty-note {
    display: none;
    padding: 30px;
    border-radius: 24px;
    color: #9a3412;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.14);
}

.empty-note.show {
    display: block;
}

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

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

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

    .hero-side {
        max-width: 620px;
    }

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

    .list-card,
    .rank-card {
        grid-template-columns: 120px 1fr;
    }

    .list-action,
    .rank-score,
    .rank-no {
        display: none;
    }

    .list-thumb,
    .rank-thumb {
        height: 96px;
    }

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

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

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

    .header-inner {
        min-height: 66px;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-subtitle {
        display: none;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 72px;
        padding-bottom: 78px;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-search input {
        min-height: 42px;
    }

    .section-head {
        display: block;
    }

    .movie-grid,
    .category-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .detail-content {
        padding: 20px;
    }

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

    .rank-card {
        grid-template-columns: 96px 1fr;
    }

    .rank-thumb {
        height: 76px;
    }
}
