:root {
    color-scheme: light;
    --amber: #d97706;
    --amber-dark: #92400e;
    --green: #15803d;
    --green-dark: #14532d;
    --blue: #1d4ed8;
    --ink: #1f2937;
    --muted: #667085;
    --line: rgba(148, 163, 184, 0.28);
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 22px 55px rgba(31, 41, 55, 0.13);
    --soft-shadow: 0 12px 32px rgba(31, 41, 55, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    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;
    color: var(--ink);
    background: linear-gradient(180deg, #fffbeb 0%, #f0fdf4 52%, #eff6ff 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(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(217, 119, 6, 0.12);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand {
    font-size: 22px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--green));
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.28);
}

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

.nav-link,
.mobile-link {
    color: #475467;
    font-weight: 700;
    border-radius: 999px;
    transition: 0.24s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--amber-dark);
    background: #fef3c7;
}

.header-search {
    display: flex;
    align-items: center;
    padding: 4px;
    border: 1px solid rgba(217, 119, 6, 0.22);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.08);
}

.header-search input,
.mobile-search input,
.big-search input {
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.header-search input {
    width: 180px;
    padding: 9px 12px;
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-button,
.secondary-button,
.text-button,
.clear-filters {
    border: 0;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--green));
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.24);
}

.header-search button {
    padding: 8px 14px;
    border-radius: 999px;
}

.primary-button,
.secondary-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover,
.header-search button:hover,
.big-search button:hover,
.clear-filters:hover {
    transform: translateY(-2px);
}

.secondary-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.text-button {
    color: var(--amber-dark);
    background: #fef3c7;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fef3c7;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--amber-dark);
}

.mobile-panel {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
}

.mobile-link {
    display: block;
    padding: 12px 14px;
}

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: #f8fafc;
}

.mobile-search input {
    flex: 1;
    padding: 10px;
}

.mobile-search button {
    padding: 0 16px;
    border-radius: 14px;
}

.hero-carousel {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: #fff;
    background: #111827;
}

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

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
}

.hero-bg.is-missing,
.detail-bg.is-missing,
.poster-frame img.is-missing,
.hero-poster img.is-missing,
.detail-poster img.is-missing,
.category-tile img.is-missing {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 35%, rgba(245, 158, 11, 0.28), transparent 36%),
        linear-gradient(100deg, rgba(24, 16, 6, 0.92), rgba(20, 83, 45, 0.82) 52%, rgba(30, 64, 175, 0.64));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    min-height: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 56px;
    padding: 68px 0 92px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #f59e0b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 18px 0 20px;
    font-size: clamp(42px, 8vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
    max-width: 720px;
    margin: 0;
    color: #fef3c7;
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.75;
}

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

.hero-tags {
    margin: 26px 0;
}

.hero-tags span,
.movie-tags span {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    padding: 8px 12px;
    color: #fff7ed;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
}

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

.hero-poster {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.9), rgba(21, 128, 61, 0.86));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-poster span,
.detail-poster span,
.rating-badge,
.type-badge {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    font-weight: 900;
}

.hero-poster span {
    right: 18px;
    bottom: 18px;
    padding: 10px 15px;
    color: #78350f;
    background: #fef3c7;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-prev,
.hero-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
}

.hero-dot.active {
    width: 28px;
    border-radius: 999px;
    background: #f59e0b;
}

.section-wrap {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

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

.section-heading.compact {
    align-items: center;
}

.section-heading h2,
.panel-card h2,
.filter-panel h2,
.library-toolbar h2,
.content-card h2 {
    margin: 8px 0 0;
    color: #1f2937;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.panel-card p,
.content-card p,
.category-tile p,
.movie-card-body p,
.site-footer p {
    color: var(--muted);
    line-height: 1.72;
}

.section-heading a {
    color: var(--amber-dark);
    font-weight: 900;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(217, 119, 6, 0.12);
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card-link:hover {
    border-color: rgba(217, 119, 6, 0.38);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.45), transparent 34%),
        linear-gradient(135deg, #92400e, #14532d 55%, #1e3a8a);
}

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

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

.rating-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    color: #78350f;
    background: #fef3c7;
}

.type-badge {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(17, 24, 39, 0.68);
    backdrop-filter: blur(10px);
}

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

.movie-card-body h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-body p {
    min-height: 58px;
    margin: 0 0 14px;
    font-size: 14px;
}

.movie-tags span {
    padding: 5px 9px;
    color: #92400e;
    background: #fef3c7;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    color: #7c8a9f;
    font-size: 12px;
    font-weight: 700;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.panel-card,
.filter-panel,
.content-card {
    border: 1px solid rgba(217, 119, 6, 0.13);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
}

.panel-card {
    padding: 34px;
}

.pill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.pill-cloud a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #14532d;
    font-weight: 800;
    background: #dcfce7;
    transition: 0.22s ease;
}

.pill-cloud a:hover {
    color: #fff;
    background: var(--green);
    transform: translateY(-2px);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 46px 1fr 54px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.9);
    transition: 0.22s ease;
}

