:root {
    color-scheme: dark;
    --bg: #0f172a;
    --bg-deep: #020617;
    --panel: #111827;
    --panel-soft: #1f2937;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --muted-2: #94a3b8;
    --gold: #facc15;
    --gold-deep: #ca8a04;
    --red: #ef4444;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 0%, rgba(250, 204, 21, 0.10), transparent 34rem),
        radial-gradient(circle at 100% 10%, rgba(239, 68, 68, 0.10), transparent 36rem),
        linear-gradient(135deg, #111827 0%, #0f172a 46%, #020617 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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: rgba(15, 23, 42, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo {
    font-size: 21px;
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #facc15, #fb923c);
    color: #111827;
    box-shadow: 0 12px 28px rgba(250, 204, 21, 0.24);
}

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

.main-nav a,
.mobile-links a {
    padding: 10px 13px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 14px;
    transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.mobile-links a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

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

.nav-search input,
.mobile-panel input,
.large-search input,
.filter-panel input {
    border: 1px solid rgba(148, 163, 184, 0.20);
    background: rgba(15, 23, 42, 0.78);
    color: var(--text);
    outline: none;
    border-radius: 14px;
    padding: 12px 14px;
    transition: 0.2s ease;
}

.nav-search input {
    width: 240px;
}

.nav-search input:focus,
.mobile-panel input:focus,
.large-search input:focus,
.filter-panel input:focus {
    border-color: rgba(250, 204, 21, 0.7);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
}

.nav-search button,
.mobile-panel button,
.large-search button {
    border: 0;
    border-radius: 14px;
    padding: 12px 16px;
    color: #111827;
    background: var(--gold);
    cursor: pointer;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 10px;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-panel form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 10px 0 12px;
}

.mobile-links {
    display: grid;
    gap: 8px;
}

.hero-section {
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) 390px;
    align-items: center;
    gap: 54px;
    padding: 64px max(32px, calc((100vw - 1180px) / 2)) 74px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.6s ease, transform 0.8s ease;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.84) 40%, rgba(15, 23, 42, 0.35)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.12) 46%, rgba(2, 6, 23, 0.75)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-content {
    max-width: 720px;
}

.eyebrow,
.page-hero p,
.section-title p,
.player-info p:first-child {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
    margin: 16px 0;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 680px;
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.9;
}

.hero-tags,
.tag-row,
.genre-list,
.category-links,
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.tag-row span,
.genre-list span {
    color: #fde68a;
    background: rgba(250, 204, 21, 0.10);
    border: 1px solid rgba(250, 204, 21, 0.22);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
}

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

.center-actions {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 15px;
    padding: 0 20px;
    font-weight: 800;
    transition: 0.22s ease;
}

