:root {
    --bg: #fff8f0;
    --paper: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #fff7ed;
    --line: #fed7aa;
    --amber: #f59e0b;
    --orange: #ea580c;
    --orange-dark: #9a3412;
    --red: #dc2626;
    --shadow: 0 24px 60px rgba(154, 52, 18, 0.16);
    --shadow-soft: 0 16px 38px rgba(154, 52, 18, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 45%, #fff7ed 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(251, 146, 60, 0.22);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(154, 52, 18, 0.08);
}

.header-inner {
    width: min(1220px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.28);
}

.brand-name {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #b45309, var(--orange));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #374151;
    font-weight: 700;
}

.desktop-nav > a,
.nav-dropdown > button {
    position: relative;
    border: 0;
    padding: 10px 0;
    color: #374151;
    background: transparent;
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown:hover > button {
    color: var(--orange);
}

.desktop-nav > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    left: -18px;
    top: 42px;
    width: 210px;
    padding: 10px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(251, 146, 60, 0.22);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #4b5563;
}

.dropdown-panel a:hover {
    color: var(--orange);
    background: var(--soft);
}

.header-search {
    margin-left: auto;
    width: min(310px, 28vw);
    display: flex;
    align-items: center;
    border: 1px solid rgba(251, 146, 60, 0.34);
    border-radius: 999px;
    background: #fffaf2;
    overflow: hidden;
}

.header-search input,
.mobile-search input,
.quick-search input,
.large-search input,
.filter-actions input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

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

.header-search button,
.mobile-search button,
.quick-search button,
.large-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 800;
    white-space: nowrap;
}

.header-search button {
    align-self: stretch;
    padding: 0 18px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: var(--orange-dark);
    background: var(--soft);
    font-size: 22px;
}

.mobile-panel {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel a {
    display: block;
    padding: 13px 2px;
    border-top: 1px solid #ffedd5;
    color: #374151;
    font-weight: 700;
}

.mobile-search {
    display: flex;
    margin-top: 12px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    overflow: hidden;
}

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

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

.hero-shell {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: linear-gradient(115deg, #fffbeb, #fed7aa 48%, #fee2e2);
}

.hero-track,
.hero-slide {
    min-height: 640px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.55s ease, transform 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-backdrop {
    position: absolute;
    inset: -24px;
    background-position: center;
    background-size: cover;
    filter: blur(7px) saturate(1.15);
    opacity: 0.28;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 22%, rgba(251, 146, 60, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(255, 251, 235, 0.98) 0%, rgba(255, 247, 237, 0.88) 48%, rgba(255, 237, 213, 0.58) 100%);
}

.hero-content {
    position: relative;
    width: min(1220px, calc(100% - 32px));
    min-height: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 68px;
    align-items: center;
    padding: 70px 0 88px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(251, 146, 60, 0.35);
    border-radius: 999px;
    color: #9a3412;
    background: rgba(255, 247, 237, 0.84);
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hero-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-copy p {
    max-width: 670px;
    margin: 0 0 26px;
    color: #4b5563;
    font-size: 20px;
    line-height: 1.82;
}

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

.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #c2410c;
    background: #ffedd5;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    padding: 8px 12px;
}

.tag-list span {
    padding: 6px 10px;
}

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

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

.primary-btn,
.secondary-btn,
.section-more,
.rank-play,
.category-overview-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.24s ease;
}

.primary-btn {
    min-height: 50px;
    padding: 0 26px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 16px 32px rgba(234, 88, 12, 0.28);
}

.secondary-btn,
.section-more,
.category-overview-head a {
    min-height: 50px;
    padding: 0 24px;
    color: var(--orange);
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.34);
    box-shadow: 0 12px 26px rgba(154, 52, 18, 0.08);
}

.primary-btn:hover,
.secondary-btn:hover,
.section-more:hover,
.rank-play:hover,
.category-overview-head a:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(234, 88, 12, 0.24);
}