.rank-row:hover {
    color: var(--amber-dark);
    background: #fef3c7;
    transform: translateX(4px);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), var(--green));
}

.rank-title {
    overflow: hidden;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-score {
    color: var(--amber-dark);
    font-weight: 900;
    text-align: right;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.30), transparent 34%),
        linear-gradient(120deg, #78350f, #14532d 55%, #1e3a8a);
}

.page-hero {
    min-height: 320px;
    display: grid;
    align-items: center;
    padding: 58px 0;
}

.page-hero > div,
.big-search {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 880px;
    margin: 14px 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #fef3c7;
    font-size: 20px;
    line-height: 1.7;
}

.search-hero {
    gap: 28px;
}

.big-search {
    display: flex;
    max-width: 860px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.big-search input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    color: #fff;
}

.big-search input::placeholder {
    color: rgba(255, 255, 255, 0.76);
}

.big-search button {
    padding: 0 28px;
    border-radius: 999px;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 24px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(135deg, #92400e, #14532d 60%, #1e3a8a);
    box-shadow: var(--soft-shadow);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.72));
}

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

.category-tile span,
.category-tile h3,
.category-tile p {
    position: relative;
    z-index: 2;
}

.category-tile span {
    display: inline-flex;
    margin-bottom: 70px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.18);
}

.category-tile h3 {
    margin: 0 0 8px;
    font-size: 26px;
}

.category-tile p {
    margin: 0;
    color: #fef3c7;
}

.library-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.filter-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    color: #475467;
    font-weight: 800;
}

.filter-panel select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
}

.clear-filters {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border-radius: 14px;
    color: #92400e;
    background: #fef3c7;
}

.library-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.library-toolbar span {
    color: var(--muted);
    font-weight: 800;
}

.empty-state {
    display: none;
    padding: 40px;
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
}

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

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

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

.detail-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(20, 83, 45, 0.82) 56%, rgba(15, 23, 42, 0.56)),
        radial-gradient(circle at 75% 25%, rgba(245, 158, 11, 0.32), transparent 36%);
}

.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 72px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

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

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

.detail-poster {
    position: relative;
    overflow: hidden;
    min-height: 454px;
    border-radius: 32px;
    background: linear-gradient(135deg, #92400e, #14532d 60%, #1e3a8a);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.36);
}

.detail-poster img {
    width: 100%;
    height: 454px;
    object-fit: cover;
}

.detail-poster span {
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    color: #78350f;
    background: #fef3c7;
}

.detail-copy h1 {
    margin: 16px 0;
    max-width: 900px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.detail-line {
    max-width: 820px;
    margin: 0;
    color: #fef3c7;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.72;
}

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
}

.detail-tags {
    margin-bottom: 26px;
}

.player-section {
    padding-bottom: 34px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #020617;
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.20), transparent 34%),
        rgba(2, 6, 23, 0.32);
    transition: opacity 0.24s ease;
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding-left: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--green));
    box-shadow: 0 22px 44px rgba(217, 119, 6, 0.28);
}

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

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 5;
    color: #fecaca;
    font-weight: 800;
    text-align: center;
    pointer-events: none;
}

.detail-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.content-card {
    padding: 30px;
}

.content-card p {
    margin: 18px 0 0;
    font-size: 17px;
}

.site-footer {
    margin-top: 40px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #1f2937, #111827);
}

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

.footer-brand {
    margin-bottom: 16px;
    color: #fff;
    font-size: 20px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #cbd5e1;
}

.site-footer a:hover {
    color: #fbbf24;
}

.footer-bottom {
    padding: 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #94a3b8;
    text-align: center;
}

@media (max-width: 1100px) {
    .header-search {
        display: none;
    }

    .hero-content,
    .detail-grid,
    .detail-content,
    .library-layout,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

    .filter-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: flex;
        justify-content: center;
        margin-left: auto;
    }

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

    .hero-carousel,
    .hero-content {
        min-height: 590px;
    }

    .hero-content {
        padding: 48px 0 84px;
    }

    .hero-copy h1,
    .detail-copy h1 {
        font-size: 44px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-line {
        font-size: 17px;
    }

    .hero-controls {
        bottom: 22px;
    }

    .section-wrap {
        padding: 48px 0;
    }

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

    .movie-grid,
    .category-grid,
    .ranking-section .ranking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-inner {
        padding-top: 24px;
    }

    .detail-grid {
        gap: 28px;
    }

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

    .detail-poster img {
        height: 390px;
    }

    .big-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .big-search input,
    .big-search button {
        width: 100%;
    }

    .big-search button {
        min-height: 48px;
    }

    .player-shell {
        border-radius: 20px;
    }
}
