:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --soft: #e5e7eb;
    --sky: #0284c7;
    --sky-dark: #0369a1;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --ink: #020617;
    --shadow: 0 20px 50px rgb(15 23 42 / 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, 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: 80;
    background: rgb(255 255 255 / 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgb(226 232 240 / 0.86);
}

.site-header-inner {
    width: min(1240px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--orange));
    box-shadow: 0 12px 28px rgb(2 132 199 / 0.28);
}

.brand-name {
    font-size: 20px;
}

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

.nav-link {
    padding: 10px 16px;
    color: #475569;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: var(--sky);
    box-shadow: 0 10px 26px rgb(2 132 199 / 0.24);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #e0f2fe;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--sky-dark);
    border-radius: 99px;
}

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

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

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

.hero-backdrop,
.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgb(249 115 22 / 0.32), transparent 34%),
        linear-gradient(90deg, rgb(2 6 23 / 0.96), rgb(2 6 23 / 0.72) 45%, rgb(2 6 23 / 0.18)),
        linear-gradient(0deg, rgb(2 6 23 / 0.96), transparent 46%);
}

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

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

.hero-kicker,
.section-kicker,
.page-hero p {
    margin: 0 0 12px;
    color: #fed7aa;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 60px rgb(0 0 0 / 0.4);
}

.hero-feature-name {
    margin-top: 18px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 900;
}

.hero-copy p:not(.hero-kicker) {
    max-width: 760px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: clamp(16px, 2vw, 20px);
}

.hero-tags,
.tag-cloud,
.category-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span,
.tag-cloud span,
.category-chip-row a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #075985;
    background: #e0f2fe;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    color: #ffffff;
    background: rgb(255 255 255 / 0.16);
    border: 1px solid rgb(255 255 255 / 0.18);
    backdrop-filter: blur(12px);
}

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

.primary-button,
.ghost-button,
.home-search button,
.filter-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button,
.home-search button,
.filter-box button {
    color: #ffffff;
    background: var(--sky);
    box-shadow: 0 18px 34px rgb(2 132 199 / 0.28);
}

.primary-button:hover,
.home-search button:hover,
.filter-box button:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--sky-dark);
    box-shadow: 0 22px 42px rgb(2 132 199 / 0.35);
}

.ghost-button {
    color: #ffffff;
    background: rgb(255 255 255 / 0.14);
    border: 1px solid rgb(255 255 255 / 0.2);
    backdrop-filter: blur(12px);
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgb(255 255 255 / 0.23);
}

.hero-cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 36px 80px rgb(0 0 0 / 0.42);
    transform: rotate(2deg);
}

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

.hero-cover span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    color: var(--sky);
    background: rgb(255 255 255 / 0.92);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    font-size: 28px;
    box-shadow: 0 20px 46px rgb(0 0 0 / 0.24);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgb(255 255 255 / 0.18);
    backdrop-filter: blur(16px);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 18px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.42);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-dot.is-active {
    width: 46px;
    background: #ffffff;
}

.search-band {
    margin-top: -42px;
    position: relative;
    z-index: 10;
}

.search-band-inner,
.content-section,
.footer-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.search-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: center;
    gap: 28px;
    padding: 28px;
    color: #0f172a;
    background: rgb(255 255 255 / 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.search-band h2,
.search-band p {
    margin: 0;
}

.search-band p {
    margin-top: 6px;
    color: var(--muted);
}

.home-search,
.filter-box {
    display: flex;
    gap: 12px;
}

.home-search input,
.filter-box input,
.filter-box select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    outline: 0;
    transition: 0.2s ease;
}

.home-search input:focus,
.filter-box input:focus,
.filter-box select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgb(14 165 233 / 0.12);
}

.content-section {
    padding: 78px 0 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p:not(.section-kicker) {
    margin: 10px 0 0;
    color: var(--muted);
}

.section-more {
    color: var(--sky-dark);
    font-weight: 900;
}

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgb(15 23 42 / 0.08);
    transition: 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgb(15 23 42 / 0.16);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.movie-card-medium .movie-poster {
    height: 280px;
}

.movie-card-large .movie-poster {
    height: 360px;
}

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

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(2 6 23 / 0.1), rgb(2 6 23 / 0.24) 44%, rgb(2 6 23 / 0.76));
}

.movie-badge,
.movie-score {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.movie-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: rgb(249 115 22 / 0.92);
}

.movie-score {
    left: 12px;
    bottom: 12px;
    padding: 5px 9px;
    background: rgb(2 132 199 / 0.9);
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--sky);
    background: rgb(255 255 255 / 0.93);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: 0.25s ease;
}

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

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

.movie-card-body h3 {
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--sky-dark);
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.movie-meta span {
    padding: 3px 8px;
    background: #f1f5f9;
    border-radius: 999px;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: end;
    padding: 20px;
    color: #ffffff;
    border-radius: 26px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    transition: transform 0.45s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(2 6 23 / 0.88), transparent 62%);
}

.category-tile div {
    position: relative;
    z-index: 2;
}

.category-tile h3,
.category-tile p {
    margin: 0;
}

.category-tile h3 {
    font-size: 22px;
    font-weight: 950;
}

.category-tile p {
    margin-top: 8px;
    color: #e0f2fe;
    font-size: 14px;
}

.ranking-panel {
    padding-bottom: 86px;
}

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

.rank-item,
.ranking-row {
    display: grid;
    align-items: center;
    gap: 14px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 22px rgb(15 23 42 / 0.06);
    transition: 0.2s ease;
}

.rank-item {
    grid-template-columns: 44px 62px minmax(0, 1fr) auto;
    padding: 12px;
    border-radius: 20px;
}

