:root {
    --bg: #0f172a;
    --bg-soft: #111827;
    --panel: #1e293b;
    --panel-deep: #0b1120;
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --line: rgba(148, 163, 184, 0.18);
    --emerald: #10b981;
    --emerald-bright: #34d399;
    --cyan: #22d3ee;
    --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.28);
}

.site-header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: transparent;
    background: linear-gradient(90deg, var(--emerald-bright), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #052e2b;
    background: linear-gradient(135deg, var(--emerald-bright), var(--cyan));
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.28);
    font-size: 14px;
}

.desktop-nav,
.mobile-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--muted-strong);
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald-bright);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
}

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

.hero-slider {
    position: relative;
    min-height: 76vh;
    overflow: hidden;
    background: var(--panel-deep);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.85s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(34, 211, 238, 0.18), transparent 32%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.74) 48%, rgba(15, 23, 42, 0.34) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
    padding: 80px 0 90px;
}

.hero-content h1,
.hero-content h2 {
    width: min(820px, 100%);
    margin: 0 0 12px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-content h3 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 42px);
    color: var(--emerald-bright);
}

.hero-content p {
    width: min(720px, 100%);
    margin: 0 0 18px;
    color: var(--muted-strong);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 7px 16px;
    color: var(--emerald-bright);
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 26px;
}

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--line);
    border-radius: 10px;
}

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

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

.primary-btn {
    color: white;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    box-shadow: 0 16px 34px rgba(16, 185, 129, 0.28);
}

.secondary-btn,
.section-more {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid var(--line);
}

.primary-btn:hover,
.secondary-btn:hover,
.section-more:hover {
    transform: translateY(-2px) scale(1.01);
}

.secondary-btn:hover,
.section-more:hover {
    border-color: rgba(52, 211, 153, 0.45);
    color: var(--emerald-bright);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.18);
    border-radius: 999px;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: #475569;
    border: 0;
    border-radius: 999px;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 34px;
    background: var(--emerald-bright);
}

.section {
    padding: 64px 0;
}

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

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(52, 211, 153, 0.32);
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.62);
}

.movie-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #020617;
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.8), transparent 58%);
    opacity: 0.74;
    transition: opacity 0.25s ease;
}

.movie-card-link:hover .movie-poster::after {
    opacity: 0.9;
}

.movie-poster img,
.feature-poster img,
.detail-poster img,
.compact-card img,
.ranking-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-poster img {
    transition: transform 0.5s ease;
}

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

.movie-year {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 9px;
    color: white;
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 750;
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.76);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.movie-play.large {
    width: 76px;
    height: 76px;
    font-size: 26px;
}

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

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

.movie-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--emerald-bright);
    font-size: 13px;
    font-weight: 700;
}

.movie-meta-row em {
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

.movie-card h3 {
    display: -webkit-box;
    min-height: 54px;
    margin: 0 0 8px;
    overflow: hidden;
    color: white;
    font-size: 20px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

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

.category-chip {
    min-height: 136px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, 0.35);
}

.category-chip span {
    color: var(--emerald-bright);
    font-size: 20px;
    font-weight: 850;
}

.category-chip em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-style: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.feature-band {
    padding: 82px 0;
    background: radial-gradient(circle at 20% 10%, rgba(16, 185, 129, 0.12), transparent 30%), rgba(15, 23, 42, 0.4);
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 46px;
    align-items: center;
}

.feature-poster {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.feature-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 62%);
}

.feature-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
}

.feature-copy p {
    margin: 0 0 18px;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.8;
}

.page-hero {
    position: relative;
    padding: 96px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(30, 41, 59, 0.86));
    border-bottom: 1px solid var(--line);
}

.page-hero.small {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: -0.035em;
}

.page-hero p {
    width: min(760px, 100%);
    margin: 0;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.28);
}

.filter-panel label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 700;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: white;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 13px;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(52, 211, 153, 0.6);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.searchable-grid [hidden] {
    display: none !important;
}

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

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

.ranking-row {
    min-width: 0;
}

.ranking-link {
    display: grid;
    grid-template-columns: 58px 78px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.ranking-link:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.32);
}

.ranking-number {
    color: var(--emerald-bright);
    font-size: 28px;
    font-weight: 900;
}

.ranking-link img {
    width: 78px;
    height: 58px;
    border-radius: 12px;
}

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

.ranking-info,
.ranking-tag {
    color: var(--muted);
    font-size: 13px;
}

.ranking-tag {
    padding: 5px 10px;
    color: var(--emerald-bright);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.22);
    border-radius: 999px;
}

.category-overview-list {
    display: grid;
    gap: 26px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
    gap: 28px;
    padding: 24px;
    background: rgba(30, 41, 59, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
}

.category-overview-copy span {
    color: var(--emerald-bright);
    font-weight: 850;
}

.category-overview-copy h2 {
    margin: 10px 0 12px;
    font-size: 30px;
}

.category-overview-copy p {
    margin: 0 0 20px;
    color: var(--muted-strong);
    line-height: 1.75;
}

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

.compact-card {
    position: relative;
    min-height: 110px;
    overflow: hidden;
    border-radius: 16px;
    background: #020617;
}

.compact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 60%);
}

.compact-card img {
    position: absolute;
    inset: 0;
}

.compact-card span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: white;
    font-size: 14px;
    font-weight: 800;
}

.detail-hero {
    padding: 64px 0 48px;
    background:
        radial-gradient(circle at 80% 12%, rgba(16, 185, 129, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(15, 23, 42, 1), rgba(30, 41, 59, 0.76));
    border-bottom: 1px solid var(--line);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--emerald-bright);
}

.detail-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.detail-one-line {
    margin: 0 0 22px;
    color: var(--muted-strong);
    font-size: 20px;
    line-height: 1.7;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 26px;
}

.tag-list span {
    padding: 6px 11px;
    color: var(--emerald-bright);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.player-section {
    padding-top: 44px;
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: white;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.18));
    border: 0;
    font-size: 18px;
    font-weight: 850;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    color: white;
    background: rgba(16, 185, 129, 0.92);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(16, 185, 129, 0.34);
    font-size: 28px;
}

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

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
}

.movie-article,
.side-panel {
    padding: 28px;
    background: rgba(30, 41, 59, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
}

.movie-article h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.movie-article p {
    margin: 0 0 24px;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.9;
}

.side-panel {
    display: grid;
    gap: 12px;
}

.site-footer {
    padding: 54px 0 24px;
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.site-footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 34px;
}

.footer-brand p {
    width: min(360px, 100%);
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--emerald-bright);
}

.footer-copy {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    color: #64748b;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
    font-size: 13px;
}

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

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

    .ranking-list.compact {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: block;
    }

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

    .hero-content {
        padding-top: 70px;
    }

    .hero-arrow {
        display: none;
    }

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

    .feature-grid,
    .detail-layout,
    .article-grid,
    .category-overview-card,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .category-chip-grid,
    .compact-grid,
    .filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ranking-link {
        grid-template-columns: 44px 64px minmax(0, 1fr);
    }

    .ranking-info,
    .ranking-tag {
        display: none;
    }
}

@media (max-width: 560px) {
    .site-logo {
        font-size: 20px;
    }

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

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

    .hero-content h3 {
        font-size: 26px;
    }

    .hero-content p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-actions,
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .category-chip-grid,
    .compact-grid,
    .filter-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 46px 0;
    }

    .page-hero {
        padding: 74px 0 52px;
    }

    .detail-hero {
        padding: 44px 0 34px;
    }

    .movie-card h3 {
        min-height: auto;
    }
}
