:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111827;
    --card: rgba(15, 23, 42, 0.82);
    --card-strong: #111827;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --gold: #f59e0b;
    --gold-soft: #fbbf24;
    --blue: #38bdf8;
    --rose: #fb7185;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.15), transparent 34rem),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.10), transparent 38rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #f59e0b, #f97316 54%, #ef4444);
    color: #111827;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    color: #fff;
    font-size: 1.18rem;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: #fde68a;
    font-size: 0.72rem;
    margin-top: 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #cbd5e1;
    font-weight: 600;
    flex: 1;
}

.desktop-nav a,
.footer-links a,
.mobile-panel a,
.mini-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover,
.mobile-panel a:hover,
.mini-links a:hover {
    color: var(--gold-soft);
}

.top-search {
    width: min(320px, 30vw);
    display: flex;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    overflow: hidden;
}

.top-search input,
.mobile-panel input,
.search-landing input,
.search-main-form input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
}

.top-search input {
    padding: 10px 14px;
}

.top-search button,
.mobile-panel button,
.search-landing button,
.search-main-form button {
    border: 0;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.78);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #f8fafc;
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding: 16px;
    background: rgba(2, 6, 23, 0.98);
}

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

.mobile-panel form {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    margin-bottom: 14px;
}

.mobile-panel input {
    padding: 12px;
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-panel a {
    padding: 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
    color: #dbeafe;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.74) 44%, rgba(2, 6, 23, 0.36) 100%),
        linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.88) 100%);
}

.hero-content {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 330px;
    align-items: center;
    gap: 44px;
    padding-top: 54px;
    padding-bottom: 54px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.11);
    border: 1px solid rgba(245, 158, 11, 0.24);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 18px 0 0;
    font-size: clamp(2.25rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-copy h2 {
    margin: 20px 0 0;
    font-size: clamp(1.6rem, 3.6vw, 3.2rem);
    color: #fde68a;
    letter-spacing: -0.03em;
}

.hero-copy p,
.page-hero p,
.detail-line {
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: 1.08rem;
    max-width: 720px;
}

.hero-tags,
.tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #e2e8f0;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 0.82rem;
}

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

.primary-btn,
.ghost-btn,
.primary-small,
.section-more {
    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, border-color 0.2s ease;
}

.primary-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.24);
}

.ghost-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #f8fafc;
    border: 1px solid rgba(248, 250, 252, 0.28);
    background: rgba(15, 23, 42, 0.52);
}

.primary-btn:hover,
.ghost-btn:hover,
.primary-small:hover,
.section-more:hover,
.movie-card:hover,
.category-card:hover,
.category-large-card:hover,
.top-rank:hover {
    transform: translateY(-3px);
}

.hero-poster {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: rotate(2deg);
}

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

.hero-control {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-control button {
    border: 0;
    cursor: pointer;
}

.hero-control > button {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #fff;
    background: rgba(148, 163, 184, 0.16);
    font-size: 1.7rem;
    line-height: 1;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: rgba(226, 232, 240, 0.38);
    padding: 0;
}

.hero-dot.is-active {
    width: 28px;
    background: #fbbf24;
}

.search-landing {
    margin-top: -36px;
    position: relative;
    z-index: 3;
}

.search-landing form,
.search-main-form {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.92);
    box-shadow: var(--shadow);
}

.search-landing input,
.search-main-form input {
    padding: 18px 22px;
    font-size: 1.02rem;
}

.search-landing button,
.search-main-form button {
    min-width: 138px;
    font-size: 1rem;
}

.section-block {
    margin: 70px 0;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 6px 0 0;
    color: var(--muted);
}

.section-more,
.primary-small {
    min-height: 38px;
    padding: 0 16px;
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.10);
    white-space: nowrap;
}

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

.movie-card {
    position: relative;
    min-width: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.20);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.34);
}

.movie-card a,
.movie-meta {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

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

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

.play-chip,
.rank-badge {
    position: absolute;
    border-radius: 999px;
    font-weight: 900;
}

.play-chip {
    right: 10px;
    bottom: 10px;
    color: #111827;
    background: #fbbf24;
    padding: 4px 10px;
    font-size: 0.78rem;
}

.rank-badge {
    left: 10px;
    top: 10px;
    min-width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.35);
}

.movie-meta {
    gap: 9px;
    padding: 13px;
}

.movie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.78rem;
}

.movie-row em {
    font-style: normal;
}

.movie-meta strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.one-line {
    color: #94a3b8;
    font-size: 0.86rem;
    line-height: 1.55;
}

.tags {
    margin-top: auto;
}

.tags span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 0.72rem;
}

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

