:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --cyan-600: #0891b2;
    --cyan-500: #06b6d4;
    --cyan-400: #22d3ee;
    --blue-600: #2563eb;
    --white: #ffffff;
    --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 25px 55px rgba(15, 23, 42, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--slate-900);
    background: #f8fafc;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(14px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.28);
}

.brand-text {
    font-size: 21px;
    line-height: 1;
    color: transparent;
    background: linear-gradient(90deg, var(--cyan-400), #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}

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

.nav-link,
.mobile-link {
    color: #cbd5e1;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--cyan-400);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.mobile-nav {
    display: none;
    padding: 10px 24px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--slate-800);
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 10px;
}

.mobile-link:hover,
.mobile-link.is-active {
    background: rgba(8, 145, 178, 0.16);
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.08));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: max(28px, calc((100vw - 1280px) / 2 + 24px));
    width: min(680px, calc(100vw - 56px));
    transform: translateY(-50%);
    color: var(--white);
}

.hero-kicker,
.hero-meta,
.hero-tags,
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-kicker span,
.hero-kicker a,
.hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.hero-kicker span {
    background: var(--cyan-500);
}

.hero-kicker a,
.hero-tags span {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    margin: 20px 0 16px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 620px;
    margin: 0 0 22px;
    color: #dbeafe;
    font-size: 20px;
}

.hero-meta {
    margin: 18px 0 30px;
    color: #e2e8f0;
}

.hero-meta span {
    position: relative;
}

.hero-meta span + span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--cyan-400);
    vertical-align: middle;
}

.primary-button,
.ghost-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
    box-shadow: 0 14px 34px rgba(6, 182, 212, 0.26);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
    transform: translateY(-2px);
}

.ghost-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.text-button {
    color: var(--cyan-600);
    background: #ecfeff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

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

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--white);
}

.hero-search-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1280px;
    margin: -38px auto 0;
    padding: 22px 24px;
    border-radius: 24px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.95), rgba(37, 99, 235, 0.95));
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 8;
}

.hero-search-band strong {
    display: block;
    font-size: 22px;
}

.hero-search-form,
.filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-search-form input,
.filter-bar input {
    width: min(360px, 70vw);
    height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 999px;
    outline: none;
    color: var(--slate-900);
    background: var(--white);
}

.hero-search-form button,
.filter-chip {
    height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--slate-900);
    font-weight: 700;
}

.filter-chip {
    color: var(--slate-700);
    background: var(--white);
    border: 1px solid var(--slate-200);
}

.filter-chip.is-active {
    color: var(--white);
    border-color: var(--cyan-500);
    background: var(--cyan-500);
}

.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.home-shell {
    display: grid;
    gap: 64px;
}

.page-top {
    padding-top: 46px;
}

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

.section-heading > div {
    min-width: 0;
}

.section-icon {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--cyan-600);
    font-size: 28px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.15;
    color: var(--slate-900);
}

.section-heading p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--slate-500);
}

.section-more {
    flex: 0 0 auto;
    color: var(--cyan-600);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-strong);
}

.movie-card.light {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.card-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--slate-800);
}

.card-poster img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent);
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    min-height: 32px;
    padding: 0 12px;
    color: var(--white);
    background: rgba(6, 182, 212, 0.92);
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    color: var(--white);
    background: linear-gradient(135deg, #f97316, #e11d48);
}

.card-body {
    padding: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 25px;
}

.card-tags span,
.tag-row a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    color: var(--cyan-700, #0e7490);
    background: #ecfeff;
    font-size: 12px;
    font-weight: 700;
}

.card-body h3 {
    margin: 10px 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.card-body h3 a:hover,
.compact-card h3 a:hover,
.ranking-info h2 a:hover {
    color: var(--cyan-600);
}

.card-body p {
    display: -webkit-box;
    min-height: 47px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--slate-500);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-meta,
.compact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-500);
    font-size: 13px;
}

.split-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
}

.content-panel,
.gradient-panel {
    border-radius: 28px;
    padding: 30px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.gradient-panel {
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
}

.gradient-panel .section-heading h2,
.gradient-panel .section-heading p,
.gradient-panel .section-icon,
.gradient-panel .section-more {
    color: var(--white);
}

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

.compact-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #f8fafc;
}

.compact-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 14px;
    background: var(--slate-800);
}

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

.list-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
    border-radius: 8px;
    color: var(--white);
    background: var(--cyan-500);
    font-weight: 800;
}

.compact-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.compact-card p {
    margin: 0 0 8px;
    color: var(--slate-500);
    font-size: 14px;
}

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

