:root {
    color-scheme: dark;
    --bg: #0f172a;
    --bg-deep: #020617;
    --panel: #1e293b;
    --panel-soft: rgba(30, 41, 59, 0.72);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --orange: #f97316;
    --amber: #f59e0b;
    --yellow: #facc15;
    --cyan: #22d3ee;
    --rose: #fb7185;
    --green: #34d399;
    --blue: #60a5fa;
    --shadow: 0 28px 80px rgba(2, 6, 23, 0.45);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.28);
}

.site-nav {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 10px 28px rgba(239, 68, 68, 0.28);
    font-size: 14px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 14px;
    color: #cbd5e1;
    font-weight: 700;
    transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: #2563eb;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #e2e8f0;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.hero-carousel {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: linear-gradient(90deg, #ea580c, #f59e0b, #eab308);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    filter: blur(2px) saturate(1.2);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 42%, rgba(250, 204, 21, 0.24), transparent 30%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.55), rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.72)),
        linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0) 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 54px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #fffbeb;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 0.96;
    font-weight: 950;
    text-shadow: 0 18px 48px rgba(2, 6, 23, 0.4);
}

.hero-copy p,
.page-hero p {
    margin: 0 0 28px;
    color: #fff7ed;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.7;
}

.hero-tags,
.genre-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-tags span,
.genre-tags span,
.detail-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 700;
}

.hero-actions,
.journey-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.ghost-button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
    color: var(--orange);
    background: #fff;
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.22);
}

.ghost-button {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.small-button {
    min-height: 40px;
    color: #fff;
    background: rgba(59, 130, 246, 0.95);
}

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

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: 0.3s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.hero-poster span,
.card-score,
.rank-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    color: #fff;
}

.hero-poster span {
    right: 16px;
    top: 16px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

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

.hero-dot.active {
    width: 34px;
    background: #fff;
}

.section {
    padding: 72px 0;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.section-heading a {
    color: #e0f2fe;
    font-weight: 800;
}

.band {
    border-block: 1px solid var(--line);
}

.band-cyan {
    background: linear-gradient(135deg, rgba(19, 78, 74, 0.96), rgba(22, 78, 99, 0.96), rgba(30, 64, 175, 0.9));
}

.band-rose {
    background: linear-gradient(135deg, rgba(136, 19, 55, 0.96), rgba(157, 23, 77, 0.94), rgba(127, 29, 29, 0.96));
}

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

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

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

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

.movie-card {
    min-width: 0;
    background: rgba(30, 41, 59, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.24);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(250, 204, 21, 0.28);
    box-shadow: 0 24px 70px rgba(245, 158, 11, 0.18);
}

.card-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111827;
}

.card-cover img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card.score .card-cover img,
.movie-card.related .card-cover img,
.movie-card.small .card-cover img {
    aspect-ratio: 3 / 4;
}

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

.cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.7), transparent 55%);
    opacity: 0.9;
}

.card-score {
    right: 12px;
    top: 12px;
    min-width: 42px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.95);
    font-size: 13px;
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f43f5e, #f97316);
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.card-body h3 a:hover {
    color: var(--yellow);
}

.card-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-meta,
.card-tags,
.row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
}

.card-meta span,
.card-tags a,
.card-tags span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
}

.card-tags a {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.16);
}

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 330px);
    gap: 24px;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scrollbar-width: thin;
}

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

.category-card {
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #16a34a, #047857);
    box-shadow: 0 18px 40px rgba(5, 150, 105, 0.16);
    transition: 0.24s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 70px rgba(16, 185, 129, 0.26);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.24;
}

.category-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 80%);
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
}

.category-card strong {
    margin-bottom: 8px;
    font-size: 24px;
}

.category-card em {
    color: #d1fae5;
    font-style: normal;
    font-size: 13px;
    line-height: 1.6;
}

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

.movie-row {
    display: grid;
    grid-template-columns: auto 120px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.76);
    transition: 0.22s ease;
}

.movie-row:hover {
    transform: translateX(4px);
    background: rgba(30, 41, 59, 0.98);
    border-color: rgba(96, 165, 250, 0.35);
}

.row-rank {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(96, 165, 250, 0.16);
    color: #bfdbfe;
    font-weight: 950;
}

