:root {
    color-scheme: dark;
    --bg-deep: #020617;
    --bg-soft: #0f172a;
    --bg-card: #1e293b;
    --bg-card-2: #0f1b2f;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --cyan: #22d3ee;
    --yellow: #facc15;
    --radius: 18px;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.44);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.24), transparent 32%),
        radial-gradient(circle at 80% 4%, rgba(34, 211, 238, 0.16), transparent 30%),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.page-top {
    padding-top: 40px;
    padding-bottom: 80px;
}

.main-space {
    padding: 64px 0 92px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.94), rgba(15, 23, 42, 0.96));
    box-shadow: 0 14px 36px rgba(2, 6, 23, 0.48);
    backdrop-filter: blur(18px);
}

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

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

.site-logo span:last-child {
    font-size: 24px;
    background: linear-gradient(90deg, #60a5fa, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.35);
}

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
}

.main-nav a,
.mobile-panel a {
    color: rgba(226, 232, 240, 0.88);
    transition: color 0.22s ease, background 0.22s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-panel a:hover,
.mobile-panel a.is-active {
    color: #93c5fd;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-panel input,
.filter-group input,
.filter-group select {
    border: 1px solid rgba(148, 163, 184, 0.18);
    outline: none;
    color: var(--text);
    background: rgba(15, 23, 42, 0.82);
    transition: border 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-search input {
    width: 230px;
    padding: 10px 14px;
    border-radius: 999px;
}

.header-search input:focus,
.mobile-panel input:focus,
.filter-group input:focus,
.filter-group select:focus {
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.header-search button,
.mobile-panel button {
    border: 0;
    color: #ffffff;
    background: var(--blue);
    border-radius: 999px;
    padding: 10px 16px;
    transition: background 0.22s ease, transform 0.22s ease;
}

.header-search button:hover,
.mobile-panel button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.42);
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    border-radius: 999px;
}

.hero-carousel {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: var(--bg-deep);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    background-image:
        linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.78) 34%, rgba(2, 6, 23, 0.34) 100%),
        var(--cover-image);
    background-size: cover;
    background-position: center;
    transition: opacity 0.9s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 52%, rgba(59, 130, 246, 0.34), transparent 30%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.86), transparent 68%);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 92px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-content h1 {
    max-width: 780px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(226, 232, 240, 0.9);
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.7;
}

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

.hero-tags {
    margin-bottom: 30px;
}

.hero-tags span,
.tag-row span,
.meta-row span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    white-space: nowrap;
}

.hero-tags span {
    padding: 9px 14px;
    color: #ffffff;
    background: rgba(30, 64, 175, 0.76);
    box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.25);
}

.hero-tags span:nth-child(2n) {
    background: rgba(8, 145, 178, 0.72);
}

.hero-tags span:nth-child(3) {
    color: #111827;
    background: var(--yellow);
    font-weight: 800;
}

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

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

.btn-primary {
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 18px 36px rgba(59, 130, 246, 0.26);
}

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

.btn-ghost {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.18);
}

.btn-ghost:hover {
    color: #ffffff;
    background: rgba(30, 41, 59, 0.88);
    transform: translateY(-2px);
}

.btn-primary.full {
    width: 100%;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    background: rgba(2, 6, 23, 0.52);
    backdrop-filter: blur(10px);
    transition: background 0.22s ease, transform 0.22s ease;
}

