:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --yellow-50: #fefce8;
    --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 12px 30px rgba(249, 115, 22, 0.12);
    --shadow-card: 0 10px 25px rgba(17, 24, 39, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.55), #ffffff 32%, rgba(255, 251, 235, 0.65));
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

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

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: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96), rgba(254, 252, 232, 0.96));
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 26px rgba(251, 146, 60, 0.16);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.brand-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
}

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

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

.nav-link {
    position: relative;
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-search,
.mobile-search,
.large-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search {
    flex: 0 1 310px;
    padding: 5px;
    border: 1px solid rgba(251, 146, 60, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.header-search input,
.mobile-search input,
.large-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--gray-800);
    background: transparent;
}

.header-search input {
    padding: 8px 10px 8px 14px;
}

.header-search button,
.mobile-search button,
.large-search button,
.filter-panel button,
.btn {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-search button,
.mobile-search button,
.large-search button,
.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
    box-shadow: 0 10px 18px rgba(249, 115, 22, 0.24);
}

.header-search button {
    padding: 8px 16px;
}

.header-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.28);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

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

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid rgba(251, 146, 60, 0.16);
}

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

.mobile-search {
    margin: 14px auto;
    max-width: 640px;
    padding: 8px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.mobile-search input {
    padding: 10px 12px;
}

.mobile-search button {
    padding: 10px 18px;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    max-width: 640px;
    margin: 0 auto;
}

.mobile-link {
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.72);
}

.mobile-link.active,
.mobile-link:hover {
    color: var(--orange-600);
    background: var(--orange-50);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 48px 0 62px;
    background: linear-gradient(135deg, var(--orange-100), var(--amber-50), var(--yellow-50));
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(72px);
    opacity: 0.34;
    pointer-events: none;
}

.glow-one {
    top: -80px;
    left: 5%;
    background: var(--orange-400);
}

.glow-two {
    right: 8%;
    bottom: -90px;
    background: var(--amber-400);
}

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

.hero-slider {
    position: relative;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 36px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

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

.hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.26);
    background: var(--gray-900);
    aspect-ratio: 21 / 9;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.62));
    content: "";
}

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

.hero-media:hover img {
    transform: scale(1.055);
}

.hero-play,
.play-bubble,
.player-play {
    display: grid;
    place-items: center;
    color: var(--orange-600);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
}

.hero-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    font-size: 30px;
    transform: translate(-50%, -50%);
}

.hero-copy {
    padding: 22px 0;
}

.hero-eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 13px;
    border-radius: 999px;
    color: var(--orange-600);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hero-copy h1 {
    margin: 0 0 18px;
    color: transparent;
    background: linear-gradient(90deg, var(--orange-600), var(--amber-500), var(--orange-500));
    background-clip: text;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 22px;
    color: var(--gray-700);
    font-size: 18px;
}

.hero-tags,
.detail-meta,
.card-kicker,
.card-meta,
.list-topline,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span,
.card-kicker span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span {
    padding: 7px 12px;
    color: var(--orange-700, #c2410c);
    background: rgba(255, 255, 255, 0.72);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
}

.btn-light {
    color: var(--orange-600);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.btn-ghost {
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.5);
}

.hero-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: var(--orange-600);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 30px;
    line-height: 1;
}

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

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

.hero-dot.is-active {
    width: 34px;
    opacity: 1;
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
}

.section-block {
    padding: 60px 0;
}

.section-block.compact {
    padding: 48px 0;
}

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

.section-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.section-heading p {
    max-width: 660px;
    margin: 8px 0 0;
    color: var(--gray-600);
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--orange-600);
    font-weight: 900;
    white-space: nowrap;
}

.category-grid,
.movie-grid,
.overview-grid,
.top-rank-grid,
.feature-grid {
    display: grid;
    gap: 22px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    border-radius: 22px;
    background: var(--gray-900);
    box-shadow: var(--shadow-card);
    isolation: isolate;
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.5s ease;
}

.category-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.8));
    content: "";
}

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

.category-card div {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    color: #ffffff;
}

.category-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 950;
}

.category-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.grid-card,
.list-card,
.overview-card,
.text-card,
.feature-card {
    overflow: hidden;
    border: 1px solid rgba(251, 146, 60, 0.12);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.grid-card:hover,
.list-card:hover,
.overview-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--orange-100), var(--amber-100));
}

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

.grid-card:hover .poster-wrap img,
.list-card:hover .poster-wrap img {
    transform: scale(1.08);
}

.poster-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.44));
    opacity: 0;
    content: "";
    transition: opacity 0.25s ease;
}

.grid-card:hover .poster-wrap::after,
.list-card:hover .poster-wrap::after {
    opacity: 1;
}

