:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --blue-600: #2563eb;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--slate-800);
    background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 52%, var(--slate-50) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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: 50;
    background: linear-gradient(90deg, var(--sky-500), var(--blue-600));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.28);
}

.nav-shell {
    width: min(var(--max-width), calc(100% - 32px));
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--sky-600);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

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

.nav-menu > a,
.nav-dropdown > button {
    border: 0;
    padding: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-weight: 650;
}

.nav-menu > a:hover,
.nav-menu > a.is-active,
.nav-dropdown > button:hover {
    color: var(--sky-100);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 34px;
    right: 0;
    width: 184px;
    padding: 8px;
    display: grid;
    gap: 2px;
    border-radius: 14px;
    background: var(--white);
    color: var(--slate-700);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s ease;
}

.dropdown-panel a {
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.dropdown-panel a:hover {
    color: var(--sky-700);
    background: var(--sky-50);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-search,
.mobile-search {
    display: flex;
    align-items: center;
    margin-left: 4px;
}

.top-search input,
.mobile-search input {
    width: 170px;
    border: 0;
    outline: 0;
    padding: 8px 14px;
    border-radius: 999px 0 0 999px;
    background: var(--white);
    color: var(--slate-800);
}

.top-search button,
.mobile-search button {
    border: 0;
    padding: 8px 15px;
    border-radius: 0 999px 999px 0;
    color: var(--white);
    background: var(--sky-700);
    cursor: pointer;
}

.top-search button:hover,
.mobile-search button:hover {
    background: var(--slate-800);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel a {
    display: block;
    padding: 10px 0;
    font-weight: 650;
}

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

main {
    flex: 1;
}

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.90), rgba(15, 23, 42, 0.52) 48%, rgba(15, 23, 42, 0.12));
}

.hero-copy {
    position: absolute;
    left: max(24px, calc((100vw - var(--max-width)) / 2));
    right: 24px;
    bottom: 64px;
    max-width: 760px;
    z-index: 2;
    color: var(--white);
}

.hero-pills,
.detail-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-pills span,
.hero-pills a,
.detail-pills span,
.detail-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 700;
}

.hero-pills a,
.detail-pills a {
    background: var(--sky-500);
}

.hero-copy h1 {
    margin: 0 0 18px;
    max-width: 720px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 28px;
    color: #e2e8f0;
    font-size: 19px;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.22s ease;
}

.primary-btn {
    color: var(--white);
    background: var(--sky-500);
    box-shadow: 0 14px 30px rgba(14, 165, 233, 0.36);
}

.primary-btn:hover {
    background: var(--sky-600);
    transform: translateY(-2px);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(12px);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.34);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    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.54);
    cursor: pointer;
    transition: 0.22s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--white);
}

.home-search-band {
    width: min(var(--max-width), calc(100% - 32px));
    margin: -34px auto 34px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.home-search-band h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.home-search-band p {
    margin: 0;
    color: var(--slate-500);
}

.home-search-band form {
    display: flex;
}

.home-search-band input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--slate-200);
    padding: 14px 16px;
    border-radius: 999px 0 0 999px;
    outline: 0;
}

.home-search-band button {
    border: 0;
    padding: 0 22px;
    border-radius: 0 999px 999px 0;
    color: var(--white);
    background: var(--sky-600);
    cursor: pointer;
    font-weight: 800;
}

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

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

.section-head h2 {
    margin: 4px 0 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
}

.section-head a {
    color: var(--sky-700);
    font-weight: 800;
}

.compact-head {
    margin-bottom: 18px;
}

.section-kicker {
    display: inline-flex;
    color: var(--sky-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.movie-grid,
.featured-grid,
.category-grid,
.category-big-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-200);
}

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

.movie-card:hover .poster-wrap img,
.wide-card:hover img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.68));
    opacity: 0.66;
}

.poster-play,
.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    color: var(--white);
    background: var(--sky-500);
    box-shadow: 0 16px 35px rgba(14, 165, 233, 0.34);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: 0.25s ease;
}

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

