@import url("https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap");

:root {
    --blackboard: #1a2e1a;
    --blackboard-dark: #0f1a0f;
    --blackboard-light: #2d4a2d;
    --chalk-white: #f5f5dc;
    --chalk-yellow: #fffacd;
    --chalk-blue: #add8e6;
    --chalk-green: #90ee90;
    --chalk-pink: #ffb6c1;
    --vintage-gold: #ffd700;
    --line: rgba(255, 250, 205, 0.28);
    --panel: rgba(45, 74, 45, 0.72);
    --panel-dark: rgba(15, 26, 15, 0.46);
    --shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 9px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--chalk-white);
    background:
        radial-gradient(circle at top left, rgba(255, 250, 205, 0.08), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(173, 216, 230, 0.08), transparent 28rem),
        var(--blackboard);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(26, 46, 26, 0.93);
    border-bottom: 2px solid rgba(255, 250, 205, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: var(--blackboard);
    background: var(--chalk-yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 250, 205, 0.12);
}

.brand-name,
.footer-brand {
    font-family: "Patrick Hand", "Microsoft YaHei", cursive;
    font-size: 28px;
    letter-spacing: 0.03em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-link {
    color: rgba(245, 245, 220, 0.82);
    font-weight: 800;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--chalk-yellow);
}

.header-search,
.mobile-search,
.search-page-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
    min-width: 0;
    border: 1px solid rgba(255, 250, 205, 0.28);
    color: var(--chalk-white);
    background: rgba(45, 74, 45, 0.84);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    outline: none;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.search-page-form input::placeholder,
.filter-panel input::placeholder {
    color: rgba(245, 245, 220, 0.55);
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--chalk-yellow);
}

.header-search button,
.mobile-search button,
.search-page-form button,
.btn-primary {
    border: 0;
    color: var(--blackboard);
    background: var(--chalk-yellow);
    border-radius: var(--radius-sm);
    font-weight: 900;
    padding: 10px 16px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-page-form button:hover,
.btn-primary:hover {
    background: var(--chalk-white);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    color: var(--chalk-white);
    background: transparent;
    font-size: 28px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(255, 250, 205, 0.25);
    padding: 16px;
}

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

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

.hero {
    position: relative;
    height: 68vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--blackboard-dark);
}

.hero-stage,
.hero-slide,
.hero-slide img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

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

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

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(15, 26, 15, 0.96), rgba(26, 46, 26, 0.72) 44%, rgba(26, 46, 26, 0.18)),
        linear-gradient(0deg, var(--blackboard) 0%, rgba(26, 46, 26, 0.22) 46%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 82px;
}

.hero-label,
.section-kicker,
.page-hero span {
    width: max-content;
    color: var(--chalk-yellow);
    border: 1px solid rgba(255, 250, 205, 0.35);
    background: rgba(255, 250, 205, 0.1);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
}

.hero h1,
.page-hero h1,
.detail-main h1,
.section-heading h2,
.ranking-head h2 {
    margin: 0;
    color: var(--chalk-white);
    font-family: "Patrick Hand", "Microsoft YaHei", cursive;
    line-height: 1.05;
}

.hero h1 {
    max-width: 820px;
    margin-top: 18px;
    font-size: clamp(42px, 6vw, 76px);
}

.hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(245, 245, 220, 0.9);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-meta {
    margin-top: 20px;
}

.hero-meta span,
.score-badge,
.type-badge,
.tag-row span {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 900;
}

.hero-meta span:first-child,
.score-badge {
    color: var(--blackboard);
    background: var(--chalk-yellow);
}

.hero-meta span:not(:first-child),
.type-badge,
.tag-row span {
    color: var(--chalk-white);
    border: 1px solid rgba(255, 250, 205, 0.25);
    background: rgba(45, 74, 45, 0.75);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 900;
    padding: 12px 20px;
}

.btn-ghost {
    color: var(--chalk-white);
    border: 1px solid rgba(255, 250, 205, 0.38);
    background: rgba(15, 26, 15, 0.45);
}

.btn-ghost:hover {
    color: var(--chalk-yellow);
    border-color: var(--chalk-yellow);
}

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

.hero-dot {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(245, 245, 220, 0.35);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 54px;
    background: var(--chalk-yellow);
}

.home-content,
.page-shell {
    padding: 48px 0 68px;
}

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

