:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111827;
    --panel-strong: #1e293b;
    --line: rgba(148, 163, 184, 0.18);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --soft: #64748b;
    --cyan: #22d3ee;
    --cyan-dark: #0891b2;
    --blue: #3b82f6;
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.45);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.container-custom {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(2, 6, 23, 0.84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(22px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: radial-gradient(circle at 30% 30%, var(--cyan), var(--cyan-dark) 55%, #1d4ed8);
    box-shadow: 0 0 34px rgba(34, 211, 238, 0.35);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(10deg);
    box-shadow: 0 0 48px rgba(34, 211, 238, 0.5);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong,
.footer-logo,
.text-gradient {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text strong {
    font-size: 21px;
    letter-spacing: 0.02em;
}

.brand-text em {
    margin-top: 3px;
    font-size: 12px;
    font-style: normal;
    color: var(--muted);
}

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

.nav-link {
    position: relative;
    color: #cbd5e1;
    font-weight: 600;
    transition: color 0.24s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--cyan);
    transition: width 0.24s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 12px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--cyan-dark), #2563eb);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.34);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #06b6d4, #1d4ed8);
    box-shadow: 0 16px 44px rgba(34, 211, 238, 0.42);
}

.btn-primary:active,
.btn-ghost:active {
    transform: translateY(0) scale(0.98);
}

.btn-ghost {
    color: #dbeafe;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.62);
}

.btn-ghost:hover {
    border-color: rgba(34, 211, 238, 0.52);
    color: var(--cyan);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.68);
    color: var(--text);
    cursor: pointer;
}

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

.mobile-nav {
    display: none;
    padding: 8px 16px 18px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.94);
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.5);
}

.mobile-link.is-active,
.mobile-link:hover {
    color: var(--cyan);
    background: rgba(8, 145, 178, 0.14);
}

main {
    min-height: 62vh;
}

.hero-shell {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a, #020617);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-position: center;
    background-size: cover;
    transition: opacity 0.72s ease, visibility 0.72s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.18), transparent 32%), linear-gradient(180deg, transparent 55%, #020617 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
    padding-top: 74px;
    max-width: 760px;
}

.hero-badge,
.page-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.24);
    background: rgba(34, 211, 238, 0.1);
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-one-line {
    margin: 24px 0 0;
    max-width: 700px;
    color: #f8fafc;
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.38;
    font-weight: 700;
}

.hero-summary,
.page-hero p,
.detail-one-line {
    margin: 18px 0 0;
    max-width: 720px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.75;
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(14, 116, 144, 0.24);
    border: 1px solid rgba(34, 211, 238, 0.16);
    font-size: 12px;
}

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

.hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
}

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

.hero-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.36);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
}

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

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: min(560px, 48vw);
}

.hero-thumb {
    position: relative;
    overflow: hidden;
    min-height: 96px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    min-height: 96px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.hero-thumb span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 9px;
    z-index: 2;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-thumb:hover img {
    opacity: 0.92;
    transform: scale(1.08);
}

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

.section-dark {
    background: #020617;
}

.section-gradient {
    background: linear-gradient(180deg, #020617, #0f172a 52%, #020617);
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 10px 0 0;
    max-width: 720px;
    color: var(--muted);
}

.section-kicker {
    display: inline-block;
    width: 5px;
    height: 32px;
    margin-right: 12px;
    vertical-align: -7px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.section-more {
    color: var(--cyan);
    font-weight: 800;
    white-space: nowrap;
}

.section-more span {
    display: inline-block;
    transition: transform 0.22s ease;
}

.section-more:hover span {
    transform: translateX(4px);
}

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

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

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

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

.extra-grid {
    margin-top: 24px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.44);
    box-shadow: 0 26px 66px rgba(8, 145, 178, 0.16);
}

.card-link {
    display: block;
    height: 100%;
}

.thumb-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111827;
}

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

.video-card:hover .video-card-thumb {
    transform: scale(1.08);
    opacity: 0.84;
}

.thumb-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.82));
}

.play-dot {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: rgba(8, 145, 178, 0.92);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.4);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 4;
    min-width: 36px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #e11d48);
    box-shadow: 0 12px 28px rgba(225, 29, 72, 0.34);
}

.card-body {
    padding: 18px;
}

