:root {
    --deepblue-950: #00111a;
    --deepblue-900: #00151f;
    --deepblue-800: #002b3d;
    --ocean-900: #005b69;
    --ocean-800: #006f7f;
    --ocean-700: #00879c;
    --ocean-600: #00a9c3;
    --ocean-100: #cceef3;
    --ocean-50: #e6f7f9;
    --seagreen-700: #13835f;
    --seagreen-600: #1aa179;
    --seagreen-100: #d1ebe3;
    --seagreen-50: #eaf7f3;
    --coral-600: #cc543c;
    --coral-500: #ff694b;
    --coral-400: #ff876f;
    --text: #082434;
    --muted: #5c7c88;
    --card: #ffffff;
    --shadow: 0 10px 25px -3px rgba(0, 169, 195, 0.2);
    --soft-shadow: 0 4px 14px rgba(0, 169, 195, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, #f0fbfd 0%, #f7fffb 45%, #eaf7f3 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--deepblue-800), var(--ocean-700), var(--seagreen-700));
    box-shadow: 0 10px 28px rgba(0, 21, 31, 0.22);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 76px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.brand {
    font-size: clamp(20px, 2vw, 28px);
    margin-right: auto;
}

.brand-mark,
.footer-brand span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: var(--coral-400);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

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

.desktop-nav a,
.mobile-panel a {
    color: #f1feff;
    padding: 10px 14px;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

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

.top-search input,
.mobile-search input,
.wide-search input,
.filter-bar input {
    border: 1px solid rgba(0, 169, 195, 0.24);
    border-radius: 14px;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.top-search input,
.mobile-search input {
    width: min(260px, 28vw);
    padding: 10px 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.top-search input::placeholder,
.mobile-search input::placeholder {
    color: #cceef3;
}

.top-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.filter-bar input:focus {
    border-color: var(--coral-400);
    box-shadow: 0 0 0 3px rgba(255, 105, 75, 0.22);
}

.top-search button,
.mobile-search button,
.wide-search button {
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--coral-500);
    padding: 10px 16px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.top-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.primary-btn:hover {
    background: var(--coral-600);
    transform: translateY(-1px) scale(1.02);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 9px 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 14px 24px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 21, 31, 0.96);
}

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

.hero-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: linear-gradient(180deg, var(--deepblue-900), var(--ocean-800));
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    align-items: center;
    gap: clamp(24px, 5vw, 72px);
    padding: 90px max(24px, calc((100vw - 1200px) / 2)) 80px;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(0, 169, 195, 0.35), transparent 35%),
        linear-gradient(0deg, rgba(0, 21, 31, 0.96), rgba(0, 21, 31, 0.66) 42%, rgba(0, 21, 31, 0.24));
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--coral-400);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.eyebrow.dark {
    color: var(--ocean-700);
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-copy {
    max-width: 760px;
    margin: 22px 0 0;
    color: #e6f7f9;
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags {
    margin: 28px 0;
}

.hero-tags span,
.hero-tags a,
.detail-meta span,
.tag-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    background: rgba(0, 169, 195, 0.24);
    border: 1px solid rgba(204, 238, 243, 0.26);
    backdrop-filter: blur(12px);
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.primary-btn {
    color: #fff;
    background: var(--coral-500);
    box-shadow: 0 16px 34px rgba(255, 105, 75, 0.28);
}

.ghost-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.ghost-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.hero-poster {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    transform: rotate(2deg);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

.hero-dot {
    width: 34px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--coral-500);
}

.section-shell,
.detail-shell {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.search-band {
    transform: translateY(-32px);
    position: relative;
    z-index: 5;
}

.search-band-inner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    align-items: center;
    gap: 24px;
    border-radius: 28px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-band h2,
.section-title h2,
.filter-bar h2,
.content-card h2,
.watch-section h2 {
    margin: 0;
    color: var(--deepblue-900);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
}

.wide-search input {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
    background: #fff;
    color: var(--text);
}

.section-block {
    padding: 56px 0 16px;
}

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

.section-title a {
    color: var(--ocean-700);
    font-weight: 800;
}

.section-title a:hover {
    color: var(--coral-500);
}

.light-title h2,
.light-title a {
    color: #fff;
}

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

.dense-grid {
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 20px;
}

.movie-card,
.horizontal-card,
.category-overview-card,
.content-card {
    background: var(--card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover,
.horizontal-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--deepblue-900);
}

.poster-link img,
.horizontal-poster img,
.rank-thumb img,
.category-card img,
.category-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 21, 31, 0.72), transparent 58%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

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

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--coral-500);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.duration-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    background: rgba(0, 21, 31, 0.82);
    backdrop-filter: blur(12px);
}

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

.movie-card h3,
.horizontal-card h3,
.rank-row h3,
.category-overview-card h2 {
    margin: 0;
    color: var(--deepblue-900);
    line-height: 1.32;
}

.movie-card h3 {
    font-size: 18px;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover,
.rank-row h3 a:hover,
.category-overview-card h2 a:hover {
    color: var(--ocean-700);
}

.movie-line {
    min-height: 46px;
    margin: 9px 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.movie-meta {
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.movie-meta span,
.movie-meta a {
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--ocean-50);
    color: var(--ocean-800);
}

.compact-card .movie-line {
    display: none;
}

.featured-block {
    margin-top: 44px;
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--ocean-50), var(--seagreen-50));
    box-shadow: 0 20px 50px rgba(0, 169, 195, 0.12);
}

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

.category-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 28px;
    padding: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--deepblue-900);
    box-shadow: var(--soft-shadow);
}