.chalk-panel,
.ranking-panel,
.detail-main,
.side-card,
.filter-panel,
.page-hero,
.ranking-table,
.search-page-form {
    border: 2px solid rgba(255, 250, 205, 0.28);
    background: var(--panel);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.chalk-panel {
    padding: 28px;
}

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

.section-heading h2,
.ranking-head h2 {
    margin-top: 10px;
    font-size: 34px;
}

.section-heading p {
    margin: 8px 0 0;
    color: rgba(245, 245, 220, 0.72);
}

.section-more,
.inline-link,
.ranking-head a {
    color: var(--chalk-yellow);
    font-weight: 900;
}

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

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

.movie-card {
    overflow: hidden;
    border: 2px solid rgba(255, 250, 205, 0.18);
    background: rgba(45, 74, 45, 0.72);
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    border-color: var(--chalk-yellow);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

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

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.25;
    overflow: hidden;
    background: var(--blackboard-dark);
}

.movie-card--large .movie-poster {
    aspect-ratio: 16 / 10;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 26, 15, 0.72), transparent 60%);
    opacity: 0.86;
}

.score-badge,
.type-badge,
.poster-play {
    position: absolute;
    z-index: 2;
}

.score-badge {
    left: 10px;
    top: 10px;
}

.type-badge {
    right: 10px;
    top: 10px;
}

.poster-play {
    left: 50%;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--blackboard);
    background: var(--chalk-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-body h3 {
    margin: 0 0 9px;
    color: var(--chalk-white);
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-body h3 a:hover {
    color: var(--chalk-yellow);
}

.movie-line {
    min-height: 44px;
    margin: 0 0 12px;
    color: rgba(245, 245, 220, 0.72);
    line-height: 1.55;
    font-size: 14px;
}

.movie-meta {
    color: rgba(245, 245, 220, 0.62);
    font-size: 13px;
}

.movie-meta span + span::before {
    content: "·";
    margin-right: 10px;
    color: rgba(255, 250, 205, 0.55);
}

.tag-row {
    margin-top: 12px;
}

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

.category-card,
.category-overview-card {
    border: 1px solid rgba(255, 250, 205, 0.2);
    background: var(--panel-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
    border-color: var(--chalk-yellow);
    transform: translateY(-3px);
}

.category-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.category-card span,
.category-card p {
    display: block;
    padding: 0 14px;
}

.category-card span {
    margin-top: 14px;
    color: var(--chalk-yellow);
    font-size: 18px;
    font-weight: 900;
}

.category-card p {
    min-height: 68px;
    margin: 8px 0 16px;
    color: rgba(245, 245, 220, 0.72);
    line-height: 1.55;
    font-size: 14px;
}

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

.ranking-panel,
.detail-side {
    position: sticky;
    top: 98px;
}

.ranking-panel,
.side-card {
    padding: 22px;
}

.ranking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 34px 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 9px;
    border-radius: var(--radius-sm);
    background: rgba(15, 26, 15, 0.42);
}

.rank-row:hover {
    color: var(--chalk-yellow);
}

.rank-no {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--blackboard);
    background: var(--chalk-yellow);
    border-radius: 50%;
    font-weight: 900;
}

.rank-row img {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 7px;
}

.rank-info {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em {
    color: rgba(245, 245, 220, 0.6);
    font-style: normal;
    font-size: 13px;
}

.rank-score {
    color: var(--chalk-yellow);
    font-weight: 900;
}

.site-footer {
    border-top: 2px solid rgba(255, 250, 205, 0.22);
    background: rgba(15, 26, 15, 0.72);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0;
    color: rgba(245, 245, 220, 0.7);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a:hover {
    color: var(--chalk-yellow);
}

.page-hero {
    padding: 38px;
    margin-bottom: 28px;
    background:
        linear-gradient(135deg, rgba(255, 250, 205, 0.1), rgba(173, 216, 230, 0.05)),
        rgba(45, 74, 45, 0.66);
}

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

.page-hero p {
    max-width: 820px;
    margin: 14px 0 0;
    color: rgba(245, 245, 220, 0.78);
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(245, 245, 220, 0.68);
}

.breadcrumb a {
    color: var(--chalk-yellow);
}

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

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

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 8px;
}

.category-overview-card h2 {
    margin: 0 0 10px;
    color: var(--chalk-yellow);
}

.category-overview-card p {
    color: rgba(245, 245, 220, 0.75);
    line-height: 1.65;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.6fr) minmax(160px, 0.6fr);
    gap: 16px;
    padding: 18px;
    margin-bottom: 24px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: rgba(245, 245, 220, 0.68);
    font-weight: 900;
}

.empty-state {
    border: 1px solid rgba(255, 250, 205, 0.25);
    border-radius: var(--radius-md);
    color: rgba(245, 245, 220, 0.75);
    padding: 20px;
    text-align: center;
}

.ranking-table {
    overflow: hidden;
}

.ranking-table-row {
    display: grid;
    grid-template-columns: 70px 68px minmax(0, 1fr) 90px;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 250, 205, 0.12);
}

