:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --indigo: #4f46e5;
    --purple: #7c3aed;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f3f4f6;
    --line: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1200px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--blue);
    background: #eff6ff;
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #eff6ff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #f9fafb;
}

.mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 52%, #faf5ff 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background-image: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.16), transparent 28%), radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.16), transparent 24%), radial-gradient(circle at 60% 80%, rgba(79, 70, 229, 0.12), transparent 30%);
}

.hero-track {
    position: relative;
    width: min(1200px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 56px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 20px;
}

.hero-kicker,
.section-kicker {
    margin: 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.hero-copy h1 {
    font-size: clamp(42px, 6vw, 76px);
}

.hero-copy h2 {
    font-size: clamp(30px, 4vw, 52px);
}

.hero-lead,
.page-hero p,
.detail-lead {
    margin: 0;
    color: #374151;
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.8;
}

.hero-pills,
.detail-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-pill,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: #1d4ed8;
    background: #dbeafe;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

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

.primary-button,
.ghost-button,
.text-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 26px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

.ghost-button {
    min-height: 48px;
    padding: 0 24px;
    color: var(--blue);
    background: #ffffff;
    border: 2px solid #bfdbfe;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.text-button,
.section-link {
    color: var(--blue);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-link:hover,
.movie-card:hover,
.category-card:hover,
.mini-movie:hover {
    transform: translateY(-3px);
}

.hero-poster-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 490px;
    border-radius: 34px;
    background: #dbeafe;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

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

.hero-poster-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.72));
}

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

.hero-play,
.poster-play {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.24);
}

.hero-play {
    top: 50%;
    left: 50%;
    width: 82px;
    height: 82px;
    font-size: 34px;
    transform: translate(-50%, -50%);
}

.hero-poster-card strong {
    position: absolute;
    z-index: 3;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.28);
}

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

.section-shell {
    padding: 72px max(16px, calc((100% - 1200px) / 2));
}

.section-white {
    background: #ffffff;
}

.section-gray {
    background: #f9fafb;
}

.section-gradient {
    background: linear-gradient(135deg, #eef2ff, #eff6ff 48%, #faf5ff);
}

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

.section-title-row h2,
.filter-heading h2,
.detail-article h2,
.detail-side h2,
.player-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -0.05em;
}

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

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

.movie-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.82);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
}

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

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

.poster-chip {
    position: absolute;
    z-index: 3;
    top: 10px;
    max-width: calc(100% - 20px);
    padding: 5px 9px;
    overflow: hidden;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.poster-chip-left {
    left: 10px;
    background: rgba(37, 99, 235, 0.88);
}

.poster-chip-right {
    right: 10px;
    background: rgba(15, 23, 42, 0.72);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    opacity: 0;
    font-size: 22px;
    transform: translate(-50%, -40%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
    position: absolute;
    z-index: 4;
    left: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.movie-card-body {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.movie-card h3 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-meta,
.movie-card-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.movie-card-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row span {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 12px;
    background: #f3f4f6;
    color: #4b5563;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: var(--radius-lg);
    background: #dbeafe;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.82));
}

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

.category-card span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
}

.category-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

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

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

.mini-movie {
    display: grid;
    grid-template-columns: auto 96px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mini-movie:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.mini-rank {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
}

.mini-movie img {
    width: 96px;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
    background: #dbeafe;
}

.mini-movie strong,
.mini-movie em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-movie strong {
    font-size: 15px;
    font-weight: 900;
}

.mini-movie em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff, #eef2ff 50%, #faf5ff);
}

.compact-hero {
    padding: 76px 0 70px;
}

.page-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    margin-top: 10px;
    font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
    max-width: 780px;
    margin-top: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 700;
}

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

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

.category-overview-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.category-overview-card h2 {
    margin: 8px 0 12px;
    font-size: 30px;
    font-weight: 950;
}

.category-overview-card p {
    color: var(--muted);
    line-height: 1.8;
}

.category-samples {
    display: grid;
    gap: 12px;
}

.filter-panel {
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.filter-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-heading p {
    margin: 0;
    color: var(--muted);
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
    gap: 16px;
    align-items: end;
}

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

.search-box input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: var(--ink);
    background: #f8fbff;
    outline: none;
}

.search-box input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

.filter-button {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    color: #1d4ed8;
    font-weight: 900;
    background: #eff6ff;
}

.filter-button.is-active,
.filter-button:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
}

.movie-card.is-hidden {
    display: none;
}

.detail-hero {
    padding: 64px 0;
    color: #ffffff;
    background: #0f172a;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    filter: blur(2px) saturate(1.1);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.48));
}

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

.detail-hero .breadcrumb {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.detail-hero .breadcrumb a {
    color: #bfdbfe;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    background: #dbeafe;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

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

.detail-copy {
    display: grid;
    gap: 20px;
}

.detail-copy h1 {
    color: #ffffff;
    font-size: clamp(36px, 5vw, 66px);
}

.detail-copy .section-kicker {
    color: #93c5fd;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.detail-lead {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.84);
}

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

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
}

.video-player video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 30px;
    border: 0;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.78));
    cursor: pointer;
}

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

.player-cover span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 34px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.player-cover strong {
    max-width: 800px;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.2;
}

.player-cover em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.player-copy p,
.detail-article p,
.detail-side dd {
    color: #4b5563;
    line-height: 1.9;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

.detail-article,
.detail-side {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.detail-article h2,
.detail-side h2,
.player-copy h2 {
    margin-top: 0;
    font-size: 28px;
}

.detail-article h2:not(:first-child) {
    margin-top: 28px;
}

.detail-side dl {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
}

.detail-side div {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.detail-side dt {
    color: #6b7280;
    font-weight: 900;
}

.detail-side dd {
    margin: 0;
    font-weight: 800;
}

.tag-row-large {
    margin-top: 24px;
}

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

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 34px;
}

.footer-logo {
    color: #ffffff;
}

.site-footer p {
    max-width: 520px;
    color: #9ca3af;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

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

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

.footer-bottom {
    padding: 18px;
    color: #9ca3af;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-section,
    .hero-track {
        min-height: 840px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 80px;
    }

    .hero-poster-card,
    .hero-poster-card img {
        min-height: 360px;
    }

    .movie-grid,
    .feature-grid,
    .category-grid,
    .mini-list-grid,
    .ranking-list,
    .category-overview-card,
    .filter-controls,
    .detail-hero-grid,
    .detail-content-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

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

    .section-title-row {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .nav-shell {
        min-height: 66px;
    }

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

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

    .hero-section,
    .hero-track {
        min-height: 800px;
    }

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

    .hero-copy h2 {
        font-size: 30px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .section-shell {
        padding-top: 46px;
        padding-bottom: 46px;
    }

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

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

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

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

    .mini-movie {
        grid-template-columns: auto 82px minmax(0, 1fr);
        gap: 10px;
        padding: 11px;
    }

    .mini-movie img {
        width: 82px;
        height: 56px;
    }

    .mini-rank {
        width: 32px;
        height: 32px;
        border-radius: 12px;
    }

    .detail-hero {
        padding: 38px 0;
    }

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

    .player-cover span {
        width: 68px;
        height: 68px;
    }

    .filter-panel,
    .detail-article,
    .detail-side,
    .category-overview-card {
        padding: 20px;
        border-radius: 22px;
    }
}
