:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(148, 163, 184, 0.18);
    --muted: #94a3b8;
    --text: #e2e8f0;
    --white: #ffffff;
    --amber: #f59e0b;
    --amber-soft: rgba(245, 158, 11, 0.16);
    --purple: #7c3aed;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 12px;
}

* {
    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;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 34rem),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.97));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.25);
}

.nav-shell {
    max-width: 1240px;
    height: 68px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark,
.footer-brand span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 26px rgba(245, 158, 11, 0.34);
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.brand-text em {
    font-style: normal;
    font-size: 12px;
    color: var(--muted);
}

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

.nav-link {
    padding: 10px 16px;
    color: #cbd5e1;
    border-radius: 12px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
    background: rgba(51, 65, 85, 0.72);
    transform: translateY(-1px);
}

.mobile-toggle {
    width: 42px;
    height: 42px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.82);
    color: var(--white);
    cursor: pointer;
}

.mobile-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    padding: 10px 22px 18px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.96);
}

.mobile-panel.is-open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.54);
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

.hero-track {
    height: 100%;
    display: flex;
    transform: translateX(0);
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.86) 0%, rgba(2, 6, 23, 0.62) 40%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.62) 34%, transparent 72%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 76px;
    width: min(1240px, calc(100% - 44px));
    transform: translateX(-50%);
}

.hero-kicker,
.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-kicker span,
.detail-meta span {
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.14);
    color: #e2e8f0;
    backdrop-filter: blur(12px);
}

.hero-kicker span:first-child {
    color: #111827;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: transparent;
}

.hero h1 {
    width: min(780px, 100%);
    margin: 20px 0 14px;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: var(--white);
    text-shadow: 0 16px 45px rgba(0, 0, 0, 0.48);
}

.hero p {
    width: min(720px, 100%);
    margin: 0 0 22px;
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.75;
    color: #e2e8f0;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
}

.hero-meta span {
    color: #cbd5e1;
}

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

.primary-btn,
.ghost-btn,
.text-link,
.search-box button,
.quick-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn,
.quick-search button {
    color: #111827;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.23);
}

.ghost-btn,
.search-box button,
.text-link {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.14);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover,
.search-box button:hover,
.quick-search button:hover {
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(226, 232, 240, 0.16);
    border-radius: 999px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 36px;
    line-height: 1;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    right: max(24px, calc((100vw - 1240px) / 2));
    bottom: 42px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 36px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(148, 163, 184, 0.55);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots button.is-active {
    width: 58px;
    background: var(--amber);
}

.quick-search,
.content-section,
.page-shell,
.detail-shell {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
}

.quick-search {
    position: relative;
    z-index: 5;
    margin-top: -36px;
}

.quick-search form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.quick-search input,
.search-box input,
.select-row select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    outline: none;
    color: var(--white);
    background: rgba(2, 6, 23, 0.58);
}

.quick-search input:focus,
.search-box input:focus,
.select-row select:focus {
    border-color: rgba(245, 158, 11, 0.52);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

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

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

.section-heading h2,
.page-hero h1,
.detail-intro h1,
.player-section h2,
.story-card h2 {
    margin: 0;
    color: var(--white);
    letter-spacing: -0.04em;
}

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

.section-heading p,
.page-hero p,
.category-overview-card p,
.movie-info p,
.ranking-card p,
.story-card p,
.footer-grid p,
.lead-text {
    color: var(--muted);
    line-height: 1.75;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--amber);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.section-more {
    color: var(--amber);
    white-space: nowrap;
}

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

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.74), rgba(15, 23, 42, 0.86));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.34);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.22), transparent 48%),
        linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(51, 65, 85, 0.82));
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.34s ease, opacity 0.3s ease;
}

.movie-card:hover .poster-frame img,
.category-overview-card:hover img,
.ranking-poster:hover img,
.detail-poster:hover img {
    transform: scale(1.07);
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent);
}

.year-badge,
.type-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(2, 6, 23, 0.76);
    border: 1px solid rgba(226, 232, 240, 0.12);
    backdrop-filter: blur(10px);
}

.year-badge {
    left: 12px;
}

.type-badge {
    right: 12px;
    color: var(--amber);
}

.movie-info {
    padding: 16px;
}

.movie-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.35;
}

.movie-title:hover,
.ranking-card h2 a:hover,
.inline-links a:hover,
.mini-links a:hover {
    color: var(--amber);
}

