* {
    box-sizing: border-box;
}

:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-700: #b45309;
    --amber-900: #78350f;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --stone-950: #0c0a09;
    --max-width: 1280px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 18px 45px rgba(28, 25, 23, 0.14);
    --shadow-strong: 0 24px 70px rgba(12, 10, 9, 0.32);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--stone-800);
    background: linear-gradient(180deg, var(--stone-50) 0%, #fff7ed 46%, var(--amber-50) 100%);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(120, 53, 15, 0.92), rgba(120, 53, 15, 0.26));
    color: var(--amber-50);
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-solid {
    background: rgba(120, 53, 15, 0.96);
    box-shadow: 0 16px 40px rgba(12, 10, 9, 0.24);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    color: var(--amber-900);
    background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.28);
}

.brand-text {
    font-size: 22px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link,
.mobile-nav-link {
    color: var(--amber-100);
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--amber-300);
}

.menu-button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(253, 230, 138, 0.28);
    border-radius: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--amber-50);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-button span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 18px;
    flex-wrap: wrap;
    gap: 12px 18px;
}

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

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: var(--stone-950);
}

.hero-track {
    position: relative;
    min-height: 720px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
    align-items: center;
    gap: 52px;
    padding: 122px max(24px, calc((100vw - var(--max-width)) / 2 + 24px)) 118px;
    color: var(--amber-50);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(12, 10, 9, 0.93), rgba(41, 37, 36, 0.74) 44%, rgba(120, 53, 15, 0.36)), linear-gradient(180deg, rgba(12, 10, 9, 0.2), rgba(12, 10, 9, 0.82)), var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.08);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(250, 250, 249, 0), var(--stone-50));
}

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

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

.eyebrow {
    margin: 0 0 10px;
    color: var(--amber-500);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: var(--amber-200);
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.08;
}

.hero-summary {
    max-width: 690px;
    margin: 0 0 24px;
    color: var(--stone-200);
    font-size: 18px;
    line-height: 1.9;
}

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

.hero-tags span,
.detail-meta span,
.tag,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border: 1px solid rgba(251, 191, 36, 0.24);
    border-radius: 999px;
    color: var(--amber-100);
    background: rgba(120, 53, 15, 0.34);
    font-size: 12px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.ghost-button,
.section-more,
.text-link,
.pager-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    color: var(--stone-950);
    background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
    box-shadow: 0 16px 32px rgba(245, 158, 11, 0.3);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.text-link:hover,
.pager-links a:hover {
    transform: translateY(-2px);
}

.ghost-button {
    color: var(--amber-100);
    border: 1px solid rgba(253, 230, 138, 0.32);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.hero-poster {
    align-self: center;
    justify-self: end;
    width: min(100%, 390px);
    aspect-ratio: 2 / 3;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
}

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

.hero-tabs {
    position: absolute;
    left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
    right: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
    bottom: 38px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.hero-tab {
    min-height: 64px;
    border: 1px solid rgba(253, 230, 138, 0.18);
    border-radius: 18px;
    padding: 12px 14px;
    color: var(--amber-100);
    background: rgba(12, 10, 9, 0.48);
    backdrop-filter: blur(14px);
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tab span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: var(--stone-950);
    background: var(--amber-400);
    font-weight: 900;
}

.hero-tab.active {
    border-color: rgba(252, 211, 77, 0.72);
    background: rgba(120, 53, 15, 0.72);
}

.search-band,
.content-section,
.rank-section,
.detail-content,
.player-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 42px 24px;
}

.search-panel {
    border: 1px solid rgba(180, 83, 9, 0.18);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.search-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(24px, 3.5vw, 38px);
    color: var(--stone-900);
}

.search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin: 18px 0;
}

.search-box input {
    min-height: 50px;
    border: 1px solid var(--stone-200);
    border-radius: 999px;
    padding: 0 18px;
    color: var(--stone-900);
    background: #fff;
    outline: none;
}

.search-box input:focus {
    border-color: var(--amber-400);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.16);
}

.search-box button,
.filter-pill {
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    min-height: 42px;
    color: var(--stone-800);
    background: var(--amber-100);
    cursor: pointer;
    font-weight: 800;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-pill.active,
.filter-pill:hover,
.search-box button:hover {
    color: var(--stone-950);
    background: var(--amber-400);
}

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

.section-heading h2 {
    margin: 0;
    color: var(--stone-900);
    font-size: clamp(26px, 3.4vw, 42px);
    letter-spacing: -0.03em;
}

.section-more,
.text-link,
.pager-links a {
    color: var(--amber-900);
    background: var(--amber-100);
}

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

.movie-card {
    min-width: 0;
    border: 1px solid rgba(180, 83, 9, 0.14);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 26px rgba(28, 25, 23, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 22px 45px rgba(28, 25, 23, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--stone-900);
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(12, 10, 9, 0), rgba(12, 10, 9, 0.76));
}

.play-dot {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--stone-950);
    background: var(--amber-400);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--stone-950);
    background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
    font-weight: 900;
    z-index: 2;
}

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

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--stone-900);
    font-size: 16px;
    line-height: 1.35;
}

.movie-meta,
.movie-line {
    margin: 0;
    color: var(--stone-500);
    font-size: 13px;
    line-height: 1.6;
}

.movie-line {
    min-height: 42px;
    margin-top: 8px;
}

.card-tags {
    margin-top: 12px;
}

.card-tags .tag {
    color: var(--amber-900);
    background: var(--amber-100);
    border-color: rgba(245, 158, 11, 0.18);
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--amber-50);
    background: var(--stone-900);
    box-shadow: var(--shadow-soft);
}

.category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(12, 10, 9, 0.12), rgba(12, 10, 9, 0.82)), var(--tile-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.34s ease;
}

