:root {
    --orange: #ea580c;
    --orange-dark: #c2410c;
    --red: #ef4444;
    --pink: #ec4899;
    --blue: #2563eb;
    --cyan: #0891b2;
    --green: #16a34a;
    --purple: #7c3aed;
    --amber: #d97706;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f9fafb;
    --card: #ffffff;
    --radius: 18px;
    --shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    color: var(--ink);
    background: #f3f4f6;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #ffffff;
    background: linear-gradient(90deg, #f97316 0%, #ef4444 48%, #ec4899 100%);
    box-shadow: 0 12px 30px rgba(190, 18, 60, 0.28);
}

.site-header__inner {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.site-logo {
    flex: 0 0 auto;
    font-size: 25px;
}

.site-logo__mark,
.footer-logo span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #f97316;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease;
}

.site-logo:hover .site-logo__mark {
    transform: rotate(12deg) scale(1.05);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.site-nav a {
    opacity: 0.94;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
    color: #ffedd5;
    opacity: 1;
}

.site-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 270px;
}

.site-search input,
.quick-search input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    outline: none;
    backdrop-filter: blur(12px);
}

.site-search input::placeholder,
.quick-search input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.site-search button,
.quick-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 17px;
    color: #c2410c;
    background: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-search button:hover,
.quick-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    padding: 8px 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu a {
    display: block;
    padding: 11px 0;
    font-weight: 700;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu .site-search {
    min-width: 0;
    margin: 14px 0 6px;
}

main {
    min-height: 65vh;
}

.hero-slider {
    position: relative;
    height: 580px;
    overflow: hidden;
    background: #000000;
}

.hero-track,
.hero-slide,
.hero-slide img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 0.9s ease;
}

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

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

.hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px 76px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #ffffff;
}

.hero-tags,
.hero-actions,
.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-tags span:first-child {
    background: #dc2626;
}

.hero-tags span {
    border-radius: 999px;
    padding: 6px 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero-content h1,
.hero-content h2 {
    max-width: 820px;
    margin: 16px 0 0;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero-content .hero-movie-title {
    margin-top: 10px;
    color: #fed7aa;
    font-size: clamp(24px, 3vw, 36px);
}

.hero-content p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

.hero-meta {
    margin-top: 14px;
    color: #fdba74;
    font-weight: 700;
}

.hero-actions {
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 850;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: #ea580c;
    box-shadow: 0 14px 26px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
    background: #c2410c;
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-dots {
    position: absolute;
    right: calc(50% - 620px);
    bottom: 34px;
    z-index: 5;
    display: flex;
    gap: 9px;
}

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

.hero-dot.is-active {
    width: 32px;
    background: #f97316;
}

.quick-panel,
.content-section,
.ranking-section,
.category-overview,
.detail-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.quick-panel {
    position: relative;
    z-index: 10;
    margin-top: -46px;
    margin-bottom: 42px;
    padding-top: 26px;
    padding-bottom: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 430px);
    gap: 26px;
    align-items: center;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444 48%, #ec4899);
    box-shadow: var(--shadow);
}

.quick-panel h2,
.page-hero h1,
.section-head h2,
.category-overview h2,
.detail-title h1 {
    margin: 0;
    letter-spacing: -0.04em;
}

.quick-panel h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.quick-panel p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.86);
}

.quick-search {
    min-width: 0;
}

.content-section,
.ranking-section,
.category-overview {
    margin-bottom: 48px;
}