.category-card img,
.category-glow {
    position: absolute;
    inset: 0;
}

.category-card img {
    opacity: 0.42;
}

.category-glow {
    background: linear-gradient(0deg, rgba(0, 21, 31, 0.92), rgba(0, 91, 105, 0.35), transparent);
}

.category-card strong,
.category-card p,
.category-preview {
    position: relative;
    z-index: 2;
}

.category-card strong {
    font-size: 23px;
}

.category-card p {
    margin: 8px 0 14px;
    color: #e6f7f9;
}

.category-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-preview span {
    max-width: 100%;
    border-radius: 999px;
    padding: 4px 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-block {
    margin-top: 58px;
    border-radius: 34px;
    padding: 40px;
    background: linear-gradient(135deg, var(--deepblue-900), var(--ocean-900));
    box-shadow: 0 24px 60px rgba(0, 21, 31, 0.28);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 102px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(0, 21, 31, 0.1);
}

.rank-number {
    color: var(--coral-500);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

.rank-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 15px;
    overflow: hidden;
    background: var(--deepblue-900);
}

.rank-copy p,
.horizontal-info p {
    margin: 6px 0 10px;
    color: var(--muted);
}

.page-main,
.detail-main {
    min-height: 70vh;
}

.page-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 105, 75, 0.28), transparent 26%),
        linear-gradient(135deg, var(--deepblue-900), var(--ocean-800));
    padding: 72px max(24px, calc((100vw - 1200px) / 2));
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
}

.page-hero p:last-child {
    max-width: 760px;
    color: #e6f7f9;
    font-size: 18px;
}

.slim-hero {
    min-height: 280px;
}

.category-page-hero {
    min-height: 360px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
    padding: 54px 0;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 16px;
}

.category-overview-img {
    border-radius: 18px;
    overflow: hidden;
    background: var(--deepblue-900);
    aspect-ratio: 1 / 1;
}

.category-overview-card p {
    margin: 8px 0 12px;
    color: var(--muted);
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-links a {
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--ocean-800);
    background: var(--ocean-50);
    font-size: 13px;
}

.filter-bar {
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--soft-shadow);
}

.filter-bar input {
    width: min(360px, 100%);
    padding: 12px 16px;
    color: var(--text);
    background: #fff;
}

.empty-state {
    display: none;
    padding: 34px;
    text-align: center;
    color: var(--muted);
}

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

.detail-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--deepblue-900);
}

.detail-bg,
.detail-mask {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: blur(2px) saturate(1.08);
}

