:root {
    --color-bg: #f8f9fa;
    --color-panel: #ffffff;
    --color-soft: #f1f3f5;
    --color-soft-2: #e9ecef;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-light: #f8fafc;
    --color-red: #ef4444;
    --color-red-dark: #dc2626;
    --color-orange: #ea580c;
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 25px 70px rgba(15, 23, 42, 0.22);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
}

.header-inner,
.footer-inner,
.page-main {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--color-red-dark), var(--color-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    box-shadow: 0 10px 28px rgba(239, 68, 68, 0.35);
    font-size: 16px;
    transform: translateZ(0);
    transition: transform 0.25s ease;
}

.site-logo:hover .logo-mark {
    transform: scale(1.08);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #334155;
    font-weight: 650;
}

.desktop-nav a,
.mobile-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--color-red-dark);
}

.desktop-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--color-soft);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: #334155;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    background: #fff;
    border-top: 1px solid var(--color-soft-2);
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
}

.page-main {
    padding-top: 96px;
    padding-bottom: 64px;
}

.home-main {
    padding-top: 88px;
}

.hero-shell {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: #0f172a;
}

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

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.18), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: relative;
    width: min(620px, calc(100% - 48px));
    margin-left: clamp(24px, 6vw, 76px);
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(239, 68, 68, 0.92);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-content p {
    margin: 18px 0 0;
    color: #e2e8f0;
    font-size: 18px;
    max-width: 620px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-tags,
.detail-meta,
.genre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.detail-meta span,
.genre-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 700;
}

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

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

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.33);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.ghost-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.ghost-btn.light {
    color: #fff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #fff;
}

.home-search-card,
.content-section,
.watch-section,
.detail-hero,
.page-hero {
    margin-top: 56px;
}

