/* Static movie site stylesheet */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e3a8a;
    --color-primary-light: #dbeafe;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-bg: #f9fafb;
    --color-card: #ffffff;
    --color-dark: #111827;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

img {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    object-fit: cover;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--container);
    height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--color-primary);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.28);
    font-size: 14px;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    transition: color 0.2s ease;
}

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

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    padding: 10px;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #111827;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px 16px;
}

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

.mobile-nav-link {
    padding: 11px 14px;
    border-radius: 12px;
    color: #374151;
    background: #f9fafb;
    font-weight: 600;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 46%, #111827 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 34px 34px;
}

.hero-container {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 82px 20px 88px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 700;
}

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

.hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: #bfdbfe;
}

.hero-copy p {
    max-width: 690px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: 19px;
}

.hero-search {
    display: flex;
    max-width: 620px;
    padding: 6px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    color: #111827;
}

.hero-search button,
.primary-button,
.ghost-button,
.search-box-large button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-search button,
.primary-button,
.search-box-large button {
    color: #ffffff;
    background: var(--color-primary);
}

.primary-button:hover,
.hero-search button:hover,
.search-box-large button:hover {
    transform: translateY(-1px);
    background: #1d4ed8;
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.24);
}

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

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

.hero-stats div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

.hero-stats strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.hero-stats span {
    color: #bfdbfe;
    font-size: 14px;
}

.hero-carousel {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: var(--shadow-lg);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

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

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.08);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.82));
}

.hero-slide-content {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px;
}

.hero-label,
.play-chip,
.movie-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-label {
    padding: 6px 11px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 13px;
}

.hero-slide-content h2 {
    margin: 14px 0 10px;
    font-size: 32px;
    line-height: 1.15;
}

.hero-slide-content p {
    margin: 0 0 14px;
    color: #e5e7eb;
}

.hero-meta,
.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hero-meta span,
.movie-meta span,
.detail-meta span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #374151;
    background: #f3f4f6;
    font-size: 12px;
    font-weight: 700;
}

.hero-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
    position: absolute;
    z-index: 2;
    right: 26px;
    top: 24px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dot.active {
    width: 26px;
    border-radius: 999px;
    background: #ffffff;
}

.feature-strip,
.content-section,
.footer-grid,
.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding-top: 42px;
    padding-bottom: 22px;
}

.feature-item {
    padding: 24px;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.feature-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-text);
    font-weight: 800;
}

.feature-item p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.content-section {
    padding-top: 58px;
    padding-bottom: 58px;
}

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

.section-heading h2,
.ranking-heading h2,
.prose-section h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
}

.section-heading p {
    margin: 7px 0 0;
    color: var(--color-muted);
}

.section-link,
.ranking-heading a {
    color: var(--color-primary);
    font-weight: 800;
}

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

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

.latest-grid,
.all-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-card);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.movie-cover img {
    width: 100%;
    height: 100%;
    transition: transform 0.28s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.07);
}

.movie-year {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.68);
    font-size: 12px;
    backdrop-filter: blur(6px);
}

.play-chip {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
    font-size: 12px;
}

.movie-info {
    padding: 18px;
}

.movie-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.movie-info h3 a:hover {
    color: var(--color-primary);
}

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

.movie-card.compact .movie-cover {
    aspect-ratio: 4 / 3;
}

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