.hero-poster {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 9px solid rgba(255, 255, 255, 0.82);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

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

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

.hero-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(234, 88, 12, 0.9);
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    font-size: 28px;
}

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

.hero-nav,
.hero-dot {
    border: 0;
    color: #9a3412;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 26px rgba(154, 52, 18, 0.12);
}

.hero-nav {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
}

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

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

.hero-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.quick-search-panel,
.content-section,
.ranking-strip,
.detail-content,
.overview-layout,
.filter-bar,
.rank-page-list {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-search-panel {
    position: relative;
    z-index: 6;
    margin-top: -44px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(251, 146, 60, 0.28);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.quick-search-panel h2,
.section-heading h2,
.category-overview-card h2,
.related-column h2,
.story-card h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.quick-search-panel h2 {
    font-size: 30px;
}

.quick-search-panel p,
.section-heading p,
.category-tile p,
.category-overview-card p,
.story-card p,
.detail-one-line,
.rank-info p {
    color: var(--muted);
    line-height: 1.76;
}

.quick-search-panel p {
    margin: 8px 0 0;
}

.quick-search,
.large-search {
    display: flex;
    border: 1px solid rgba(251, 146, 60, 0.34);
    border-radius: 999px;
    background: #fff7ed;
    overflow: hidden;
}

.quick-search input,
.large-search input {
    padding: 16px 20px;
}

.quick-search button,
.large-search button {
    padding: 0 24px;
}

.content-section,
.ranking-strip {
    padding: 72px 0 0;
}

.content-section.flush-top {
    padding-top: 26px;
}

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

.section-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.section-heading p {
    margin: 8px 0 0;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(251, 146, 60, 0.18);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.08);
    transition: 0.28s ease;
}

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

.poster-link {
    position: relative;
    height: 290px;
    display: block;
    overflow: hidden;
    background: #ffedd5;
}

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

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

.poster-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(234, 88, 12, 0.9);
    font-size: 12px;
    font-weight: 900;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.55);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: 0.24s ease;
}

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

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

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: #c2410c;
    font-size: 13px;
    font-weight: 800;
}

.meta-line span + span::before {
    content: "·";
    margin-right: 8px;
    color: #fdba74;
}

.movie-card h3 {
    margin: 0 0 9px;
    font-size: 20px;
    line-height: 1.25;
}

.movie-card h3 a:hover,
.rank-info h2 a:hover,
.compact-card h3:hover {
    color: var(--orange);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ranking-strip {
    padding-bottom: 12px;
}

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

.compact-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(251, 146, 60, 0.18);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(154, 52, 18, 0.07);
    transition: 0.22s ease;
}

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

.compact-poster {
    position: relative;
    overflow: hidden;
    height: 104px;
    border-radius: 14px;
    background: #ffedd5;
}

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

.rank-number,
.rank-cover span {
    position: absolute;
    left: 8px;
    top: 8px;
    min-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 900;
}

.compact-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.compact-card p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.55;
}

.compact-card span {
    color: #c2410c;
    font-size: 13px;
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #fff7ed);
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.08);
    transition: 0.24s ease;
}

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

.tile-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.tile-images img {
    height: 96px;
    width: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.category-tile h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.category-tile p {
    margin: 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.28), transparent 32%),
        linear-gradient(115deg, #fff7ed, #ffedd5 52%, #fee2e2);
}

.page-hero > div {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.82;
}

.small-hero {
    min-height: 300px;
}

.search-hero {
    min-height: 420px;
}

.large-search {
    max-width: 650px;
    margin-top: 28px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: #7c2d12;
    font-weight: 800;
}

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

.breadcrumb.light {
    color: #fed7aa;
}

.breadcrumb.light strong {
    color: #ffffff;
}

.overview-layout {
    padding: 56px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.category-overview-card {
    padding: 24px;
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.08);
}

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

.category-overview-card p {
    margin: 8px 0 0;
}

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

.filter-bar {
    margin-top: 34px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(251, 146, 60, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.07);
}

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