.home-search-card,
.page-hero,
.watch-section,
.detail-hero,
.ranking-panel,
.latest-panel,
.special-block {
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.home-search-card {
    padding: clamp(28px, 4vw, 48px);
    background:
        linear-gradient(135deg, rgba(254, 242, 242, 0.98), rgba(255, 247, 237, 0.98)),
        #fff;
}

.home-search-card h2,
.section-title-row h2,
.watch-copy h2,
.footer-links h2 {
    margin: 0;
    color: #1e293b;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.home-search-card p,
.section-title-row p,
.page-hero p {
    margin: 8px 0 0;
    color: var(--color-muted);
}

.home-search {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    max-width: 720px;
}

.home-search input,
.search-box input {
    width: 100%;
    border: 1px solid var(--color-soft-2);
    outline: none;
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.home-search input {
    min-height: 52px;
    padding: 0 20px;
}

.home-search input:focus,
.search-box input:focus {
    border-color: rgba(239, 68, 68, 0.55);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.home-search button {
    min-width: 128px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    font-weight: 800;
    cursor: pointer;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.quick-links a,
.section-link {
    color: var(--color-red-dark);
    font-weight: 800;
}

.content-section {
    scroll-margin-top: 96px;
}

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

.section-title-row.compact h2 {
    font-size: 28px;
}

.rail-actions {
    display: flex;
    gap: 8px;
}

.rail-actions button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #334155;
    background: var(--color-soft);
    font-size: 28px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.rail-actions button:hover {
    background: var(--color-soft-2);
}

.movie-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
    display: none;
}

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

.movie-card {
    min-width: 0;
}

.rail-card {
    flex: 0 0 288px;
    scroll-snap-align: start;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.movie-thumb {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: var(--color-soft-2);
}

.movie-card-small .movie-thumb {
    height: 180px;
}

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

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

.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12), transparent);
    transition: opacity 0.25s ease;
}

.movie-card-link:hover .movie-thumb::after {
    opacity: 1;
}

.movie-type {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 8px;
    color: #fff;
    background: rgba(0, 0, 0, 0.68);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
    display: block;
    padding: 16px;
}

.movie-info strong {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 8px;
    color: #1e293b;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 17px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card-link:hover .movie-info strong {
    color: var(--color-red-dark);
}

.movie-info em {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    color: var(--color-muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-style: normal;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    color: #94a3b8;
    font-size: 13px;
}

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

.category-pill,
.category-overview-card {
    display: block;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-pill:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.category-pill strong,
.category-overview-title strong {
    display: block;
    color: #1e293b;
    font-size: 20px;
    margin-bottom: 8px;
}

.category-pill span,
.category-overview-card p,
.category-samples a {
    color: var(--color-muted);
    font-size: 14px;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.ranking-panel,
.latest-panel,
.special-block {
    padding: 24px;
}

.ranking-list,
.latest-list {
    display: grid;
    gap: 12px;
}

.ranking-item a,
.latest-item a {
    display: grid;
    grid-template-columns: auto 82px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 16px;
    background: var(--color-bg);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-page-list .ranking-item a {
    grid-template-columns: auto 110px minmax(0, 1fr);
}

.latest-item a {
    grid-template-columns: 94px minmax(0, 1fr);
}

.ranking-item a:hover,
.latest-item a:hover {
    background: #fff;
    transform: translateX(3px);
}

.ranking-number {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    font-weight: 900;
}

.ranking-item img,
.latest-item img {
    width: 100%;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--color-soft-2);
}

.ranking-page-list .ranking-item img {
    height: 86px;
}

.ranking-copy,
.latest-item span {
    display: block;
    min-width: 0;
}

.ranking-copy strong,
.latest-item strong {
    display: block;
    color: #1e293b;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-copy em,
.latest-item em {
    display: -webkit-box;
    color: var(--color-muted);
    font-size: 13px;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ranking-copy span,
.latest-item b {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.page-hero,
.detail-hero {
    padding: clamp(30px, 5vw, 58px);
    color: #fff;
    background:
        radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #111827, #7f1d1d 52%, #ea580c);
}

.small-hero,
.category-hero,
.ranking-hero {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero p {
    max-width: 720px;
    color: #f1f5f9;
    font-size: 17px;
}

.filter-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.search-box {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

.search-box input {
    min-height: 48px;
    padding: 0 18px;
}

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

.filter-row button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #334155;
    background: var(--color-soft);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.filter-row button:hover,
.filter-row button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
}

.filter-empty {
    display: none;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: #fff;
    color: var(--color-muted);
    text-align: center;
    font-weight: 800;
}

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

.category-overview-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-overview-title span {
    color: var(--color-red-dark);
    font-weight: 800;
}

.category-samples {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.category-samples a:hover {
    color: var(--color-red-dark);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: #fee2e2;
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #fff;
}

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

.detail-cover img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-lg);
    object-fit: cover;
    background: var(--color-soft-2);
    box-shadow: var(--shadow-lg);
}

.detail-copy .hero-badge {
    margin-bottom: 14px;
}

.detail-one-line {
    max-width: 820px;
    margin: 18px 0 0;
    color: #f8fafc;
    font-size: 18px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.detail-tags a {
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.watch-section {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 24px;
    padding: 24px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-lg);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.16));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay span {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    font-size: 32px;
}

.player-overlay strong {
    font-size: 20px;
}

.watch-copy {
    padding: 6px 4px;
}

.watch-copy h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 24px;
}

.watch-copy p {
    margin: 0 0 24px;
    color: #475569;
    white-space: pre-line;
}

.watch-copy .genre-badges span {
    color: #334155;
    background: var(--color-soft);
}

.related-grid .movie-thumb {
    height: 190px;
}

.site-footer {
    margin-top: 48px;
    color: #cbd5e1;
    background: #0f172a;
}

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

.footer-logo {
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    max-width: 520px;
    color: #94a3b8;
}

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

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

.footer-links a:hover {
    color: #f87171;
}

.footer-bottom {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .movie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .watch-section,
    .two-column-section {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .page-main,
    .home-main {
        padding-top: 86px;
    }

    .hero-shell {
        height: 520px;
        border-radius: 20px;
    }

    .hero-content {
        width: calc(100% - 42px);
        margin-left: 22px;
    }

    .hero-arrow {
        display: none;
    }

    .home-search {
        flex-direction: column;
    }

    .home-search button {
        min-height: 50px;
    }

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

    .detail-grid {
        align-items: start;
    }

    .detail-cover {
        max-width: 260px;
    }
}

@media (max-width: 620px) {
    .header-inner,
    .footer-inner,
    .page-main {
        width: min(100% - 24px, 1280px);
    }

    .site-logo {
        font-size: 19px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .hero-shell {
        height: 500px;
    }

    .hero-content h1,
    .hero-content h2,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 32px;
    }

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

    .hero-actions,
    .section-title-row {
        align-items: stretch;
        flex-direction: column;
    }

    .rail-actions {
        display: none;
    }

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

    .movie-thumb {
        height: 230px;
    }

    .rail-card {
        flex-basis: 260px;
    }

    .ranking-item a,
    .ranking-page-list .ranking-item a {
        grid-template-columns: auto 82px minmax(0, 1fr);
    }

    .detail-cover {
        max-width: 220px;
    }

    .watch-section,
    .ranking-panel,
    .latest-panel,
    .special-block,
    .home-search-card,
    .page-hero,
    .detail-hero {
        padding: 18px;
    }

    .player-overlay span {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}