.detail-mask {
    background:
        radial-gradient(circle at 76% 22%, rgba(0, 169, 195, 0.3), transparent 30%),
        linear-gradient(0deg, rgba(0, 21, 31, 0.98), rgba(0, 21, 31, 0.72) 48%, rgba(0, 21, 31, 0.46));
}

.detail-shell {
    position: relative;
    z-index: 2;
    padding: 64px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 26px;
    color: #cceef3;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: clamp(28px, 6vw, 70px);
    align-items: center;
}

.detail-cover {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    background: var(--deepblue-900);
}

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

.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
}

.lead-text {
    max-width: 820px;
    margin: 20px 0;
    color: #e6f7f9;
    font-size: 20px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 30px;
}

.tag-pill {
    color: #e6f7f9;
    padding: 7px 12px;
}

.watch-section {
    padding: 54px 0 20px;
}

.watch-section h2 {
    margin-bottom: 18px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 26px 70px rgba(0, 21, 31, 0.34);
}

.stream-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.poster-cover {
    position: absolute;
    inset: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 21, 31, 0.32), rgba(0, 21, 31, 0.72));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.poster-cover span {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-500);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    font-size: 34px;
}

.poster-cover strong {
    font-size: 19px;
}

.video-shell.is-playing .poster-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    gap: 24px;
    padding: 30px 0;
}

.content-card {
    padding: 26px;
}

.content-card p {
    margin: 14px 0 0;
    color: #31596a;
    font-size: 17px;
}

.meta-card {
    grid-row: span 2;
}

.meta-card dl {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 11px 16px;
    margin: 18px 0 0;
}

.meta-card dt {
    color: var(--muted);
}

.meta-card dd {
    margin: 0;
    color: var(--deepblue-900);
    font-weight: 700;
}

.horizontal-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
}

.horizontal-poster {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--deepblue-900);
}

.seo-copy {
    margin-top: 54px;
    margin-bottom: 36px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
}

.seo-copy h2 {
    margin: 0 0 12px;
    color: var(--deepblue-900);
}

.seo-copy p {
    color: #31596a;
}

.site-footer {
    margin-top: 70px;
    color: #cceef3;
    background: linear-gradient(180deg, var(--deepblue-900), var(--deepblue-950));
}

.footer-grid {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 34px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
}

.footer-grid p {
    color: #a9dce4;
}

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

.footer-grid a:hover {
    color: var(--coral-400);
}

.footer-bottom {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(204, 238, 243, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #8fcdd8;
}

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        min-height: 720px;
        padding-top: 76px;
        text-align: left;
    }

    .hero-poster {
        width: min(260px, 70vw);
        justify-self: center;
        transform: rotate(0);
    }

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

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

    .detail-cover {
        width: min(300px, 78vw);
    }

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

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

@media (max-width: 700px) {
    .nav-shell {
        min-height: 66px;
        padding: 0 16px;
    }

    .brand {
        font-size: 20px;
    }

    .mobile-search {
        align-items: stretch;
    }

    .mobile-search input {
        width: 100%;
    }

    .hero-section {
        min-height: 760px;
    }

    .hero-slide {
        padding: 58px 20px 76px;
        min-height: 760px;
        gap: 24px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .search-band {
        transform: none;
        padding-top: 20px;
    }

    .search-band-inner,
    .featured-block,
    .rank-block,
    .seo-copy {
        padding: 22px;
        border-radius: 22px;
    }

    .section-shell,
    .detail-shell {
        width: min(100% - 28px, 1200px);
    }

    .section-title,
    .filter-bar {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .movie-card h3 {
        font-size: 15px;
    }

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

    .movie-line {
        min-height: 0;
        font-size: 13px;
    }

    .movie-meta {
        font-size: 12px;
    }

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

    .category-overview-card {
        grid-template-columns: 112px 1fr;
    }

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

    .rank-number {
        font-size: 21px;
    }

    .rank-copy p {
        display: none;
    }

    .page-hero {
        padding: 54px 20px;
        min-height: 260px;
    }

    .detail-hero {
        min-height: 760px;
    }

    .lead-text {
        font-size: 17px;
    }

    .horizontal-card {
        grid-template-columns: 110px 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