.category-chip-grid a {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    background: #f8fafc;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-chip-grid a:hover {
    border-color: var(--cyan-500);
    transform: translateY(-3px);
}

.category-chip-grid span {
    font-weight: 800;
}

.category-chip-grid em {
    color: var(--slate-500);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    margin-bottom: 36px;
    padding: 46px;
    border-radius: 30px;
    color: var(--white);
    background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.55), transparent 32%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow-strong);
}

.page-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
}

.eyebrow {
    display: inline-flex;
    min-height: 32px;
    padding: 5px 13px;
    border-radius: 999px;
    color: #ecfeff;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 800;
}

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

.category-card a {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 190px;
    overflow: hidden;
    background: var(--slate-800);
}

.category-thumbs img {
    height: 100%;
    object-fit: cover;
}

.category-card h2,
.category-card p,
.category-card span {
    margin-left: 22px;
    margin-right: 22px;
}

.category-card h2 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 24px;
}

.category-card p {
    color: var(--slate-500);
}

.category-card span {
    display: inline-flex;
    margin-top: 14px;
    margin-bottom: 22px;
    color: var(--cyan-600);
    font-weight: 800;
}

.filter-bar {
    margin-top: 24px;
}

.compact-filter input {
    width: min(520px, 100%);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 86px 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.ranking-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 14px;
    background: var(--slate-800);
}

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

.ranking-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
    font-size: 20px;
    font-weight: 900;
}

.ranking-info h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.ranking-info p {
    margin: 0 0 8px;
    color: var(--slate-500);
}

.ranking-info div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--slate-500);
    font-size: 14px;
}

.detail-page {
    background: #f8fafc;
}

.player-shell {
    background: #000;
}

.player-wrap {
    position: relative;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background: #000;
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.18));
    cursor: pointer;
}

.play-overlay.is-hidden {
    display: none;
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: var(--slate-950);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    font-size: 30px;
}

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

.detail-shell {
    padding-top: 34px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--slate-500);
}

.breadcrumb a {
    color: var(--cyan-600);
    font-weight: 700;
}

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

.detail-main,
.detail-side .side-card,
.text-panel {
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.detail-main {
    padding: 34px;
}

.detail-main h1 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
}

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

.detail-meta span {
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--slate-600);
    background: var(--slate-100);
    font-size: 14px;
    font-weight: 700;
}

.lead-text {
    margin: 22px 0;
    color: var(--slate-700);
    font-size: 20px;
}

.text-panel {
    margin-top: 24px;
    padding: 26px;
    box-shadow: none;
    border: 1px solid var(--slate-200);
}

.text-panel h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.text-panel p {
    margin: 0;
    color: var(--slate-600);
    font-size: 17px;
    line-height: 1.85;
}

.detail-side {
    display: grid;
    align-content: start;
    gap: 18px;
}

.detail-side > img {
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    background: var(--slate-800);
    box-shadow: var(--shadow-soft);
}

.side-card {
    padding: 24px;
}

.side-card h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 0;
}

.side-card dt {
    color: var(--slate-500);
}

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

.side-card a {
    color: var(--cyan-600);
}

.related-section {
    margin-top: 44px;
}

.site-footer {
    color: #cbd5e1;
    background: var(--slate-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px 36px;
}

.footer-brand {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 18px;
}

.site-footer p {
    margin: 0;
    color: #94a3b8;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

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

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

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

[hidden] {
    display: none !important;
}

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

    .split-section,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .menu-button {
        display: block;
    }

    .hero-carousel {
        height: 560px;
    }

    .hero-content {
        left: 24px;
        width: calc(100vw - 48px);
    }

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

    .hero-arrow {
        display: none;
    }

    .hero-search-band {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        border-radius: 0;
    }

    .hero-search-form input,
    .filter-bar input {
        width: 100%;
    }

    .page-shell {
        padding: 42px 18px;
    }

    .page-hero {
        padding: 34px 24px;
    }

    .four-grid,
    .six-grid,
    .three-grid,
    .category-overview-grid,
    .category-chip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking-row {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .ranking-number,
    .ranking-row .text-button {
        display: none;
    }

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

@media (max-width: 560px) {
    .nav-shell {
        padding: 0 16px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero-carousel {
        height: 520px;
    }

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

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

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

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

    .four-grid,
    .six-grid,
    .three-grid,
    .category-overview-grid,
    .category-chip-grid {
        grid-template-columns: 1fr;
    }

    .content-panel,
    .gradient-panel,
    .detail-main {
        padding: 22px;
        border-radius: 22px;
    }

    .category-thumbs {
        height: 150px;
    }

    .player-wrap {
        aspect-ratio: 16 / 10;
    }
}