.dark-section {
    max-width: none;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.dark-section > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.dark-section .section-heading,
.dark-section .category-grid {
    padding-left: 20px;
    padding-right: 20px;
}

.dark-section .section-heading p {
    color: #d1d5db;
}

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

.category-tile,
.category-cover {
    display: flex;
    flex-direction: column;
    min-height: 160px;
    padding: 24px;
    border-radius: var(--radius-md);
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #0f172a);
    box-shadow: var(--shadow-md);
}

.category-tile span,
.category-cover span {
    font-size: 18px;
    font-weight: 900;
}

.category-tile strong,
.category-cover strong {
    margin: auto 0 6px;
    font-size: 34px;
    line-height: 1;
}

.category-tile small {
    color: #dbeafe;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
}

.ranking-panel,
.side-card,
.text-card,
.player-card,
.category-card,
.ranking-card {
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.ranking-panel {
    align-self: start;
    position: sticky;
    top: 88px;
    padding: 22px;
}

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

.ranking-heading h2 {
    font-size: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 44px 1fr 52px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: #f9fafb;
}

.rank-row:hover {
    background: #eff6ff;
}

.rank-number {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 900;
}

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

.rank-score {
    color: #f97316;
    font-weight: 900;
    text-align: right;
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #111827);
}

.page-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 72px 20px;
}

.compact-hero h1 {
    margin-top: 14px;
    margin-bottom: 12px;
}

.compact-hero p {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
}

.toolbar,
.search-box-large {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.toolbar-search,
.search-box-large input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    outline: none;
    padding: 0 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.toolbar-search:focus,
.search-box-large input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

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

.filter-button {
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 9px 14px;
    color: #374151;
    background: #ffffff;
    cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.empty-state {
    display: none;
    padding: 28px;
    border: 1px dashed #bfdbfe;
    border-radius: var(--radius-md);
    color: var(--color-primary);
    background: #eff6ff;
    text-align: center;
    font-weight: 800;
}

.empty-state.show {
    display: block;
}

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

.category-card {
    overflow: hidden;
}

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

.category-card-body h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.category-card-body p {
    margin: 0 0 12px;
    color: var(--color-muted);
}

.sample-links a {
    color: var(--color-primary);
    font-weight: 700;
}

.ranking-section {
    max-width: 980px;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    overflow: hidden;
}

.ranking-cover {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ranking-cover img {
    width: 100%;
    height: 100%;
}

.ranking-content {
    padding: 20px;
}

.ranking-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.ranking-content h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.ranking-content p {
    margin: 0 0 14px;
    color: var(--color-muted);
}

.search-box-large {
    grid-template-columns: 1fr auto;
}

.search-summary {
    margin-bottom: 20px;
    color: var(--color-muted);
    font-weight: 700;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(22px) saturate(1.2);
    transform: scale(1.08);
    opacity: 0.38;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.86), rgba(29, 78, 216, 0.55));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 44px 20px 64px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: #dbeafe;
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

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

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

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

.detail-intro h1 {
    margin-bottom: 16px;
}

.detail-one-line {
    max-width: 840px;
    margin: 0 0 18px;
    color: #e5e7eb;
    font-size: 20px;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 24px;
}

.tag-badge {
    padding: 7px 11px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
}

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

.detail-main {
    display: grid;
    gap: 22px;
}

.player-card,
.text-card,
.side-card {
    padding: 22px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000000;
    aspect-ratio: 16 / 9;
}

.video-shell video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), rgba(17, 24, 39, 0.68));
    cursor: pointer;
}

.play-overlay.hidden {
    display: none;
}

.play-circle {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.42);
    font-size: 28px;
}

.player-note {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 14px;
}

.text-card h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.text-card p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px 12px;
    margin: 0;
}

.side-card dt {
    color: var(--color-muted);
    font-weight: 700;
}

.side-card dd {
    margin: 0;
    font-weight: 700;
}

.side-card a {
    color: var(--color-primary);
}

.prose-section {
    max-width: 860px;
    font-size: 17px;
}

.prose-section h2 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 26px;
}

.prose-section p {
    color: #374151;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 34px;
}

.site-footer .brand-icon {
    background: #3b82f6;
}

.footer-brand {
    color: #ffffff;
    margin-bottom: 14px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 17px;
}

.site-footer p,
.site-footer li {
    color: #9ca3af;
    font-size: 14px;
}

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

.site-footer a:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #6b7280;
    text-align: center;
    font-size: 14px;
}

[hidden],
.is-hidden {
    display: none !important;
}

@media (max-width: 1080px) {
    .hero-container,
    .two-column-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }

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

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

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

    .mobile-menu-button {
        display: block;
    }

    .hero-container {
        padding-top: 54px;
        padding-bottom: 58px;
    }

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

    .hero-search,
    .search-box-large {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-search button,
    .search-box-large button {
        width: 100%;
    }

    .hero-stats,
    .feature-strip,
    .featured-grid,
    .latest-grid,
    .all-grid,
    .category-grid,
    .category-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-grid,
    .ranking-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 540px) {
    .nav-container {
        height: 62px;
    }

    .brand {
        font-size: 18px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-intro h1 {
        font-size: 36px;
    }

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

    .hero-stats,
    .feature-strip,
    .featured-grid,
    .latest-grid,
    .all-grid,
    .category-grid,
    .category-card-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .page-hero-inner,
    .detail-hero-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-slide-content {
        padding: 24px;
    }

    .movie-info p {
        min-height: auto;
    }
}