.btn-primary {
    color: #111827;
    background: linear-gradient(135deg, #facc15, #fb923c);
    box-shadow: 0 18px 35px rgba(250, 204, 21, 0.16);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.btn-ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
    position: relative;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(15, 23, 42, 0.78);
}

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

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

.hero-poster span,
.card-play {
    position: absolute;
    display: grid;
    place-items: center;
    color: #111827;
    background: var(--gold);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.hero-poster span {
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    border-radius: 24px;
    transform: translate(-50%, -50%);
    font-size: 28px;
}

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

.hero-dot {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

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

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

.section-tight {
    padding-top: 54px;
}

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

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

.section-title p {
    margin: 0 0 8px;
    font-size: 13px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    letter-spacing: -0.03em;
}

.section-title a,
.text-link {
    color: var(--gold);
    font-weight: 800;
}

.plain-intro {
    display: block;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 500;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    border-radius: 24px;
    padding: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.category-tile::after,
.overview-card::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.18);
    filter: blur(6px);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.24;
    transition: 0.3s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.34;
}

.category-tile span,
.category-tile strong {
    position: relative;
    z-index: 2;
    display: block;
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong {
    max-width: 220px;
    margin-top: 38px;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.7;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(17, 24, 39, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 204, 21, 0.40);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #020617);
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.movie-card:hover .card-cover img {
    transform: scale(1.06);
    opacity: 0.82;
}

.card-year {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #111827;
    background: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.card-play {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    gap: 10px;
    color: var(--muted-2);
    font-size: 12px;
}

.card-body h3,
.rank-card h3,
.overview-card h2 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover,
.rank-card h3 a:hover,
.overview-card h2 a:hover {
    color: var(--gold);
}

.card-body p,
.rank-card p,
.overview-card p,
.detail-content p,
.site-footer p {
    color: var(--muted);
    line-height: 1.75;
}

.card-body p {
    min-height: 54px;
    margin: 0 0 14px;
    font-size: 14px;
}

.tag-row span {
    padding: 5px 9px;
    font-size: 12px;
}

.rank-section {
    padding-top: 34px;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(17, 24, 39, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: 0.22s ease;
}

.rank-card:hover {
    transform: translateY(-4px);
    border-color: rgba(250, 204, 21, 0.40);
}

.rank-cover {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #111827;
}

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

.rank-cover strong {
    position: absolute;
    left: 8px;
    top: 8px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #111827;
    background: var(--gold);
}

.full-rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.page-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding: 70px 28px;
    overflow: hidden;
    text-align: center;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(31, 41, 55, 0.96), rgba(2, 6, 23, 0.98)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
}

.page-hero > * {
    position: relative;
    z-index: 2;
}

.compact-hero {
    padding: 68px 26px;
}

.category-hero {
    text-align: left;
}

.category-links {
    justify-content: center;
    margin-top: 26px;
}

.category-hero .category-links {
    justify-content: flex-start;
}

.category-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.category-links a:hover,
.category-links a[aria-current="page"] {
    color: #111827;
    background: var(--gold);
}

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

.overview-card {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    overflow: hidden;
    padding: 18px;
    border-radius: 28px;
    background: rgba(17, 24, 39, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.overview-card > * {
    position: relative;
    z-index: 2;
}

.overview-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.overview-media img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 18px;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(17, 24, 39, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.filter-panel input {
    width: 100%;
}

.filter-chip {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: #111827;
    background: var(--gold);
    border-color: var(--gold);
}

.large-search {
    display: grid;
    grid-template-columns: minmax(0, 560px) auto;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

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

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: var(--muted-2);
    margin-bottom: 22px;
    font-size: 14px;
}

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

.player-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.74fr);
    gap: 24px;
    align-items: stretch;
    padding: 22px;
    border-radius: 32px;
    background: rgba(17, 24, 39, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: var(--shadow);
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    z-index: 1;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #020617;
    z-index: 2;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.player-cover span {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 28px;
    color: #111827;
    background: var(--gold);
    font-size: 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

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

.player-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 8px;
}

.player-info h1 {
    margin: 10px 0 16px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.player-info p:last-child {
    color: var(--muted);
    line-height: 1.85;
}

.large-tags {
    margin-bottom: 16px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    margin-top: 34px;
}

.detail-poster {
    position: sticky;
    top: 92px;
    align-self: start;
    padding: 16px;
    border-radius: 26px;
    background: rgba(17, 24, 39, 0.80);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
}

.full-btn {
    width: 100%;
}

.detail-content {
    padding: 26px;
    border-radius: 28px;
    background: rgba(17, 24, 39, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

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

.info-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.info-list span {
    display: grid;
    gap: 6px;
    padding: 13px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
}

.info-list strong {
    color: var(--text);
}

.info-list a {
    color: var(--gold);
}

.detail-section {
    width: 100%;
}

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

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 28px;
}

.footer-logo {
    margin-bottom: 14px;
    font-size: 18px;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 17px;
}

.site-footer a:not(.footer-logo) {
    display: block;
    color: var(--muted);
    margin: 9px 0;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted-2);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.cat-red::before,
.cat-amber::before,
.cat-blue::before,
.cat-pink::before,
.cat-orange::before,
.cat-green::before,
.cat-purple::before,
.cat-slate::before,
.cat-cyan::before,
.cat-yellow::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.20;
    pointer-events: none;
}

.cat-red::before { background: linear-gradient(135deg, #ef4444, transparent); }
.cat-amber::before { background: linear-gradient(135deg, #f59e0b, transparent); }
.cat-blue::before { background: linear-gradient(135deg, #3b82f6, transparent); }
.cat-pink::before { background: linear-gradient(135deg, #ec4899, transparent); }
.cat-orange::before { background: linear-gradient(135deg, #f97316, transparent); }
.cat-green::before { background: linear-gradient(135deg, #22c55e, transparent); }
.cat-purple::before { background: linear-gradient(135deg, #a855f7, transparent); }
.cat-slate::before { background: linear-gradient(135deg, #64748b, transparent); }
.cat-cyan::before { background: linear-gradient(135deg, #06b6d4, transparent); }
.cat-yellow::before { background: linear-gradient(135deg, #eab308, transparent); }

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

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

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

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

    .footer-grid,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .player-shell,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        position: static;
        max-width: 320px;
    }
}

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

    .logo {
        font-size: 18px;
    }

    .main-nav {
        display: none;
    }

    .hero-section,
    .hero-carousel {
        min-height: 780px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 42px 18px 82px;
    }

    .hero-poster {
        height: 340px;
        max-width: 260px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-wrap {
        padding: 42px 0;
    }

    .section-title,
    .footer-bottom {
        display: grid;
    }

    .category-grid,
    .movie-grid,
    .rank-grid,
    .full-rank-grid,
    .overview-grid,
    .footer-grid,
    .info-list {
        grid-template-columns: 1fr;
    }

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

    .rank-card {
        grid-template-columns: 92px 1fr;
    }

    .page-hero {
        padding: 48px 18px;
        border-radius: 24px;
    }

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

    .player-shell {
        padding: 12px;
        border-radius: 24px;
    }

    .video-frame {
        border-radius: 18px;
    }

    .detail-content {
        padding: 18px;
    }
}