.ranking-table-row:hover {
    background: rgba(255, 250, 205, 0.08);
}

.ranking-number {
    color: var(--chalk-yellow);
    font-size: 24px;
    font-weight: 900;
}

.ranking-table-row img {
    width: 68px;
    height: 92px;
    border-radius: 8px;
    object-fit: cover;
}

.ranking-title {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.ranking-title strong {
    color: var(--chalk-white);
    font-size: 18px;
}

.ranking-title em {
    color: rgba(245, 245, 220, 0.62);
    font-style: normal;
}

.ranking-score {
    color: var(--chalk-yellow);
    font-weight: 900;
}

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

.detail-main {
    padding: 24px;
}

.detail-main h1 {
    margin-bottom: 22px;
    font-size: clamp(32px, 5vw, 50px);
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: var(--chalk-white);
    background: linear-gradient(0deg, rgba(15, 26, 15, 0.52), rgba(15, 26, 15, 0.18));
    transition: opacity 0.2s ease;
}

.play-overlay span {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    color: var(--blackboard);
    background: var(--chalk-yellow);
    border-radius: 50%;
    font-size: 34px;
    box-shadow: 0 0 0 12px rgba(255, 250, 205, 0.14);
}

.play-overlay strong {
    font-size: 20px;
}

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

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.detail-meta-grid div {
    border: 1px solid rgba(255, 250, 205, 0.18);
    background: rgba(15, 26, 15, 0.42);
    border-radius: var(--radius-sm);
    padding: 13px;
}

.detail-meta-grid span {
    display: block;
    margin-bottom: 6px;
    color: rgba(245, 245, 220, 0.58);
    font-size: 13px;
}

.detail-meta-grid strong {
    color: var(--chalk-white);
}

.detail-tags {
    margin-bottom: 22px;
}

.article-block {
    margin-top: 26px;
}

.article-block h2,
.side-card h2 {
    margin: 0 0 12px;
    color: var(--chalk-yellow);
    font-size: 24px;
}

.article-block p {
    color: rgba(245, 245, 220, 0.86);
    line-height: 1.9;
    font-size: 16px;
}

.review-block {
    border: 1px solid rgba(255, 250, 205, 0.18);
    background: rgba(15, 26, 15, 0.42);
    border-radius: var(--radius-md);
    padding: 20px;
}

.related-list {
    display: grid;
    gap: 14px;
}

.related-card {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: rgba(15, 26, 15, 0.42);
}

.related-card:hover {
    color: var(--chalk-yellow);
}

.related-card img {
    width: 80px;
    height: 106px;
    object-fit: cover;
    border-radius: 8px;
}

.related-card span {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.related-card strong,
.related-card em {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.related-card strong {
    -webkit-line-clamp: 2;
}

.related-card em {
    -webkit-line-clamp: 1;
    color: rgba(245, 245, 220, 0.6);
    font-style: normal;
}

.search-page-form {
    padding: 18px;
    margin-bottom: 24px;
}

.search-page-form input {
    flex: 1;
}

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

.search-message {
    border: 1px solid rgba(255, 250, 205, 0.2);
    border-radius: var(--radius-md);
    color: rgba(245, 245, 220, 0.75);
    background: rgba(45, 74, 45, 0.5);
    padding: 22px;
}

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

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

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

    .ranking-panel,
    .detail-side {
        position: static;
    }
}

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

    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        min-height: 590px;
        height: 75vh;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, var(--blackboard) 0%, rgba(26, 46, 26, 0.78) 60%, rgba(26, 46, 26, 0.38)),
            rgba(15, 26, 15, 0.36);
    }

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

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

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

    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }

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

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

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

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

@media (max-width: 520px) {
    .site-container {
        width: min(100% - 22px, 1180px);
    }

    .brand-name,
    .footer-brand {
        font-size: 23px;
    }

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

    .hero p {
        font-size: 15px;
    }

    .page-hero,
    .detail-main,
    .chalk-panel {
        padding: 20px;
    }

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

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

    .movie-line,
    .tag-row {
        display: none;
    }

    .detail-meta-grid,
    .movie-grid,
    .movie-grid--compact,
    .search-results {
        grid-template-columns: 1fr;
    }
}