.movie-info p {
    display: -webkit-box;
    min-height: 48px;
    margin: 10px 0 12px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #cbd5e1;
}

.meta-line span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #64748b;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: #fcd34d;
    font-size: 12px;
    background: var(--amber-soft);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.tag-link {
    color: #c4b5fd;
    background: rgba(124, 58, 237, 0.14);
    border-color: rgba(167, 139, 250, 0.22);
}

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

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}

.category-card {
    min-height: 150px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 42%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.88));
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.34);
}

.category-card span {
    color: var(--amber);
    font-weight: 800;
}

.category-card strong {
    color: var(--white);
    line-height: 1.55;
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(18px);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.52);
    transition: background 0.22s ease, transform 0.22s ease;
}

.rank-row:hover {
    background: rgba(51, 65, 85, 0.72);
    transform: translateX(4px);
}

.rank-row img {
    width: 54px;
    height: 72px;
    grid-row: span 2;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.82);
}

.rank-no {
    grid-row: span 2;
    color: var(--amber);
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    color: var(--white);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row small {
    color: var(--muted);
}

.page-shell,
.detail-shell {
    padding: 36px 0 80px;
}

.page-hero {
    margin-bottom: 28px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 46%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.84), rgba(15, 23, 42, 0.94));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
}

.page-hero p {
    width: min(760px, 100%);
    margin: 16px 0 0;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--muted);
}

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

.filter-panel {
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.82);
}

.search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.select-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.empty-state {
    display: none;
    margin: 16px 0 0;
    color: var(--muted);
}

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

.category-overview-grid {
    display: grid;
    gap: 20px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.8);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-overview-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.28);
}

.category-cover {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.82);
}

.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.34s ease;
}

.category-overview-card h2 {
    margin: 6px 0 10px;
    color: var(--white);
}

.mini-links,
.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}

.mini-links a,
.inline-links a {
    color: #cbd5e1;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.76);
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
}

.ranking-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 18px;
    background: rgba(30, 41, 59, 0.82);
}

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

.ranking-poster span {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #111827;
    background: var(--amber);
    font-weight: 900;
}

.ranking-card h2 {
    margin: 4px 0 10px;
    color: var(--white);
}

.detail-top {
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 36px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 44%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.84), rgba(15, 23, 42, 0.94));
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(2, 6, 23, 0.72);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.36s ease;
}

.detail-intro h1 {
    margin-top: 18px;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1;
}

.lead-text {
    width: min(820px, 100%);
    margin: 18px 0;
    font-size: 18px;
}

.detail-actions {
    margin-top: 22px;
}

.player-section {
    margin-bottom: 32px;
}

.player-section h2 {
    margin-bottom: 16px;
    font-size: clamp(24px, 4vw, 36px);
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.16), transparent 26%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.36));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-circle {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 42px rgba(245, 158, 11, 0.36);
    font-size: 28px;
}

.player-cover strong {
    font-size: clamp(20px, 4vw, 34px);
}

.player-cover em {
    font-style: normal;
    color: #cbd5e1;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.story-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.8);
}

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

.related-section {
    width: 100%;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), #020617);
}

.footer-grid {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 46px 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.72);
}

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

.copyright {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1040px) {
    .split-layout,
    .footer-grid,
    .detail-top {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: relative;
        top: auto;
    }

    .detail-poster {
        width: min(360px, 100%);
    }
}

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

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

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text em {
        display: none;
    }

    .hero {
        height: 76vh;
        min-height: 620px;
    }

    .hero-content {
        bottom: 92px;
    }

    .hero h1 {
        font-size: clamp(34px, 12vw, 54px);
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        left: 22px;
        right: auto;
    }

    .quick-search form,
    .search-box,
    .select-row,
    .category-overview-card,
    .ranking-card {
        grid-template-columns: 1fr;
    }

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

    .content-section {
        padding-top: 50px;
    }

    .page-hero,
    .detail-top,
    .story-card {
        padding: 22px;
        border-radius: 22px;
    }

    .category-cover {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 460px) {
    .nav-shell,
    .quick-search,
    .content-section,
    .page-shell,
    .detail-shell,
    .footer-grid,
    .copyright {
        width: calc(100% - 28px);
    }

    .nav-shell {
        padding: 0;
    }

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

    .hero-kicker span:nth-child(n + 3),
    .hero-meta span:nth-child(n + 3) {
        display: none;
    }
}