.filter-chip {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    color: #9a3412;
    background: #ffffff;
    font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.filter-actions {
    display: flex;
    gap: 12px;
    min-width: 360px;
}

.filter-actions.wide {
    width: 100%;
}

.filter-actions input,
.filter-actions select {
    min-height: 44px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #fff7ed;
    padding: 0 16px;
}

.filter-actions select {
    outline: 0;
    color: #7c2d12;
    font-weight: 800;
}

.empty-state {
    margin: 28px 0;
    padding: 44px;
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.08);
}

.rank-page-list {
    padding: 28px 0 0;
    display: grid;
    gap: 18px;
}

.rank-row {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) 108px;
    gap: 22px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.08);
}

.rank-cover {
    position: relative;
    overflow: hidden;
    height: 120px;
    border-radius: 16px;
}

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

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.rank-info p {
    margin: 0 0 12px;
}

.rank-play {
    min-height: 46px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.detail-top {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: -28px;
    background-position: center;
    background-size: cover;
    filter: blur(10px) saturate(1.1);
    opacity: 0.42;
}

.detail-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 20%, rgba(234, 88, 12, 0.32), transparent 30%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.38));
}

.detail-inner {
    position: relative;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0 74px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

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

.detail-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 780px;
    margin: 0 0 24px;
    color: #ffedd5;
    font-size: 21px;
}

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

.player-column,
.related-column {
    display: grid;
    gap: 22px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 16px;
    align-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.28), rgba(17, 24, 39, 0.78));
    font-size: 20px;
    font-weight: 900;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    font-size: 32px;
}

.story-card,
.related-column {
    padding: 26px;
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(154, 52, 18, 0.08);
}

.story-card h2,
.related-column h2 {
    margin-bottom: 14px;
    font-size: 26px;
}

.story-card p {
    margin: 0;
    font-size: 17px;
}

.site-footer {
    margin-top: 82px;
    color: #ffedd5;
    background: linear-gradient(180deg, #78350f, #431407);
}

.footer-inner {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: #fff7ed;
}

.site-footer p {
    margin: 0;
    color: #fed7aa;
    line-height: 1.75;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(254, 215, 170, 0.18);
    padding: 18px 16px;
    color: #fed7aa;
    text-align: center;
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

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

    .hero-content,
    .detail-layout,
    .detail-content,
    .quick-search-panel,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

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

    .filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-actions {
        width: 100%;
        min-width: 0;
    }

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

    .rank-play {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .header-inner {
        height: 64px;
    }

    .brand-name {
        font-size: 22px;
    }

    .hero-shell,
    .hero-track,
    .hero-slide {
        min-height: 560px;
    }

    .hero-content {
        min-height: 560px;
        padding: 48px 0 76px;
    }

    .hero-copy h1,
    .detail-copy h1 {
        font-size: 42px;
    }

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

    .quick-search-panel {
        padding: 22px;
    }

    .quick-search,
    .large-search,
    .filter-actions {
        flex-direction: column;
        border-radius: 20px;
        overflow: visible;
        background: transparent;
        border: 0;
    }

    .quick-search input,
    .large-search input,
    .filter-actions input,
    .filter-actions select {
        min-height: 48px;
        border: 1px solid #fed7aa;
        border-radius: 999px;
        background: #ffffff;
    }

    .quick-search button,
    .large-search button {
        min-height: 48px;
        border-radius: 999px;
    }

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

    .movie-grid,
    .category-grid,
    .overview-layout,
    .ranking-grid {
        grid-template-columns: 1fr;
    }

    .poster-link {
        height: 330px;
    }

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

    .detail-poster img {
        height: 390px;
    }

    .detail-top {
        min-height: auto;
    }

    .detail-content {
        padding-top: 26px;
    }

    .rank-row {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 14px;
    }

    .rank-cover {
        height: 100px;
    }

    .rank-info h2 {
        font-size: 20px;
    }
}
