:root {
    color-scheme: light;
    --bg: #f8fafc;
    --dark: #020617;
    --dark-soft: #0f172a;
    --panel: #ffffff;
    --muted: #64748b;
    --line: #e2e8f0;
    --cyan: #06b6d4;
    --blue: #2563eb;
    --violet: #7c3aed;
    --text: #0f172a;
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.96), rgba(8, 47, 73, 0.96));
    color: #fff;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-wrap {
    width: min(1220px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    box-shadow: 0 0 28px rgba(6, 182, 212, 0.46);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-text em {
    margin-top: 4px;
    font-size: 12px;
    font-style: normal;
    color: #67e8f9;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #cbd5e1;
    font-weight: 600;
}

.desktop-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
    color: #67e8f9;
    transform: translateY(-1px);
}

.nav-search,
.mobile-search,
.hero-search,
.page-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search input,
.mobile-search input,
.hero-search input,
.page-filter input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 14px;
    outline: none;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
    width: 210px;
}

.nav-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.page-filter input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
}

.nav-search button,
.mobile-search button,
.hero-search button,
.page-filter button {
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.menu-toggle {
    display: none;
    border: 0;
    color: #fff;
    background: rgba(15, 23, 42, 0.86);
    border-radius: 14px;
    padding: 10px 12px;
    cursor: pointer;
}

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

.mobile-nav.is-open {
    display: grid;
    gap: 10px;
}

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.82);
    color: #cbd5e1;
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.32), transparent 34%), linear-gradient(135deg, #020617, #0f172a 52%, #075985);
    color: #fff;
}

.hero-glow {
    position: absolute;
    inset: auto -10% -28% auto;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.24);
    filter: blur(70px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
    align-items: center;
    gap: 56px;
    padding: 96px 0 150px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0 calc(50% - 50vw);
    background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.88)), var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(1px) saturate(1.12);
    transform: scale(1.04);
    z-index: 0;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #67e8f9;
}

.eyebrow.dark {
    color: #0891b2;
}

.hero-copy h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-summary {
    max-width: 680px;
    margin: 24px 0 0;
    color: #dbeafe;
    font-size: clamp(18px, 2.1vw, 24px);
    line-height: 1.65;
}

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

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    color: #ecfeff;
    background: rgba(8, 145, 178, 0.32);
    border: 1px solid rgba(103, 232, 249, 0.28);
}

.hero-actions,
.detail-actions,
.section-action {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    padding: 0 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.btn-ghost.dark {
    color: var(--text);
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--line);
}

.btn-primary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(6, 182, 212, 0.25);
}

.hero-poster {
    display: block;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 32px 90px rgba(2, 6, 23, 0.58);
    transform: rotate(2deg);
    transition: transform 0.28s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-6px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(14px);
}

.hero-prev {
    left: max(18px, calc((100vw - 1220px) / 2 - 68px));
}

.hero-next {
    right: max(18px, calc((100vw - 1220px) / 2 - 68px));
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #67e8f9;
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    width: min(760px, calc(100% - 32px));
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(148, 163, 184, 0.24);
    backdrop-filter: blur(18px);
}

.section {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 78px 0;
}

.section-light,
.section-soft {
    width: 100%;
    padding-left: max(16px, calc((100vw - 1220px) / 2));
    padding-right: max(16px, calc((100vw - 1220px) / 2));
}

.section-light {
    background: #fff;
}

.section-soft {
    background: linear-gradient(180deg, #fff, #f1f5f9);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-head.align-left {
    margin-left: 0;
    text-align: left;
}

.section-head h2,
.preview-head h2,
.rank-panel h2,
.detail-article h2,
.detail-side h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-head p:not(.eyebrow),
.preview-head p,
.page-hero p,
.category-content span {
    color: var(--muted);
    line-height: 1.7;
}

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

.category-card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border-radius: 26px;
    background-image: linear-gradient(145deg, rgba(2, 6, 23, 0.28), rgba(8, 145, 178, 0.2)), var(--category-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.category-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.82));
}

.category-content {
    position: absolute;
    inset: auto 20px 20px;
    display: grid;
    gap: 8px;
    color: #fff;
}

