:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.78);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --amber: #f59e0b;
    --amber-light: #fbbf24;
    --orange: #f97316;
    --red: #ef4444;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius: 22px;
    --radius-sm: 14px;
    --max: 1180px;
}

* {
    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:
        radial-gradient(circle at 12% 0%, rgba(245, 158, 11, 0.18), transparent 34%),
        radial-gradient(circle at 88% 14%, rgba(239, 68, 68, 0.14), transparent 30%),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(2, 6, 23, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.nav-shell {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.5);
}

.logo-text {
    display: grid;
    line-height: 1.15;
}

.logo-text strong {
    font-size: 22px;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #fde68a, var(--amber-light), #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--muted-strong);
    font-size: 14px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.16);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: #e2e8f0;
}

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

.hero-carousel,
.hero-slide {
    position: absolute;
    inset: 0;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 40%, rgba(2, 6, 23, 0.18) 72%),
        linear-gradient(0deg, #020617 0%, transparent 38%, rgba(2, 6, 23, 0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    min-height: 760px;
    padding: 160px 20px 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.hero-content h1 {
    max-width: 820px;
    margin: 18px 0 18px;
    font-size: clamp(42px, 8vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 80px rgba(0, 0, 0, 0.72);
}

.hero-content p {
    max-width: 700px;
    margin: 0;
    color: #dbeafe;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.8;
}

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

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

.hero-tags span,
.detail-tags span,
.movie-card-tags span {
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
}

.hero-tags span {
    padding: 8px 12px;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.primary-button,
.ghost-button,
.panel-link,
.category-enter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.35);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.panel-link:hover,
.category-enter:hover {
    transform: translateY(-2px);
}

.hero-panel {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 6;
    width: min(100% - 40px, var(--max));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-mini-title {
    display: grid;
    gap: 3px;
}

.hero-mini-title span {
    color: var(--amber-light);
    font-size: 12px;
    font-weight: 800;
}

.hero-mini-title strong {
    color: #fff;
    font-size: 15px;
}

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

.hero-dot {
    width: 32px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 56px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
}

.hero-arrow.prev {
    left: 28px;
}

.hero-arrow.next {
    right: 28px;
}

.search-band,
.content-section,
.page-hero,
.breadcrumb,
.detail-layout {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

.search-band {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.inner-search {
    margin-top: 22px;
}

.search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 16px;
}

.search-box input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 0 16px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.58);
    outline: none;
}

.search-box input:focus {
    border-color: rgba(245, 158, 11, 0.65);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.search-box button,
.filter-chip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.search-box button {
    min-width: 78px;
    padding: 0 16px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-chip {
    padding: 9px 13px;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: #fff;
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.45);
    transform: translateY(-1px);
}

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

.section-heading {
    margin-bottom: 26px;
}

.section-heading.compact {
    margin-bottom: 0;
}

.section-heading h2,
.page-hero h1,
.detail-article h1 {
    margin: 12px 0 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-heading p,
.page-hero p,
.detail-article p,
.category-overview-card p,
.category-card strong {
    color: var(--muted-strong);
    line-height: 1.8;
}

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

.category-card,
.category-overview-card,
.info-card,
.poster-card,
.rank-panel,
.player-card,
.detail-article,
.ranking-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
}

.category-card {
    min-height: 180px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.category-card:hover,
.category-overview-card:hover,
.movie-card:hover,
.ranking-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.5);
}

.category-card span,
.category-title-link {
    color: #fde68a;
    font-size: 20px;
    font-weight: 900;
}

.category-card div,
.category-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.category-card div a,
.category-preview-links a {
    color: var(--muted);
    font-size: 12px;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card.is-hidden {
    display: none;
}

.movie-card:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.movie-card-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.movie-card-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .movie-card-link img {
    transform: scale(1.08);
    filter: brightness(0.82);
}

.movie-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(2, 6, 23, 0.62);
    backdrop-filter: blur(10px);
}

.movie-play-mark {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
}

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

.movie-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.movie-card h3,
.ranking-body h2,
.poster-card h2,
.info-card h2,
.footer-links h2 {
    margin: 10px 0 8px;
    line-height: 1.35;
}

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

.movie-card h3 a:hover,
.ranking-body h2 a:hover,
.rank-row:hover .rank-title {
    color: #fde68a;
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 12px;
    color: var(--muted-strong);
    font-size: 13px;
    line-height: 1.65;
}

.movie-card-tags span {
    padding: 4px 8px;
    font-size: 12px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.split-main {
    min-width: 0;
}

.rank-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

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

.rank-title {
    font-weight: 800;
}

.rank-meta {
    grid-column: 2 / 3;
    color: var(--muted);
    font-size: 12px;
}

.rank-score {
    grid-column: 3;
    grid-row: 1 / 3;
    color: #fde68a;
    font-weight: 900;
}

.panel-link,
.category-enter {
    margin-top: 16px;
    width: 100%;
    color: #fff;
    background: rgba(245, 158, 11, 0.18);
}

.page-main {
    padding-top: 96px;
}

.page-hero {
    padding: 72px 20px 28px;
}

.page-hero h1 {
    font-size: clamp(40px, 7vw, 76px);
}

.page-hero p {
    max-width: 760px;
    font-size: 17px;
}

.simple-hero,
.category-hero {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.category-overview-card {
    padding: 22px;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-preview-links {
    margin-top: 16px;
}

.inline-actions {
    margin-top: 22px;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    padding: 14px;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.ranking-cover {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.ranking-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-cover span {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(2, 6, 23, 0.68);
}

.ranking-body {
    align-self: center;
}

.ranking-body h2 {
    font-size: 24px;
}

.ranking-body p {
    color: var(--muted-strong);
    line-height: 1.75;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    color: #fde68a;
}

.rating-row strong {
    font-size: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 28px 20px 0;
    color: var(--muted);
    font-size: 14px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    padding: 24px 20px 0;
}

.detail-primary {
    min-width: 0;
}

.player-card {
    overflow: hidden;
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    background: #000;
}

.movie-player-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(245, 158, 11, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.74));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-play-button {
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    gap: 8px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 28px 80px rgba(245, 158, 11, 0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.player-play-button:hover {
    transform: scale(1.06);
    box-shadow: 0 32px 90px rgba(245, 158, 11, 0.56);
}

.player-play-button span {
    font-size: 42px;
    line-height: 1;
}

.player-play-button strong {
    font-size: 14px;
}

.detail-article {
    margin-top: 24px;
    padding: 28px;
}

.detail-article h1 {
    font-size: clamp(34px, 5vw, 58px);
}

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

.detail-tags {
    margin: 18px 0 26px;
}

.detail-tags span {
    padding: 7px 11px;
    font-size: 13px;
}

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

.detail-sidebar {
    display: grid;
    gap: 20px;
    align-content: start;
}

.poster-card {
    overflow: hidden;
}

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

.poster-card div {
    padding: 18px;
}

.poster-card p {
    color: var(--muted);
}

.info-card {
    padding: 22px;
}

.info-card dl {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
}

.info-card dl div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.info-card dt {
    color: var(--muted);
}

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

.related-section {
    padding-bottom: 80px;
}

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

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

.site-footer {
    margin-top: 80px;
    padding: 48px 20px 28px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.72);
}

.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
}

.footer-brand p {
    max-width: 520px;
    color: var(--muted-strong);
    line-height: 1.8;
}

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

.footer-links a {
    color: var(--muted-strong);
}

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

.footer-bottom {
    max-width: var(--max);
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 50px rgba(245, 158, 11, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

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

    .rank-panel {
        position: static;
    }

    .detail-sidebar {
        grid-template-columns: minmax(0, 260px) 1fr;
    }
}

@media (max-width: 860px) {
    .nav-shell {
        min-height: 64px;
    }

    .site-nav {
        position: fixed;
        top: 64px;
        left: 14px;
        right: 14px;
        display: none;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.96);
        box-shadow: var(--shadow);
    }

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

    .mobile-menu-button {
        display: block;
    }

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

    .hero-content {
        padding-top: 120px;
    }

    .hero-arrow {
        display: none;
    }

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

    .detail-sidebar {
        grid-template-columns: 1fr;
    }

    .ranking-card {
        grid-template-columns: 110px 1fr;
    }
}

@media (max-width: 620px) {
    .logo-text small {
        display: none;
    }

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

    .hero-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-box,
    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .compact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .search-band {
        width: calc(100% - 28px);
    }

    .page-main {
        padding-top: 74px;
    }

    .detail-article,
    .info-card {
        padding: 20px;
    }

    .player-play-button {
        width: 104px;
        height: 104px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