.card-meta {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-body h3 {
    margin: 8px 0 9px;
    color: #f8fafc;
    font-size: 20px;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.video-card-large .thumb-wrap {
    aspect-ratio: 16 / 10;
}

.video-card-large .card-body h3 {
    font-size: 24px;
}

.video-card-horizontal .card-link {
    display: grid;
    grid-template-columns: 44% 1fr;
    min-height: 190px;
}

.video-card-horizontal .thumb-wrap {
    height: 100%;
    aspect-ratio: auto;
}

.video-card-horizontal .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.category-pills a {
    padding: 13px 18px;
    border-radius: 999px;
    color: #dbeafe;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.8);
    transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-pills a:hover {
    transform: translateY(-3px);
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.4);
    background: rgba(8, 145, 178, 0.16);
}

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

.ranking-list .video-card-horizontal .card-link {
    grid-template-columns: 260px 1fr;
    min-height: 156px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 70px;
    background: radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.18), transparent 34%), linear-gradient(180deg, #0f172a, #020617);
}

.compact-hero h1 {
    max-width: 900px;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr 180px auto;
    gap: 12px;
    max-width: 920px;
    margin-top: 28px;
}

.search-panel input,
.search-panel select {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.88);
    color: var(--text);
    padding: 0 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-panel input:focus,
.search-panel select:focus {
    border-color: rgba(34, 211, 238, 0.66);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.search-status {
    min-height: 26px;
    color: var(--cyan);
    font-weight: 700;
}

.search-grid .video-card.is-hidden {
    display: none;
}

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

.category-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.88);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.44);
    box-shadow: var(--shadow);
}

.category-cover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111827;
}

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

.category-card-body {
    padding: 22px;
}

.category-card-body h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-card-body p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.category-card-body span {
    color: var(--cyan);
    font-weight: 800;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 12px;
    color: #cbd5e1;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.86);
}

.pagination a.is-active,
.pagination a:hover {
    color: white;
    border-color: rgba(34, 211, 238, 0.48);
    background: rgba(8, 145, 178, 0.34);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 70px;
    background-position: center;
    background-size: cover;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, #020617);
}

.detail-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #111827;
    box-shadow: var(--shadow);
}

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

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

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

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

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

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

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

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    border: 1px solid rgba(34, 211, 238, 0.26);
    background: #000;
    box-shadow: var(--shadow);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    color: white;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.88));
    cursor: pointer;
}

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

.big-play {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 42px rgba(34, 211, 238, 0.44);
    font-size: 28px;
}

.player-cover strong {
    font-size: 24px;
}

.player-cover em {
    color: #bae6fd;
    font-style: normal;
}

.content-panel {
    margin-top: 26px;
    padding: 26px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.88);
}

.content-panel h2,
.related-sidebar h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.content-panel p {
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.85;
    white-space: pre-line;
}

.related-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.related-list {
    display: grid;
    gap: 14px;
}

.related-sidebar .video-card-horizontal .card-link {
    grid-template-columns: 42% 1fr;
    min-height: 132px;
}

.related-sidebar .card-body {
    padding: 14px;
}

.related-sidebar .card-body h3 {
    font-size: 16px;
}

.related-sidebar .card-body p,
.related-sidebar .tag-row {
    display: none;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #020617;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding: 46px 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 900;
}

.footer-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.footer-grid h3 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer-grid a:not(.footer-logo) {
    display: block;
    width: fit-content;
    margin-top: 9px;
    color: var(--muted);
}

.footer-grid a:not(.footer-logo):hover {
    color: var(--cyan);
}

.footer-bottom {
    padding: 18px 16px 24px;
    border-top: 1px solid var(--line);
    color: var(--soft);
    text-align: center;
    font-size: 14px;
}

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

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

    .related-sidebar {
        position: static;
    }
}

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

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

    .hero-shell {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 52px;
    }

    .hero-thumbs {
        display: none;
    }

    .hero-bottom {
        align-items: center;
        justify-content: center;
    }

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

    .detail-hero-grid {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }

    .ranking-list .video-card-horizontal .card-link {
        grid-template-columns: 40% 1fr;
    }

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

@media (max-width: 640px) {
    .container-custom {
        width: min(100% - 24px, 1280px);
    }

    .header-inner {
        height: 68px;
    }

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

    .brand-text em {
        display: none;
    }

    .hero-shell {
        min-height: 640px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 38px;
    }

    .hero-one-line {
        font-size: 19px;
    }

    .hero-summary,
    .page-hero p,
    .detail-one-line {
        font-size: 15px;
    }

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

    .section-head {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 14px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .category-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .video-card-horizontal .card-link,
    .ranking-list .video-card-horizontal .card-link,
    .related-sidebar .video-card-horizontal .card-link {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .video-card-horizontal .thumb-wrap,
    .related-sidebar .video-card-horizontal .thumb-wrap {
        aspect-ratio: 16 / 9;
    }

    .detail-hero {
        padding-top: 58px;
    }

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

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

    .player-cover strong {
        max-width: 86%;
        text-align: center;
        font-size: 19px;
    }

    .big-play {
        width: 62px;
        height: 62px;
        font-size: 22px;
    }
}