.category-content em {
    width: fit-content;
    border-radius: 999px;
    padding: 6px 10px;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.category-content strong {
    font-size: 24px;
}

.category-content span {
    color: #e2e8f0;
    font-size: 14px;
}

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

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

.movie-card {
    display: grid;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

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

.poster-frame {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #075985);
}

.poster-frame img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.72));
    transition: opacity 0.22s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-mark {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    transform: translate(-50%, -50%) scale(0.84);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.region-badge,
.year-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.region-badge {
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.year-badge {
    bottom: 12px;
    left: 12px;
    background: rgba(2, 6, 23, 0.72);
}

.movie-card-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.movie-card-body strong {
    overflow: hidden;
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.movie-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #64748b;
    font-size: 12px;
}

.movie-card-meta i {
    overflow: hidden;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.rank-panel,
.rank-list-large,
.detail-side {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.rank-panel-head {
    margin-bottom: 18px;
}

.rank-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #e2e8f0;
}

.rank-number {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.rank-meta {
    color: var(--muted);
    font-size: 13px;
}

.rank-more {
    display: inline-flex;
    margin-top: 18px;
    color: #0891b2;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px max(16px, calc((100vw - 1220px) / 2)) 70px;
    color: #fff;
    background: radial-gradient(circle at 20% 0%, rgba(6, 182, 212, 0.42), transparent 32%), linear-gradient(135deg, #020617, #0f172a 56%, #075985);
}

.page-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    letter-spacing: -0.06em;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: #dbeafe;
    font-size: 18px;
}

.page-filter {
    max-width: 740px;
    margin-top: 26px;
}

.category-preview {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
}

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

.preview-head a {
    min-width: max-content;
    color: #0891b2;
    font-weight: 900;
}

.rank-page {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 30px;
}

.detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 42px;
    width: min(1220px, calc(100% - 32px));
    margin: 34px auto 0;
    padding: 36px;
    overflow: hidden;
    border-radius: 34px;
    color: #fff;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.92), rgba(8, 47, 73, 0.88)), var(--detail-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.detail-poster,
.detail-info {
    position: relative;
    z-index: 2;
}

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

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

.detail-info h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 68px);
    letter-spacing: -0.05em;
}

.detail-lead {
    max-width: 760px;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.75;
}

.breadcrumb {
    width: min(1220px, calc(100% - 32px));
    margin: 24px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a {
    color: #0891b2;
    font-weight: 800;
}

.player-section {
    width: min(1220px, calc(100% - 32px));
    margin: 56px auto 0;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.28);
}

.player-box video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.62));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 34px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 42px rgba(6, 182, 212, 0.48);
}

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

.detail-body-section {
    width: min(1220px, calc(100% - 32px));
    margin: 56px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
}

.detail-article {
    border-radius: 30px;
    padding: 34px;
    background: #fff;
    box-shadow: var(--shadow);
}

.detail-article h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 32px;
}

.detail-article p {
    color: #334155;
    font-size: 18px;
    line-height: 1.9;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    margin: 18px 0 0;
}

.detail-side dt {
    color: #64748b;
    font-weight: 800;
}

.detail-side dd {
    margin: 0;
    color: #0f172a;
}

.related-section {
    margin-top: 0;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-inner {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
    padding: 50px 0;
}

.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.75;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    color: #94a3b8;
    text-align: center;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

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

@media (max-width: 1100px) {
    .desktop-nav,
    .nav-search {
        display: none;
    }

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

    .hero-slide,
    .detail-hero,
    .detail-body-section,
    .split-section,
    .rank-page {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .detail-poster {
        max-width: 340px;
    }

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

    .rank-panel {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        height: 68px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .hero-carousel {
        min-height: 780px;
    }

    .hero-slide {
        gap: 28px;
        padding-top: 52px;
        padding-bottom: 170px;
    }

    .hero-poster {
        max-width: 250px;
    }

    .hero-search,
    .page-filter,
    .mobile-search {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-arrow {
        display: none;
    }

    .category-grid,
    .movie-grid,
    .movie-grid.compact,
    .preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .section,
    .section-light,
    .section-soft,
    .category-preview {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .preview-head,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .detail-hero {
        padding: 22px;
    }

    .detail-poster {
        max-width: 240px;
    }

    .detail-article,
    .detail-side,
    .rank-panel,
    .rank-list-large {
        padding: 22px;
    }

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

    .movie-card-body strong {
        font-size: 15px;
    }

    .movie-card-line {
        min-height: 38px;
        font-size: 12px;
    }
}

@media (max-width: 460px) {
    .category-grid,
    .movie-grid,
    .movie-grid.compact,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 38px;
    }
}