.hero-arrow:hover {
    background: rgba(2, 6, 23, 0.82);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-next {
    right: 24px;
    transform: translateY(-50%);
}

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

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

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

.content-section {
    margin-bottom: 74px;
}

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

.section-heading.compact {
    margin-bottom: 18px;
}

.section-heading h2,
.section-heading h3,
.page-hero h1,
.detail-article h1 {
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.03em;
}

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

.section-heading h3 {
    font-size: 26px;
    color: #c4b5fd;
}

.section-heading a {
    color: #93c5fd;
    font-weight: 800;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 250px;
    gap: 22px;
    overflow-x: auto;
    padding: 2px 2px 18px;
    scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
    scroll-snap-align: start;
}

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

.movie-card-link,
.rank-row a {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background: rgba(30, 41, 59, 0.92);
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card-link:hover,
.rank-row a:hover {
    border-color: rgba(96, 165, 250, 0.45);
    background: rgba(30, 41, 59, 1);
    box-shadow: 0 28px 54px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.movie-cover,
.latest-thumb,
.rank-cover,
.poster-large,
.category-covers span {
    background-image:
        linear-gradient(135deg, rgba(15, 23, 42, 0.22), rgba(37, 99, 235, 0.24)),
        var(--cover-image);
    background-size: cover;
    background-position: center;
}

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #0f172a;
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.78) 100%);
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(59, 130, 246, 0.92);
    box-shadow: 0 18px 34px rgba(59, 130, 246, 0.32);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rating-badge,
.duration-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.rating-badge {
    top: 10px;
    right: 10px;
    padding: 6px 9px;
    color: #111827;
    background: var(--yellow);
}

.duration-badge {
    left: 10px;
    bottom: 10px;
    padding: 6px 8px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.64);
}

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

.movie-card-body h3,
.latest-item h3,
.rank-main h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    transition: color 0.22s ease;
}

.movie-card-link:hover h3,
.latest-item:hover h3,
.rank-row a:hover h2 {
    color: #60a5fa;
}

.movie-card-body p,
.latest-item p,
.rank-main p,
.page-hero p,
.detail-article p,
.detail-side p,
.site-footer p {
    color: var(--muted);
    line-height: 1.72;
}

.movie-card-body p {
    min-height: 48px;
    margin: 0 0 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-row {
    color: #cbd5e1;
    font-size: 12px;
}

.meta-row span,
.detail-meta span {
    padding: 6px 8px;
    background: rgba(15, 23, 42, 0.72);
}

.tag-row {
    margin-top: 12px;
    color: #bfdbfe;
    font-size: 12px;
}

.tag-row span {
    padding: 5px 8px;
    background: rgba(30, 64, 175, 0.36);
}

.movie-card-large .movie-card-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.movie-card-large .movie-cover {
    min-height: 240px;
    aspect-ratio: auto;
}

.movie-card-large .movie-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.movie-card-large .movie-card-body h3 {
    font-size: 25px;
}

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

.category-tile,
.category-overview-card a {
    display: block;
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 36%),
        rgba(30, 41, 59, 0.82);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.45);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.2), transparent 36%),
        rgba(30, 41, 59, 1);
}

.category-tile span,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.category-tile small,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.62;
}

.year-block {
    margin-bottom: 34px;
}

.latest-list,
.rank-list,
.side-links {
    display: grid;
    gap: 14px;
}

.latest-item {
    display: grid;
    grid-template-columns: 58px 138px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.82);
    transition: background 0.22s ease, transform 0.22s ease;
}

.latest-item:hover {
    background: rgba(51, 65, 85, 0.95);
    transform: translateX(4px);
}

.latest-item > span {
    color: rgba(148, 163, 184, 0.34);
    font-size: 34px;
    font-weight: 900;
    text-align: center;
}

.latest-thumb {
    width: 138px;
    height: 82px;
    border-radius: 12px;
}

.latest-item p {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.latest-item em {
    color: var(--yellow);
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    padding: clamp(34px, 8vw, 72px);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.soft-hero,
.rank-hero {
    background:
        radial-gradient(circle at 8% 20%, rgba(59, 130, 246, 0.26), transparent 34%),
        radial-gradient(circle at 90% 12%, rgba(34, 211, 238, 0.16), transparent 30%),
        rgba(15, 23, 42, 0.86);
}

.rank-hero {
    background:
        radial-gradient(circle at 16% 18%, rgba(250, 204, 21, 0.16), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(59, 130, 246, 0.25), transparent 34%),
        rgba(15, 23, 42, 0.88);
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 64px);
    margin-bottom: 16px;
}

.page-hero p:last-child {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
}

.category-overview-card a {
    padding: 16px;
}

.category-covers {
    height: 154px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 18px;
}

.category-covers span {
    min-width: 0;
    border-radius: 12px;
    background-color: #0f172a;
}

.category-overview-card strong {
    color: #93c5fd;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 14px;
    margin: 0 0 28px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.75);
}