.content-section--blue,
.category-overview--blue {
    padding-top: 28px;
    padding-bottom: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.content-section--orange,
.category-overview--orange {
    padding-top: 28px;
    padding-bottom: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.category-overview--red {
    background: linear-gradient(135deg, #fff1f2, #fff7ed);
}

.category-overview--purple {
    background: linear-gradient(135deg, #f5f3ff, #faf5ff);
}

.category-overview--pink {
    background: linear-gradient(135deg, #fdf2f8, #fff7ed);
}

.category-overview--green {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.category-overview--amber {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.category-overview--cyan {
    background: linear-gradient(135deg, #ecfeff, #f0f9ff);
}

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

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

.eyebrow {
    margin: 0 0 6px;
    color: #ea580c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-head h2,
.category-overview h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.section-link {
    color: #ea580c;
    font-weight: 850;
    white-space: nowrap;
}

.section-link:hover {
    color: #c2410c;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #111827);
}

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

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

.movie-card__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.06));
    transition: opacity 0.3s ease;
}

.movie-card:hover .movie-card__poster::after {
    opacity: 1;
}

.movie-card__year,
.movie-rank,
.movie-hot,
.movie-card__play {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.movie-card__year {
    left: 10px;
    top: 10px;
    padding: 5px 9px;
    background: rgba(0, 0, 0, 0.68);
}

.movie-rank {
    left: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
}

.movie-hot {
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    background: #ef4444;
}

.movie-card__play {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: #f97316;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.36);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.movie-card:hover .movie-card__play {
    opacity: 1;
    transform: scale(1.05);
}

.movie-card__body {
    padding: 16px;
}

.movie-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card h3 a:hover {
    color: #ea580c;
}

.movie-card__meta {
    margin: 0 0 8px;
    color: #6b7280;
    font-size: 13px;
}

.movie-card__desc {
    min-height: 44px;
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    border-radius: 999px;
    padding: 4px 8px;
    color: #ea580c;
    background: #fff7ed;
    font-size: 12px;
    font-weight: 750;
}

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

.category-tile {
    min-height: 180px;
    padding: 22px;
    border-radius: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile strong {
    font-size: 24px;
    font-weight: 950;
}

.category-tile em {
    margin: 8px 0 14px;
    color: rgba(255, 255, 255, 0.86);
    font-style: normal;
    font-size: 14px;
}

.category-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.category-preview span {
    border-radius: 999px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
}

.category-tile--red,
.page-hero--red {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.category-tile--purple,
.page-hero--purple {
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.category-tile--pink,
.page-hero--pink {
    background: linear-gradient(135deg, #ec4899, #fb7185);
}

.category-tile--orange,
.page-hero--orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.category-tile--blue,
.page-hero--blue {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.category-tile--green,
.page-hero--green {
    background: linear-gradient(135deg, #16a34a, #14b8a6);
}

.category-tile--amber,
.page-hero--amber {
    background: linear-gradient(135deg, #d97706, #f97316);
}

.category-tile--cyan,
.page-hero--cyan {
    background: linear-gradient(135deg, #0891b2, #2563eb);
}

.ranking-section {
    padding-top: 28px;
    padding-bottom: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #ffffff;
}

.ranking-section .eyebrow,
.ranking-section .section-link {
    color: #fdba74;
}

.ranking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ranking-list a {
    display: grid;
    grid-template-columns: 42px 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-list a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.rank-no {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: #ea580c;
    font-weight: 950;
}

.ranking-list img {
    width: 72px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-text strong,
.rank-text em {
    display: block;
}

.rank-text strong {
    overflow: hidden;
    font-size: 17px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-text em {
    color: rgba(255, 255, 255, 0.68);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    max-width: 1280px;
    margin: 34px auto 36px;
    padding: 56px 24px;
    border-radius: 30px;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.page-hero > div {
    max-width: 780px;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 950;
}

.page-hero p:last-child {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.category-overview {
    padding-top: 28px;
    padding-bottom: 30px;
    border-radius: 30px;
}

.category-overview__head p:last-child {
    max-width: 720px;
    margin: 8px 0 0;
    color: #4b5563;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 12px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 16px;
    color: #111827;
    background: #ffffff;
    outline: none;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.empty-result {
    display: none;
    margin: 28px 0 0;
    padding: 22px;
    border-radius: 18px;
    color: #6b7280;
    background: #ffffff;
    text-align: center;
}

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

.detail-wrap {
    padding-top: 28px;
    padding-bottom: 48px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 14px;
}

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

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

.detail-main,
.detail-aside {
    min-width: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
    cursor: pointer;
}

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: 88px;
    height: 88px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.45);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.player-start span {
    display: inline-block;
    margin-left: 5px;
    font-size: 35px;
}

.player-shell.is-playing .player-start {
    display: none;
}

.detail-title,
.detail-block,
.info-card {
    margin-top: 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.detail-title {
    padding: 28px;
}

.detail-title h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
}

.detail-title p:last-child {
    margin: 12px 0 0;
    color: #4b5563;
    font-size: 18px;
}

.detail-block {
    padding: 28px;
}

.detail-block h2,
.info-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 950;
}

.detail-block p {
    margin: 0 0 14px;
    color: #374151;
    font-size: 17px;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    object-fit: cover;
    background: linear-gradient(135deg, #1f2937, #111827);
    box-shadow: var(--shadow);
}

.info-card {
    padding: 22px;
}

.info-card dl {
    margin: 0;
}

.info-card dl div {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-card dt {
    color: #6b7280;
}

.info-card dd {
    margin: 0;
    font-weight: 750;
}

.info-card dd a {
    color: #ea580c;
}

.tag-row--wide {
    margin-top: 16px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.mini-card img {
    width: 58px;
    height: 78px;
    border-radius: 10px;
    object-fit: cover;
    background: #111827;
}

.mini-card strong,
.mini-card em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card strong {
    font-size: 15px;
    font-weight: 900;
}

.mini-card em {
    color: #6b7280;
    font-style: normal;
    font-size: 12px;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(180deg, #111827, #030712);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
}

.footer-logo span {
    width: 30px;
    height: 30px;
}

.site-footer p,
.site-footer ul {
    margin: 0;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer ul {
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

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

.copyright {
    margin-top: 30px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    width: 46px;
    height: 46px;
    display: none;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.back-top.is-visible {
    display: block;
}

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

    .nav-toggle {
        display: inline-flex;
    }

    .site-search:not(.site-search--mobile):not(.quick-search) {
        display: none;
    }

    .hero-dots {
        right: 24px;
    }

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

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

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

    .detail-aside {
        display: grid;
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 20px;
    }

    .detail-aside .info-card {
        margin-top: 0;
    }
}

@media (max-width: 780px) {
    .site-header__inner {
        height: 64px;
        padding: 0 16px;
    }

    .site-logo {
        font-size: 20px;
    }

    .hero-slider {
        height: 540px;
    }

    .hero-content {
        padding: 0 16px 66px;
    }

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

    .hero-actions {
        gap: 8px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .quick-panel {
        grid-template-columns: 1fr;
        margin-left: 16px;
        margin-right: 16px;
        padding: 22px;
    }

    .quick-panel,
    .content-section,
    .ranking-section,
    .category-overview,
    .detail-wrap,
    .page-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .content-section,
    .ranking-section,
    .category-overview {
        margin-bottom: 34px;
    }

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

    .movie-grid,
    .movie-grid--six,
    .movie-grid--related,
    .category-grid,
    .ranking-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .movie-card__body {
        padding: 13px;
    }

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

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

    .ranking-list a {
        grid-template-columns: 34px 56px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-list img {
        width: 56px;
        height: 76px;
    }

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

    .player-start {
        width: 72px;
        height: 72px;
    }

    .detail-aside {
        display: block;
    }

    .detail-cover {
        max-width: 260px;
        margin: 0 auto;
    }

    .detail-aside .info-card {
        margin-top: 20px;
    }

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

@media (max-width: 480px) {
    .mobile-menu {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-logo__mark {
        width: 32px;
        height: 32px;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 32px;
    }

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

    .category-tile {
        min-height: 150px;
        padding: 18px;
    }

    .movie-card__desc {
        display: none;
    }
}