.card-badge,
.card-year {
    position: absolute;
    z-index: 2;
    top: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 3px 10px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.card-badge {
    left: 12px;
    background: var(--sky-500);
}

.card-year {
    right: 12px;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(10px);
}

.card-body {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.card-body strong {
    color: var(--slate-900);
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-body span {
    min-height: 44px;
    color: var(--slate-500);
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-body em {
    color: var(--sky-700);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.sky-panel {
    width: min(var(--max-width), calc(100% - 32px));
    margin-top: 18px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--sky-100), #dbeafe);
}

.scroll-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
}

.wide-card {
    position: relative;
    display: flex;
    flex: 0 0 330px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    scroll-snap-align: start;
}

.wide-thumb {
    position: relative;
    flex: 0 0 132px;
    min-height: 138px;
    overflow: hidden;
}

.wide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.wide-info {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 16px;
}

.wide-info strong {
    color: var(--slate-900);
    font-size: 18px;
    line-height: 1.32;
}

.wide-info em {
    color: var(--slate-500);
    font-size: 14px;
    font-style: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pill {
    justify-self: start;
    padding: 3px 10px;
    border-radius: 999px;
    color: var(--sky-700);
    background: var(--sky-100);
    font-size: 12px;
    font-weight: 900;
}

.two-column-block,
.ranking-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 28px;
    align-items: start;
}

.rank-list,
.stack-list {
    display: grid;
    gap: 12px;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 78px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: 0.22s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card);
}

.rank-number {
    color: var(--sky-600);
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

.rank-item img {
    width: 78px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-content {
    display: grid;
    min-width: 0;
}

.rank-content strong {
    overflow: hidden;
    color: var(--slate-900);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-content em {
    overflow: hidden;
    color: var(--slate-500);
    font-size: 13px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.category-tile,
.category-big-card {
    display: grid;
    gap: 8px;
    min-height: 128px;
    padding: 22px;
    border-radius: var(--radius-lg);
    color: var(--slate-800);
    background: linear-gradient(135deg, var(--white), var(--sky-50));
    box-shadow: var(--shadow-card);
    transition: 0.22s ease;
}

.category-tile:hover,
.category-big-card:hover {
    color: var(--sky-700);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.category-tile span,
.category-big-card strong {
    font-size: 20px;
    font-weight: 900;
}

.category-tile em,
.category-big-card em {
    color: var(--slate-500);
    font-size: 14px;
    font-style: normal;
}

.page-hero {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 34px auto 0;
    padding: 54px;
    border-radius: 32px;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(125, 211, 252, 0.46), transparent 34%), linear-gradient(135deg, var(--sky-600), var(--slate-900));
    box-shadow: var(--shadow-soft);
}

.small-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
}

.small-hero p {
    max-width: 720px;
    margin: 0;
    color: #e0f2fe;
    font-size: 18px;
}

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

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--white);
    background: var(--sky-500);
    font-weight: 900;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.wide-filter {
    grid-template-columns: 1fr 160px 160px 170px;
}

.filter-bar label {
    display: grid;
    gap: 6px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 800;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 11px 12px;
    color: var(--slate-800);
    background: var(--slate-50);
    outline: 0;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

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

.detail-hero {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) 1fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    color: var(--white);
    background: radial-gradient(circle at 15% 20%, rgba(125, 211, 252, 0.38), transparent 34%), linear-gradient(135deg, var(--slate-900), var(--sky-700));
    box-shadow: var(--shadow-soft);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.38);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #bfdbfe;
    font-size: 14px;
}

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

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.1;
}

.detail-copy p {
    max-width: 720px;
    margin: 0 0 20px;
    color: #e2e8f0;
    font-size: 18px;
}

.detail-meta {
    display: grid;
    gap: 8px;
    margin: 0 0 26px;
    color: #dbeafe;
    font-weight: 700;
}

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

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--slate-900);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16 / 9;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.20), rgba(15, 23, 42, 0.62));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--sky-500);
    box-shadow: 0 22px 55px rgba(14, 165, 233, 0.38);
    font-size: 34px;
}

.video-shell.is-started .play-overlay,
.video-shell.is-playing .play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.article-section {
    display: grid;
    gap: 14px;
    padding-top: 20px;
}

.article-section h2 {
    margin: 12px 0 0;
    color: var(--slate-900);
    font-size: 28px;
}

.article-section p {
    margin: 0;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    color: var(--slate-700);
    font-size: 17px;
}

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

.tag-row span {
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--sky-700);
    background: var(--sky-100);
    font-weight: 800;
}

.large-rank {
    align-self: start;
}

.site-footer {
    margin-top: 46px;
    padding: 46px 0 24px;
    color: #cbd5e1;
    background: linear-gradient(90deg, var(--slate-800), var(--slate-900));
}

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

.footer-brand {
    color: var(--white);
}

.site-footer p {
    max-width: 420px;
    margin: 16px 0 0;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 18px;
}

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

.footer-links a:hover {
    color: var(--sky-100);
}

.copyright {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.14);
    text-align: center;
    font-size: 14px;
}

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

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

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

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

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

    .menu-toggle {
        display: block;
    }

    .site-header.is-open .mobile-panel {
        display: block;
    }

    .hero {
        height: 500px;
    }

    .hero-copy {
        bottom: 52px;
    }

    .home-search-band,
    .two-column-block,
    .ranking-layout,
    .detail-hero,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-search-band {
        margin-top: 18px;
    }

    .featured-grid,
    .movie-grid,
    .related-grid,
    .category-big-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 620px) {
    .nav-shell {
        height: 58px;
    }

    .brand {
        font-size: 18px;
    }

    .hero {
        height: 480px;
    }

    .hero-copy {
        left: 18px;
        right: 18px;
        bottom: 46px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-control {
        display: none;
    }

    .home-search-band,
    .page-hero,
    .detail-hero,
    .sky-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .home-search-band form {
        display: grid;
        gap: 10px;
    }

    .home-search-band input,
    .home-search-band button {
        width: 100%;
        border-radius: 999px;
    }

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

    .featured-grid,
    .movie-grid,
    .related-grid,
    .category-grid,
    .category-big-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        flex-basis: 292px;
    }

    .rank-item {
        grid-template-columns: 38px 68px minmax(0, 1fr);
    }

    .rank-item img {
        width: 68px;
        height: 52px;
    }

    .detail-poster img {
        aspect-ratio: 16 / 10;
    }

    .play-overlay span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