.poster-badge,
.poster-year {
    position: absolute;
    z-index: 3;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.poster-badge {
    top: 12px;
    left: 12px;
    background: var(--orange-500);
}

.poster-year {
    right: 12px;
    bottom: 12px;
    background: rgba(17, 24, 39, 0.72);
}

.play-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.grid-card:hover .play-bubble,
.list-card:hover .play-bubble {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-body {
    padding: 16px;
}

.card-kicker {
    margin-bottom: 10px;
}

.card-kicker span {
    padding: 4px 8px;
    color: var(--orange-600);
    background: var(--orange-50);
    font-size: 12px;
}

.grid-card h3,
.list-card h3 {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.grid-card p,
.list-card p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta,
.list-topline {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 750;
}

.card-meta {
    justify-content: space-between;
}

.wide-band {
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.95), rgba(255, 247, 237, 0.95));
}

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

.list-card-link {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
}

.list-poster {
    border-radius: 14px;
}

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

.rank-index {
    display: inline-grid;
    width: 28px;
    height: 28px;
    margin-right: 4px;
    place-items: center;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
    font-size: 13px;
    font-weight: 950;
}

.ranking-strip,
.ranking-list {
    display: grid;
    gap: 16px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
    background: linear-gradient(135deg, var(--orange-100), var(--amber-50), var(--yellow-50));
}

.page-hero::before,
.detail-hero::before {
    position: absolute;
    top: -120px;
    right: 8%;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: rgba(251, 146, 60, 0.22);
    filter: blur(70px);
    content: "";
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.breadcrumb,
.breadcrumb-line {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--orange-600);
    font-size: 14px;
    font-weight: 900;
}

.page-hero h1,
.detail-info h1 {
    margin: 0 0 15px;
    color: var(--gray-900);
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.page-hero p,
.detail-one-line {
    max-width: 760px;
    margin: 0;
    color: var(--gray-700);
    font-size: 18px;
}

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

.overview-card a {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    min-height: 210px;
}

.overview-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    padding: 8px;
    background: var(--orange-50);
}

.overview-thumbs img {
    width: 100%;
    height: 100%;
    min-height: 94px;
    border-radius: 12px;
    object-fit: cover;
}

.overview-body {
    padding: 26px;
}

.overview-body h2,
.text-card h2,
.feature-card h3 {
    margin: 0 0 10px;
    color: var(--gray-900);
    font-weight: 950;
}

.overview-body h2 {
    font-size: 26px;
}

.overview-body p,
.text-card p,
.feature-card p {
    margin: 0;
    color: var(--gray-600);
}

.filter-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

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

.filter-panel select {
    width: 100%;
    border: 1px solid var(--orange-200);
    border-radius: 14px;
    padding: 12px;
    outline: 0;
    color: var(--gray-700);
    background: #ffffff;
}

.filter-panel button {
    align-self: end;
    padding: 13px 18px;
    color: #ffffff;
    background: var(--gray-800);
}

.large-search {
    max-width: 760px;
    margin-top: 28px;
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.large-search input {
    padding: 14px 18px;
}

.large-search button {
    padding: 12px 24px;
}

.search-summary {
    margin-bottom: 18px;
    color: var(--gray-600);
    font-weight: 900;
}

.detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    background: var(--gray-900);
    box-shadow: 0 24px 58px rgba(17, 24, 39, 0.24);
    aspect-ratio: 16 / 10;
}

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

.detail-meta {
    margin: 20px 0 14px;
}

.tag-cloud span {
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.mini-actions {
    margin-top: 24px;
}

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

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    gap: 14px;
    place-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.76));
    text-align: center;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play {
    width: 86px;
    height: 86px;
    margin: 0 auto;
    border-radius: 999px;
    font-size: 34px;
}

.player-overlay strong {
    max-width: min(720px, 86vw);
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 950;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.detail-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 22px;
}

.text-card {
    padding: 28px;
}

.text-card h2 {
    font-size: 24px;
}

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

.top-rank-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: 28px;
    color: #ffffff;
    background: var(--gray-900);
    box-shadow: var(--shadow-card);
}

.top-rank-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.5s ease;
}

.top-rank-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.82));
    content: "";
}

.top-rank-card:hover img {
    transform: scale(1.06);
}

.top-rank-card div {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
}

.top-rank-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--orange-600);
    background: #ffffff;
    font-weight: 950;
}

.top-rank-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 950;
}

.top-rank-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.about-content {
    display: grid;
    gap: 24px;
}

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

.feature-card {
    padding: 24px;
}

.feature-card span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
    font-weight: 950;
}

.feature-card h3 {
    font-size: 21px;
}

.site-footer {
    margin-top: 44px;
    color: var(--gray-600);
    background: linear-gradient(180deg, #ffffff, var(--orange-50));
    border-top: 1px solid rgba(251, 146, 60, 0.16);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    padding: 38px 0 26px;
}

.footer-brand {
    margin-bottom: 10px;
    color: var(--gray-900);
    font-size: 22px;
}

.footer-grid p {
    max-width: 640px;
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 10px;
    justify-items: end;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--orange-600);
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(251, 146, 60, 0.14);
    text-align: center;
    font-size: 14px;
}

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

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

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

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

    .menu-toggle {
        display: block;
    }

    .hero-slider {
        min-height: auto;
    }

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

    .hero-media {
        aspect-ratio: 16 / 10;
    }

    .list-grid,
    .overview-grid,
    .detail-text,
    .top-rank-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

    .hero-section {
        padding: 32px 0 44px;
    }

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

    .hero-copy p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-actions,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .category-card {
        min-height: 150px;
    }

    .card-body {
        padding: 13px;
    }

    .grid-card h3,
    .list-card h3 {
        font-size: 16px;
    }

    .grid-card p,
    .list-card p {
        min-height: 40px;
        font-size: 13px;
    }

    .list-card-link {
        grid-template-columns: 128px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .list-content .card-meta {
        display: none;
    }

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

    .large-search {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .large-search button {
        width: 100%;
    }

    .player-shell {
        border-radius: 18px;
    }

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

    .footer-links {
        justify-items: start;
    }
}

@media (max-width: 460px) {
    .category-grid,
    .movie-grid {
        grid-template-columns: 1fr;
    }

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

    .list-poster {
        aspect-ratio: 16 / 9;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }
}