.row-thumb {
    overflow: hidden;
    border-radius: 16px;
}

.row-thumb img {
    width: 120px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.row-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.row-info h3 a:hover {
    color: var(--blue);
}

.row-info p {
    margin: 0 0 10px;
    color: #cbd5e1;
    line-height: 1.7;
}

.row-score {
    min-width: 56px;
    color: #facc15;
    font-size: 22px;
    font-weight: 950;
    text-align: right;
}

.journey,
.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 52px auto 0;
    padding: 72px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 70% 30%, rgba(250, 204, 21, 0.24), transparent 32%),
        linear-gradient(135deg, rgba(146, 64, 14, 0.96), rgba(154, 52, 18, 0.96), rgba(127, 29, 29, 0.98));
    box-shadow: var(--shadow);
}

.journey {
    margin-bottom: 70px;
    text-align: center;
}

.journey h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
}

.journey p {
    margin: 0 auto 26px;
    max-width: 680px;
    color: #fed7aa;
    font-size: 20px;
    line-height: 1.7;
}

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

.slim-hero,
.category-hero,
.search-hero,
.ranking-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.category-hero {
    background:
        radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.2), transparent 35%),
        linear-gradient(135deg, #164e63, #1d4ed8, #0f172a);
}

.search-hero {
    background:
        radial-gradient(circle at 70% 30%, rgba(52, 211, 153, 0.2), transparent 35%),
        linear-gradient(135deg, #064e3b, #0f766e, #0f172a);
}

.ranking-hero {
    background:
        radial-gradient(circle at 70% 30%, rgba(251, 113, 133, 0.22), transparent 35%),
        linear-gradient(135deg, #881337, #9f1239, #0f172a);
}

.filter-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 150px 150px;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 52px rgba(2, 6, 23, 0.24);
}

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

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: #fff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    outline: none;
    background: rgba(2, 6, 23, 0.66);
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(96, 165, 250, 0.72);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
}

.overview-stack {
    display: grid;
    gap: 30px;
}

.category-overview-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(30, 41, 59, 0.72);
}

.category-overview-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.category-overview-head h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.category-overview-head p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.7;
}

.detail-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 22%, rgba(249, 115, 22, 0.24), transparent 36%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: #bae6fd;
    font-size: 14px;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: #fff;
}

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.02;
}

.detail-one-line {
    margin: 0 0 22px;
    color: #e2e8f0;
    font-size: 20px;
    line-height: 1.8;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.42);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.22s ease;
}

.player-button span {
    margin-left: 6px;
    font-size: 34px;
}

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

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

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

.detail-article,
.detail-side {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(30, 41, 59, 0.72);
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.detail-article p {
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.95;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.info-list dt {
    color: #94a3b8;
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    color: #fff;
}

.side-links {
    display: grid;
    gap: 10px;
}

.side-links a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: #e2e8f0;
}

.side-links a:hover {
    color: var(--yellow);
}

.side-links em {
    color: #facc15;
    font-style: normal;
    white-space: nowrap;
}

.site-footer {
    margin-top: 72px;
    padding: 52px 0 24px;
    background: #020617;
    border-top: 1px solid var(--line);
}

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

.footer-grid p {
    max-width: 460px;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #64748b;
    font-size: 14px;
}

[data-card].hidden {
    display: none;
}

@media (max-width: 1024px) {
    .hero-content,
    .detail-hero,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

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

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

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

    .menu-toggle {
        display: block;
    }

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

    .hero-carousel {
        height: 620px;
    }

    .hero-content,
    .page-hero,
    .journey,
    .detail-hero {
        width: min(100% - 24px, 1180px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .page-hero,
    .journey,
    .detail-hero {
        padding: 32px 22px;
        border-radius: 26px;
    }

    .section {
        padding: 46px 0;
    }

    .section-heading,
    .category-overview-head {
        align-items: start;
        flex-direction: column;
    }

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

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

    .movie-row {
        grid-template-columns: 90px minmax(0, 1fr);
        align-items: start;
    }

    .movie-row .row-rank,
    .movie-row .row-score {
        display: none;
    }

    .row-thumb img {
        width: 90px;
        aspect-ratio: 3 / 4;
    }

    .row-info h3 {
        font-size: 17px;
    }

    .row-info p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

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