.rank-item:hover,
.ranking-row:hover {
    transform: translateY(-3px);
    border-color: #bae6fd;
    box-shadow: 0 18px 40px rgb(15 23 42 / 0.12);
}

.rank-num,
.ranking-number {
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--sky));
    font-weight: 950;
    border-radius: 14px;
}

.rank-num {
    width: 38px;
    height: 38px;
}

.rank-item img {
    width: 62px;
    height: 82px;
    object-fit: cover;
    border-radius: 14px;
}

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

.rank-score,
.ranking-score {
    color: var(--orange-dark);
    font-weight: 950;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--orange));
}

.page-hero {
    min-height: 330px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 72px 16px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgb(255 255 255 / 0.26), transparent 30%),
        radial-gradient(circle at 85% 15%, rgb(255 255 255 / 0.18), transparent 28%);
}

.page-hero > div {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 950;
    letter-spacing: -0.05em;
}

.page-hero span {
    display: block;
    margin-top: 14px;
    color: #f8fafc;
    font-size: 18px;
}

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

.category-card {
    overflow: hidden;
    color: #0f172a;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

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

.category-card-posters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
    background: #e0f2fe;
}

.category-card-posters img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
}

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

.category-card-body h2,
.category-card-body p {
    margin: 0;
}

.category-card-body p {
    margin: 8px 0 16px;
    color: var(--muted);
}

.category-card-body span {
    color: var(--sky-dark);
    font-weight: 950;
}

.filter-panel {
    padding-top: 42px;
}

.filter-box {
    flex-wrap: wrap;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    box-shadow: 0 14px 36px rgb(15 23 42 / 0.08);
}

.filter-box input {
    flex: 2 1 260px;
}

.filter-box select {
    flex: 1 1 160px;
}

.filter-box button {
    flex: 0 0 auto;
}

.category-chip-row {
    margin-top: 18px;
}

.empty-state {
    display: none;
    padding: 60px 20px;
    color: #64748b;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
}

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

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

.ranking-row {
    grid-template-columns: 56px 76px minmax(0, 1fr) auto;
    padding: 12px 18px;
    border-radius: 20px;
}

.ranking-number {
    width: 42px;
    height: 42px;
}

.ranking-row img {
    width: 76px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
}

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

.ranking-info strong,
.ranking-info em {
    display: block;
}

.ranking-info strong {
    overflow: hidden;
    font-size: 18px;
    font-style: normal;
    font-weight: 950;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-info em {
    margin-top: 6px;
    overflow: hidden;
    color: #64748b;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail-hero {
    min-height: 520px;
    background-position: center;
    background-size: cover;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    color: #dbeafe;
    font-weight: 800;
}

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

.detail-hero h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.detail-hero p {
    max-width: 820px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: clamp(16px, 2vw, 22px);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.detail-meta span {
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffffff;
    background: rgb(255 255 255 / 0.16);
    border: 1px solid rgb(255 255 255 / 0.2);
    font-weight: 900;
    backdrop-filter: blur(10px);
}

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

.player-panel,
.movie-article,
.info-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.player-panel {
    padding: 12px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #020617;
    border-radius: 22px;
}

.video-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
    z-index: 1;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    background: linear-gradient(180deg, rgb(2 6 23 / 0.42), rgb(2 6 23 / 0.7));
    border: 0;
    cursor: pointer;
}

.play-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.play-circle {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--sky);
    background: #ffffff;
    border-radius: 999px;
    font-size: 30px;
    box-shadow: 0 24px 60px rgb(0 0 0 / 0.32);
}

.play-overlay strong {
    font-size: 18px;
    letter-spacing: 0.04em;
}

.movie-article {
    margin-top: 28px;
    padding: 30px;
}

.movie-article h2,
.info-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.02em;
}

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

.detail-side {
    display: grid;
    align-content: start;
    gap: 22px;
}

.detail-poster {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.info-card {
    padding: 24px;
}

.info-card dl {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px 14px;
    margin: 0 0 20px;
}

.info-card dt {
    color: #64748b;
    font-weight: 900;
}

.info-card dd {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
}

.related-grid {
    padding-bottom: 86px;
}

.compact-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.compact-card img {
    width: 42px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
}

.site-footer {
    margin-top: 80px;
    color: #cbd5e1;
    background: #020617;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 54px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.site-footer p {
    max-width: 620px;
    margin: 14px 0 0;
    color: #94a3b8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.footer-links a {
    color: #e0f2fe;
    font-weight: 800;
}

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

.footer-bottom {
    padding: 18px 16px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgb(148 163 184 / 0.18);
}

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

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

    .hero-content,
    .detail-layout,
    .search-band-inner {
        grid-template-columns: 1fr;
    }

    .hero-cover {
        display: none;
    }

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

@media (max-width: 760px) {
    .site-header-inner {
        height: 64px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

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

    .hero-arrow {
        display: none;
    }

    .hero-actions,
    .home-search,
    .filter-box {
        flex-direction: column;
    }

    .search-band {
        margin-top: 0;
    }

    .content-section {
        padding-top: 54px;
    }

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

    .movie-grid,
    .category-grid,
    .category-card-grid,
    .rank-list {
        grid-template-columns: 1fr;
    }

    .movie-card-medium .movie-poster,
    .movie-card-large .movie-poster {
        height: 360px;
    }

    .ranking-row {
        grid-template-columns: 44px 58px minmax(0, 1fr);
    }

    .ranking-score {
        grid-column: 3;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 17px;
    }

    .hero-content,
    .detail-hero-inner,
    .search-band-inner,
    .movie-article,
    .info-card {
        width: min(100% - 24px, 1240px);
    }

    .movie-card-medium .movie-poster,
    .movie-card-large .movie-poster {
        height: 300px;
    }
}
