* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: #f9fafb;
    line-height: 1.65;
}

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

img {
    display: block;
    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: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    box-shadow: 0 10px 24px rgba(20, 184, 166, 0.28);
    transition: transform 0.25s ease;
}

.brand:hover .brand__mark {
    transform: scale(1.08);
}

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

.brand__text strong {
    font-size: 20px;
    color: #111827;
}

.brand__text em {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
    font-style: normal;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    color: #374151;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #0f766e;
    background: #ccfbf1;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 190px;
    padding: 10px;
    display: grid;
    gap: 4px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__panel a {
    padding: 9px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-size: 14px;
}

.nav-dropdown__panel a:hover {
    color: #0f766e;
    background: #f0fdfa;
}

.header-search {
    width: min(260px, 24vw);
}

.header-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 11px 16px;
    color: #111827;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #374151;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 14px 18px 20px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

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

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #374151;
    font-weight: 700;
}

.mobile-nav a:hover {
    color: #0f766e;
    background: #f0fdfa;
}

.mobile-nav__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-top: 8px;
}

.hero-carousel {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

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

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

.hero-slide__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.46), rgba(2, 6, 23, 0.16));
}

.hero-slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.hero-slide__badge,
.detail-badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: #14b8a6;
    font-size: 14px;
    font-weight: 800;
}

.hero-slide h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-slide p {
    max-width: 720px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-slide__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.hero-slide__meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.2s ease;
}

.btn-primary {
    color: #0f172a;
    background: #ffffff;
}

.btn-primary:hover {
    color: #ffffff;
    background: #14b8a6;
    transform: translateY(-2px);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.btn-link {
    color: #ffffff;
    background: rgba(20, 184, 166, 0.65);
}

.btn-link:hover {
    background: #0f766e;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    font-size: 32px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.2s ease;
}

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

.hero-arrow--left {
    left: 22px;
}

.hero-arrow--right {
    right: 22px;
}

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

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

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

.featured-overlap {
    position: relative;
    z-index: 4;
    margin-top: -72px;
}

.featured-banner {
    position: relative;
    display: block;
    min-height: 300px;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.featured-banner img {
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.featured-banner:hover img {
    transform: scale(1.04);
}

.featured-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34), transparent);
}

.featured-banner__content {
    position: absolute;
    z-index: 2;
    left: 42px;
    bottom: 38px;
    max-width: 640px;
    color: #ffffff;
}

.featured-banner__content span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #14b8a6;
    font-weight: 800;
}

.featured-banner__content h2 {
    margin: 16px 0 10px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
}

.featured-banner__content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.section-block {
    padding: 58px 0;
}

.section-block--white {
    background: #ffffff;
}

.section-block--soft {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

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

.section-heading > div {
    max-width: 760px;
}

.section-heading__icon {
    color: #0f766e;
    font-weight: 900;
}

.section-heading h2 {
    display: inline;
    margin: 0 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.section-heading p {
    margin: 8px 0 0;
    color: #6b7280;
}

.section-heading a {
    flex: 0 0 auto;
    color: #0f766e;
    font-weight: 900;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.movie-card__cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e5e7eb;
}

.movie-card--large .movie-card__cover {
    aspect-ratio: 21 / 10;
}

.movie-card--compact .movie-card__cover {
    aspect-ratio: 3 / 4;
}

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

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

.movie-card__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.movie-card__play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #111827;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: 0.25s ease;
}

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

.movie-card__type,
.card-rank {
    position: absolute;
    z-index: 2;
    top: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.66);
    font-size: 12px;
    font-weight: 900;
}

.movie-card__type {
    right: 12px;
}

.card-rank {
    left: 12px;
    background: #14b8a6;
}

.movie-card__body {
    padding: 16px;
}

.movie-card__body h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card--compact .movie-card__body h3 {
    font-size: 15px;
}

.movie-card__body h3 a:hover {
    color: #0f766e;
}

.movie-card__body p {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 14px;
}

.movie-card__meta,
.horizontal-card__meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.movie-card__meta span,
.horizontal-card__meta span,
.detail-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f3f4f6;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-list span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 12px;
    font-weight: 800;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.horizontal-card__cover {
    position: relative;
    overflow: hidden;
    min-height: 126px;
    background: #e5e7eb;
}