.filter-group {
    display: grid;
    gap: 8px;
}

.filter-group label {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
}

.filter-group input,
.filter-group select {
    min-width: 0;
    width: 100%;
    padding: 12px 13px;
    border-radius: 14px;
}

.filter-empty {
    margin: 24px 0 0;
    padding: 28px;
    border-radius: 18px;
    color: #cbd5e1;
    text-align: center;
    background: rgba(30, 41, 59, 0.82);
}

.rank-row a {
    display: grid;
    grid-template-columns: 70px 160px 1fr 110px;
    align-items: center;
    gap: 18px;
    padding: 14px;
}

.rank-row strong {
    color: rgba(148, 163, 184, 0.4);
    font-size: 36px;
    font-weight: 900;
    text-align: center;
}

.rank-cover {
    height: 94px;
    border-radius: 14px;
}

.rank-main h2 {
    font-size: 20px;
}

.rank-main p {
    margin: 0 0 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-row em {
    color: #93c5fd;
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #93c5fd;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 34px;
    background: rgba(59, 130, 246, 0.88);
    box-shadow: 0 22px 48px rgba(59, 130, 246, 0.35);
    transform: translate(-50%, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.player-play:hover {
    background: var(--blue-dark);
    transform: translate(-50%, -50%) scale(1.06);
}

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

.player-error {
    position: absolute;
    inset: auto 18px 18px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.86);
}

.detail-article {
    margin-top: 26px;
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 22px;
    background: rgba(30, 41, 59, 0.78);
}

.detail-article h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 5vw, 56px);
}

.detail-lead {
    margin: 0 0 18px;
    color: #dbeafe !important;
    font-size: 20px;
}

.detail-meta {
    margin-bottom: 16px;
}

.strong-tags {
    margin-bottom: 28px;
}

.detail-article h2,
.detail-side h2,
.site-footer h2 {
    color: #ffffff;
}

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

.detail-article p {
    font-size: 16px;
}

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

.poster-panel,
.side-box {
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 22px;
    background: rgba(30, 41, 59, 0.78);
}

.poster-large {
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
    border-radius: 18px;
    background-color: #0f172a;
}

.side-box h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.side-links a {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.56);
    transition: background 0.22s ease, transform 0.22s ease;
}

.side-links a:hover {
    background: rgba(30, 64, 175, 0.42);
    transform: translateX(3px);
}

.side-links span {
    color: #ffffff;
    font-weight: 800;
}

.side-links small {
    color: var(--muted);
}

.site-footer {
    padding: 54px 0 28px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.78), rgba(15, 23, 42, 1));
}

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

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

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.site-footer a,
.site-footer p {
    color: #cbd5e1;
}

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

.footer-bottom {
    width: min(1200px, calc(100% - 32px));
    margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.14);
    color: #cbd5e1;
    text-align: center;
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-search {
        margin-left: auto;
    }

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

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

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

    .detail-side {
        grid-template-columns: 300px 1fr;
    }
}

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

    .header-search {
        display: none;
    }

    .hero-carousel {
        min-height: 72vh;
    }

    .hero-content {
        padding-bottom: 82px;
    }

    .hero-arrow {
        display: none;
    }

    .movie-grid.six-col,
    .movie-grid.four-col,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .filter-panel,
    .detail-side {
        grid-template-columns: 1fr 1fr;
    }

    .movie-card-large .movie-card-link,
    .latest-item,
    .rank-row a {
        grid-template-columns: 1fr;
    }

    .latest-item > span,
    .rank-row strong,
    .rank-row em {
        text-align: left;
    }

    .rank-cover,
    .latest-thumb {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 560px) {
    .page-container,
    .header-inner,
    .mobile-panel,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 22px, 1200px);
    }

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

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .movie-grid.six-col,
    .movie-grid.four-col,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .filter-panel,
    .detail-side {
        grid-template-columns: 1fr;
    }

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

    .page-hero {
        padding: 28px;
        border-radius: 22px;
    }

    .detail-article {
        padding: 22px;
    }

    .player-play {
        width: 68px;
        height: 68px;
    }
}