.category-card,
.category-large-card,
.top-rank,
.page-hero,
.filter-bar,
.search-panel,
.detail-hero,
.detail-content article,
.watch-section {
    border: 1px solid rgba(148, 163, 184, 0.15);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.category-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 210px;
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
    border-color: rgba(251, 191, 36, 0.42);
}

.cat-posters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.cat-posters img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.category-card strong,
.category-large-card h2,
.top-rank strong {
    color: #fff;
}

.category-card span:last-child,
.category-large-card p {
    color: #94a3b8;
    font-size: 0.92rem;
}

.page-main {
    padding-top: 44px;
    padding-bottom: 60px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(30px, 5vw, 56px);
    margin-bottom: 34px;
    background:
        radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.18), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.76));
}

.small-hero h1 {
    max-width: 900px;
    font-size: clamp(2rem, 4.4vw, 4.2rem);
}

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

.category-large-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    border-radius: 26px;
    padding: 18px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-large-card:hover {
    border-color: rgba(251, 191, 36, 0.42);
}

.cat-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.cat-visual img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 16px;
}

.category-large-card h2 {
    margin: 0 0 8px;
    font-size: 1.7rem;
}

.mini-links,
.related-cat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.mini-links a,
.related-cat-links a {
    color: #dbeafe;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 12px;
    border-radius: 22px;
    padding: 14px;
    margin-bottom: 24px;
}

.filter-bar input,
.filter-bar select {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.55);
}

.filter-bar select option {
    color: #111827;
}

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

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

.top-rank-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 28px;
}

.top-rank {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 28px;
    padding: 20px;
    transition: transform 0.22s ease;
}

.top-rank img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.top-rank::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.92) 100%);
    z-index: 1;
}

.top-rank span {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.top-rank em {
    color: #fde68a;
    font-style: normal;
    font-weight: 900;
}

.top-rank small {
    color: #cbd5e1;
}

.search-panel {
    border-radius: 28px;
    padding: 20px;
}

.search-main-form {
    margin-bottom: 16px;
}

.inline-filter {
    margin: 0 0 12px;
    box-shadow: none;
}

.search-status {
    margin: 0 0 18px;
    color: #cbd5e1;
}

.detail-main {
    padding-top: 34px;
    padding-bottom: 60px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 0.92rem;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(230px, 330px) 1fr;
    gap: 30px;
    align-items: center;
    border-radius: 32px;
    padding: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(251, 191, 36, 0.15), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.86));
}

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.detail-copy h1 {
    font-size: clamp(2rem, 4.2vw, 4.4rem);
}

.detail-tags {
    margin-top: 18px;
}

.detail-tags.wide {
    margin-top: 0;
}

.watch-section {
    border-radius: 32px;
    padding: 18px;
    margin: 28px 0;
    background: rgba(2, 6, 23, 0.72);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    aspect-ratio: 16 / 9;
    pointer-events: auto;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 12px;
    align-content: center;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.20), rgba(2, 6, 23, 0.76));
    cursor: pointer;
}

.player-cover.is-hidden {
    display: none;
}

.play-icon {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.35);
}

.play-icon::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #111827;
    margin-left: 6px;
}

.play-copy {
    font-size: 1.15rem;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.detail-content {
    display: grid;
    gap: 18px;
    margin: 28px 0;
}

.detail-content article {
    border-radius: 26px;
    padding: 24px;
}

.detail-content h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
}

.detail-content p {
    margin: 0;
    color: #cbd5e1;
}

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

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.84);
    padding-top: 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 32px;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
    color: #94a3b8;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-bottom {
    margin-top: 36px;
    padding: 18px;
    text-align: center;
    color: #64748b;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

    .top-search {
        margin-left: auto;
        width: min(360px, 42vw);
    }

    .menu-toggle {
        display: block;
    }

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

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

@media (max-width: 860px) {
    .nav-wrap {
        height: 66px;
    }

    .top-search {
        display: none;
    }

    .hero-carousel,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
    }

    .hero-poster {
        width: min(250px, 70vw);
        transform: none;
    }

    .section-head,
    .detail-hero,
    .category-large-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cat-visual {
        grid-template-columns: repeat(4, 1fr);
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand-text small {
        display: none;
    }

    .hero-carousel,
    .hero-content {
        min-height: 680px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        letter-spacing: -0.035em;
    }

    .hero-actions,
    .detail-actions,
    .search-landing form,
    .search-main-form {
        flex-direction: column;
    }

    .search-landing button,
    .search-main-form button {
        min-height: 48px;
    }

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

    .movie-meta {
        padding: 11px;
    }

    .movie-meta strong {
        font-size: 0.95rem;
    }

    .one-line {
        font-size: 0.8rem;
    }

    .page-hero,
    .detail-hero,
    .detail-content article,
    .watch-section,
    .search-panel {
        border-radius: 22px;
    }
}