.horizontal-card__cover img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.horizontal-card:hover .horizontal-card__cover img {
    transform: scale(1.08);
}

.horizontal-rank {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: #14b8a6;
    font-weight: 900;
}

.horizontal-card__body {
    padding: 18px 18px 18px 0;
}

.horizontal-card__body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
}

.horizontal-card__body h3 a:hover {
    color: #0f766e;
}

.horizontal-card__body p {
    margin: 0 0 12px;
    color: #6b7280;
}

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

.category-pill {
    display: block;
    min-height: 126px;
    padding: 20px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    box-shadow: 0 18px 38px rgba(8, 145, 178, 0.22);
    transition: transform 0.25s ease;
}

.category-pill:hover {
    transform: translateY(-4px);
}

.category-pill strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.category-pill span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.page-hero {
    padding: 78px 0;
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #0f766e;
    background: #ccfbf1;
    font-weight: 900;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #4b5563;
    font-size: 18px;
}

.page-hero--teal {
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e, #0891b2);
}

.page-hero--teal span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.page-hero--teal p {
    color: rgba(255, 255, 255, 0.88);
}

.page-hero--dark {
    color: #ffffff;
    background: radial-gradient(circle at top left, #0f766e, #020617 56%);
}

.page-hero--dark span {
    color: #ffffff;
    background: rgba(20, 184, 166, 0.55);
}

.page-hero--dark p {
    color: rgba(255, 255, 255, 0.82);
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 12px;
    max-width: 720px;
    margin-top: 28px;
}

.filter-bar--wide {
    grid-template-columns: 1fr 170px 150px;
    max-width: 920px;
}

.category-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card__covers {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 110px);
    gap: 3px;
    background: #e5e7eb;
}

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

.category-card__covers img:first-child {
    grid-row: span 2;
}

.category-card__body {
    padding: 20px;
}

.category-card__body h2 {
    margin: 0 0 10px;
}

.category-card__body p {
    margin: 0 0 14px;
    color: #6b7280;
}

.category-card__body span {
    color: #0f766e;
    font-weight: 900;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background: #020617;
}

.detail-hero__bg {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.08);
    transform: scale(1.03);
}

.detail-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.34));
}

.detail-hero__content {
    position: relative;
    z-index: 2;
    padding: 44px 0 60px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #5eead4;
}

.detail-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: end;
}

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

.detail-poster img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    margin: 20px 0 16px;
    max-width: 820px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
}

.detail-one-line {
    max-width: 860px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
}

.tag-list--detail span {
    color: #ffffff;
    background: rgba(20, 184, 166, 0.66);
}

.detail-info .btn {
    margin-top: 26px;
}

.player-shell {
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    font-size: 34px;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.player-start:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

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

.player-caption {
    padding: 24px;
}

.player-caption h2 {
    margin: 0 0 8px;
}

.player-caption p {
    margin: 0;
    color: #6b7280;
}

.detail-content article {
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

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

.detail-content p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 17px;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #f9fafb, #f3f4f6);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 42px 0;
}

.site-footer p {
    margin: 8px 0 0;
    color: #6b7280;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #4b5563;
    font-weight: 800;
}

.site-footer__links a:hover {
    color: #0f766e;
}

[data-movie-card].is-filtered {
    display: none;
}

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

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

    .header-search {
        display: none;
    }
}

@media (max-width: 820px) {
    .site-header__inner {
        min-height: 66px;
    }

    .desktop-nav {
        display: none;
    }

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

    .hero-carousel {
        min-height: 76vh;
    }

    .hero-slide__content {
        padding: 0 18px;
    }

    .hero-arrow {
        display: none;
    }

    .featured-overlap {
        margin-top: -40px;
    }

    .featured-banner__content {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

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

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

    .horizontal-card {
        grid-template-columns: 136px 1fr;
        gap: 14px;
    }

    .horizontal-card__body {
        padding: 14px 14px 14px 0;
    }

    .horizontal-card__body h3 {
        font-size: 18px;
    }

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

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

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

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .brand__text em {
        display: none;
    }

    .brand__text strong {
        font-size: 18px;
    }

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

    .hero-slide__actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

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

    .horizontal-card__cover {
        aspect-ratio: 16 / 9;
    }

    .horizontal-card__body {
        padding: 16px;
    }

    .detail-hero__content {
        padding-top: 30px;
    }

    .player-start {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
