*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --dark: #020617;
    --accent: #10b981;
    --accent-deep: #0f766e;
    --accent-soft: rgba(16, 185, 129, 0.12);
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

body.menu-open {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 26px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(14px);
}

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

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

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #0f766e);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
    font-size: 16px;
    transform: translateZ(0);
}

.brand:hover .brand-mark {
    transform: scale(1.05);
}

.brand-text {
    font-size: 21px;
    background: linear-gradient(135deg, #059669, #0f766e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #334155;
    font-weight: 650;
}

.desktop-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #10b981, #0f766e);
    transition: width 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #059669;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #0f172a;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 22px 20px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.mobile-nav a {
    display: block;
    padding: 12px 6px;
    color: #334155;
    font-weight: 650;
}

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

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

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: radial-gradient(circle at 30% 20%, #115e59, #020617 65%);
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.52) 44%, rgba(2, 6, 23, 0.2)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.08) 60%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    right: 24px;
    bottom: 70px;
    max-width: 760px;
    color: #ffffff;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #059669;
}

.hero-kicker {
    color: #86efac;
}

.hero h1 {
    margin: 12px 0 16px;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 650;
}

.tag-row span {
    background: #ecfdf5;
    color: #047857;
}

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

.primary-btn,
.ghost-btn,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 20px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #0f766e);
    box-shadow: 0 16px 34px rgba(16, 185, 129, 0.32);
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 42px;
    display: flex;
    gap: 8px;
}

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

.hero-dots button.active {
    width: 34px;
    background: #10b981;
}

.page-shell {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 64px;
}

.home-search {
    background: linear-gradient(180deg, #020617, #f8fafc 58%);
    padding: 0 20px 24px;
}

.home-search-inner {
    width: min(1280px, 100%);
    margin: -36px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.5fr;
    gap: 26px;
    align-items: center;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(16px);
}

.home-search h2,
.page-hero h1 {
    margin: 6px 0 8px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.home-search p,
.page-hero p,
.section-heading p,
.category-card p,
.footer-brand p {
    margin: 0;
    color: var(--muted);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(120px, 0.48fr));
    gap: 12px;
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
    outline: 0;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.13);
}

.home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

.main-column,
.side-column {
    min-width: 0;
}

.side-column {
    position: sticky;
    top: 88px;
}

.content-section + .content-section {
    margin-top: 58px;
}

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

.section-heading h2 {
    margin: 6px 0 4px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.section-more {
    min-height: 38px;
    color: #059669;
    background: #ecfdf5;
}

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

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

.movie-card {
    position: relative;
    min-width: 0;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(16, 185, 129, 0.36);
}

.poster-link,
.poster-frame {
    display: block;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: radial-gradient(circle at 30% 20%, #34d399, #0f172a 74%);
}

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

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

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

.card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(16, 185, 129, 0.9);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.type-badge,
.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    font-size: 12px;
}

.rank-badge {
    background: linear-gradient(135deg, #10b981, #0f766e);
}

.movie-card-body {
    padding: 15px;
}

.movie-card h3 {
    margin: 0;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: #059669;
}

.card-meta {
    margin: 8px 0 8px;
    color: var(--muted);
    font-size: 13px;
}

.card-desc {
    min-height: 44px;
    margin: 0 0 12px;
    color: #475569;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}

.compact .movie-card-body {
    padding: 13px;
}

.compact h3 {
    min-height: 43px;
    font-size: 16px;
}

.compact .card-desc {
    display: none;
}

.ranking-card {
    border-radius: 24px;
    padding: 22px;
    color: #ffffff;
    background: radial-gradient(circle at 0 0, rgba(16, 185, 129, 0.38), transparent 36%), #020617;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ranking-head span {
    color: #86efac;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.ranking-head h2 {
    margin: 5px 0 18px;
    font-size: 26px;
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}

.rank-num {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #022c22;
    background: #86efac;
    font-weight: 900;
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info strong {
    color: #ffffff;
}

.rank-info em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-style: normal;
}

.rank-score {
    color: #86efac;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(28px, 5vw, 54px);
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.34), transparent 42%),
        linear-gradient(135deg, #020617, #0f172a 60%, #064e3b);
    box-shadow: var(--shadow);
    margin-bottom: 34px;
}

.page-hero .section-kicker,
.page-hero p {
    color: rgba(255, 255, 255, 0.76);
}

.page-hero h1 {
    color: #ffffff;
    max-width: 900px;
}

.page-hero p {
    max-width: 720px;
    font-size: 18px;
}

.page-hero .filter-panel {
    margin-top: 28px;
    max-width: 1060px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

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

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 320px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-glow {
    position: absolute;
    inset: auto -30% -50% -30%;
    height: 170px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.34), transparent 66%);
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 168px;
    overflow: hidden;
    background: #0f172a;
}

.category-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

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

.category-card h2 {
    margin: 8px 0;
    font-size: 25px;
}

.category-tabs {
    margin-bottom: 28px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.category-tabs a {
    white-space: nowrap;
    padding: 9px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    border: 1px solid var(--line);
    font-weight: 750;
}

.category-tabs a.active,
.category-tabs a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #0f766e);
    border-color: transparent;
}

.top-features {
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.top-feature {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: 20px;
    color: #ffffff;
    background: #020617;
}

.top-feature img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: 0.6;
}

.top-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.86));
}