.category-tile:hover::before {
    transform: scale(1.07);
}

.category-tile span,
.category-tile strong {
    position: relative;
    z-index: 1;
}

.category-tile span {
    color: var(--amber-300);
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong {
    margin-top: 8px;
    color: var(--stone-200);
    font-size: 14px;
    line-height: 1.6;
}

.rank-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 30px;
    align-items: stretch;
}

.rank-copy,
.rank-list,
.synopsis-card,
.rank-table-wrap,
.category-card {
    border: 1px solid rgba(180, 83, 9, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.rank-copy {
    padding: 32px;
}

.rank-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 48px);
}

.rank-copy p {
    color: var(--stone-500);
    line-height: 1.9;
}

.rank-list {
    margin: 0;
    padding: 16px;
    list-style: none;
}

.rank-list li + li {
    border-top: 1px solid var(--stone-200);
}

.rank-list a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas: "num title" "num meta";
    gap: 2px 14px;
    padding: 12px;
    border-radius: 16px;
}

.rank-list a:hover {
    background: var(--amber-50);
}

.rank-list span {
    grid-area: num;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--stone-950);
    background: var(--amber-300);
    font-weight: 900;
}

.rank-list strong {
    grid-area: title;
    color: var(--stone-900);
}

.rank-list em {
    grid-area: meta;
    color: var(--stone-500);
    font-style: normal;
    font-size: 13px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 140px max(24px, calc((100vw - var(--max-width)) / 2 + 24px)) 86px;
    color: var(--amber-50);
    background: var(--stone-950);
}

.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(12, 10, 9, 0.94), rgba(120, 53, 15, 0.48)), var(--page-image, var(--detail-image));
    background-size: cover;
    background-position: center;
}

.page-hero > div,
.detail-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    color: var(--stone-200);
    font-size: 18px;
    line-height: 1.9;
}

.small-hero {
    min-height: 360px;
    background: linear-gradient(135deg, var(--stone-950), var(--amber-900));
}

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

.category-card {
    overflow: hidden;
}

.category-card-cover {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--stone-900);
}

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

.category-card-body {
    padding: 22px;
}

.category-card-body h2 {
    margin: 0 0 10px;
    color: var(--stone-900);
}

.category-card-body p {
    color: var(--stone-500);
    line-height: 1.75;
}

.detail-hero {
    min-height: 620px;
}

.detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    margin: 0 auto;
}

.detail-poster {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--amber-200);
    font-size: 14px;
}

.breadcrumb em {
    color: var(--stone-200);
    font-style: normal;
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-line {
    max-width: 780px;
    color: var(--stone-200);
    font-size: 18px;
    line-height: 1.9;
}

.detail-meta {
    margin: 22px 0 14px;
}

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

.player-section {
    margin-top: -70px;
    position: relative;
    z-index: 3;
}

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

.movie-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--amber-50);
    background: radial-gradient(circle at center, rgba(120, 53, 15, 0.18), rgba(12, 10, 9, 0.72));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.big-play {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--stone-950);
    background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
    font-size: 30px;
}

.player-overlay strong {
    font-size: 24px;
}

.player-overlay em {
    color: var(--stone-200);
    font-style: normal;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.synopsis-card {
    padding: 28px;
}

.synopsis-card h2 {
    margin: 0 0 14px;
    color: var(--stone-900);
    font-size: 28px;
}

.synopsis-card p:last-child {
    color: var(--stone-600);
    line-height: 2;
    margin-bottom: 0;
}

.accent-card {
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.78));
}

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

.pager-links {
    display: flex;
    gap: 10px;
}

.compact-card .movie-line {
    display: none;
}

.rank-table-wrap {
    overflow-x: auto;
}

.rank-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.rank-table th,
.rank-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--stone-200);
    text-align: left;
}

.rank-table th {
    color: var(--amber-900);
    background: var(--amber-100);
}

.rank-table a {
    color: var(--stone-900);
    font-weight: 800;
}

.is-hidden-card,
.rank-table tr.is-hidden-card {
    display: none;
}

.site-footer {
    margin-top: 50px;
    color: var(--stone-300);
    background: linear-gradient(180deg, var(--stone-900), var(--stone-950));
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 42px 24px;
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.footer-inner p {
    max-width: 760px;
    margin: 0;
    line-height: 1.8;
    color: var(--stone-400);
}

.footer-links {
    display: flex;
    gap: 18px;
    color: var(--amber-200);
}

.copyright {
    font-size: 13px;
}

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

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

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

    .menu-button {
        display: flex;
    }

    .nav-wrap {
        height: 66px;
    }

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

    .hero,
    .hero-track {
        min-height: 780px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 112px;
        padding-bottom: 170px;
    }

    .hero-poster {
        justify-self: start;
        width: 210px;
        transform: rotate(0deg);
    }

    .hero-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .rank-section,
    .detail-content,
    .detail-hero-inner {
        grid-template-columns: 1fr;
    }

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

    .player-section {
        margin-top: -42px;
    }
}

@media (max-width: 640px) {
    .movie-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .section-heading,
    .search-box {
        grid-template-columns: 1fr;
        display: grid;
        align-items: stretch;
    }

    .hero-tabs {
        left: 18px;
        right: 18px;
        bottom: 24px;
        gap: 8px;
    }

    .hero-tab {
        min-height: 54px;
        font-size: 12px;
    }

    .hero-tab span {
        width: 26px;
        height: 26px;
    }

    .search-band,
    .content-section,
    .rank-section,
    .detail-content,
    .player-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-hero,
    .detail-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

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

    .movie-line {
        display: none;
    }

    .card-tags .tag:nth-child(n+2) {
        display: none;
    }
}