.top-feature span,
.top-feature strong,
.top-feature em {
    position: relative;
    z-index: 1;
    display: block;
    margin-left: 18px;
    margin-right: 18px;
}

.top-feature span {
    margin-top: 18px;
    color: #86efac;
    font-weight: 900;
}

.top-feature strong {
    margin-top: 92px;
    font-size: 21px;
    line-height: 1.2;
}

.top-feature em {
    color: #bbf7d0;
    font-style: normal;
    font-weight: 900;
}

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

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
    gap: 26px;
    align-items: stretch;
}

.player-shell {
    position: relative;
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    height: 100%;
    min-height: 360px;
    aspect-ratio: 16 / 9;
    background: #000000;
    object-fit: contain;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.72));
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    transition: opacity 0.2s ease;
}

.player-icon {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #0f766e);
    box-shadow: 0 18px 42px rgba(16, 185, 129, 0.34);
    font-size: 30px;
}

.player-loading,
.player-error {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    padding: 12px 18px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.78);
}

.player-shell.is-loading .player-loading,
.player-shell.has-error .player-error {
    display: block;
}

.player-shell.is-playing .player-start,
.player-shell.is-ready .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-info {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-soft);
}

.detail-poster {
    width: 150px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    background: radial-gradient(circle at 30% 20%, #34d399, #0f172a 74%);
}

.detail-info h1 {
    margin: 6px 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin: 0 0 16px;
    color: #475569;
    font-size: 16px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.detail-meta span {
    padding: 7px 10px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 750;
    font-size: 13px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
    margin-bottom: 54px;
}

.article-card {
    padding: 26px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-soft);
}

.article-card h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.article-card p {
    margin: 0;
    color: #334155;
    font-size: 16px;
}

.empty-state {
    display: none;
    margin-top: 18px;
    padding: 24px;
    border-radius: 18px;
    text-align: center;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    color: var(--muted);
    font-weight: 750;
}

.empty-state.is-visible {
    display: block;
}

.site-footer {
    color: #cbd5e1;
    background: #020617;
}

.footer-wrap {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 34px;
}

.footer-logo .brand-text {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    margin-top: 14px;
    max-width: 520px;
    color: #94a3b8;
}

.footer-links {
    display: grid;
    gap: 9px;
    align-content: start;
}

.footer-links strong {
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-links a:hover {
    color: #86efac;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

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

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

    .side-column {
        position: static;
    }
}

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        left: 20px;
        bottom: 78px;
    }

    .hero-dots {
        left: 20px;
        right: auto;
    }

    .home-search-inner,
    .filter-panel,
    .footer-wrap,
    .detail-info,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-info {
        align-items: start;
    }
}

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

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

    .page-shell {
        width: min(100% - 28px, 1280px);
        padding-top: 30px;
    }

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

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

    .card-desc,
    .tag-row {
        display: none;
    }

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

    .player-shell,
    .movie-video {
        min-height: 220px;
    }

    .detail-poster {
        width: 118px;
    }
}
