:root {
    --cyan: #0891b2;
    --blue: #2563eb;
    --teal: #0d9488;
    --dark: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.1);
    --soft: #f1f5f9;
    --radius: 22px;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: #172033;
    background: linear-gradient(180deg, #ecfeff 0%, #eff6ff 42%, #f0fdfa 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--teal));
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.3);
}

.nav-shell,
.footer-shell,
.section-shell,
.hero-inner,
.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark,
.footer-brand span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    font-size: 15px;
}

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

.nav-link,
.mobile-link {
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.22s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    background: rgba(255, 255, 255, 0.18);
    color: #ecfeff;
}

.nav-search,
.mobile-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-search input,
.mobile-search input {
    width: 230px;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 11px 14px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.76);
}

.nav-search button,
.mobile-search button {
    border: 0;
    color: var(--blue);
    background: #ffffff;
    padding: 11px 16px;
    cursor: pointer;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    padding: 10px;
}

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

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

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

.mobile-link {
    display: block;
    padding: 12px 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(110deg, var(--cyan), var(--blue) 52%, var(--teal));
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    filter: blur(36px);
    animation: pulseGlow 7s ease-in-out infinite;
}

.hero::before {
    left: -160px;
    top: -160px;
}

.hero::after {
    right: -180px;
    bottom: -220px;
    animation-delay: 1.7s;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.36;
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 560px;
    padding: 82px 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 44px;
    align-items: center;
}

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dffcff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.8;
    margin: 24px 0 30px;
}

.hero-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn,
.btn-ghost,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 24px rgba(37, 99, 235, 0.24);
}

.btn-light {
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn:hover,
.btn-ghost:hover,
.btn-light:hover {
    transform: translateY(-2px) scale(1.01);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 650px;
    margin-top: 34px;
}

.stat-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.stat-card strong {
    display: block;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span {
    color: #cffafe;
    font-size: 14px;
}

.hero-slider {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(15, 23, 42, 0.32);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.38);
    opacity: 0;
    transform: translateX(28px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.88));
}

.hero-card-copy {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.hero-card-copy em,
.feature-chip,
.movie-meta span,
.detail-chip,
.tag,
.badge-row em {
    font-style: normal;
}

.hero-card-copy em {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.82);
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
}

.hero-card-copy h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
}

.hero-card-copy p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 28px;
    top: 28px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 30px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.active {
    width: 48px;
    background: #ffffff;
}

.section-shell {
    padding: 54px 0;
}

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

.section-head h2,
.page-section h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    color: #172033;
    letter-spacing: -0.025em;
}

.section-head p,
.page-section > p,
.category-intro,
.search-intro {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.movie-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.09);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #164e63);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.82));
    transition: opacity 0.24s ease;
}

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

.badge-row {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge-row em {
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(8, 145, 178, 0.9);
    backdrop-filter: blur(8px);
}

.badge-row em + em {
    background: rgba(37, 99, 235, 0.9);
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%) scale(0.78);
    opacity: 0;
    transition: all 0.24s ease;
}

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

.movie-info {
    display: grid;
    gap: 9px;
    padding: 15px;
}

.movie-info strong {
    color: #172033;
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card:hover .movie-info strong {
    color: var(--cyan);
}

.movie-desc {
    color: #64748b;
    line-height: 1.65;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}

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

.movie-meta span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-band {
    border-radius: 32px;
    padding: 34px;
    color: #ffffff;
    background: linear-gradient(120deg, #7c3aed, #db2777);
    box-shadow: 0 26px 70px rgba(124, 58, 237, 0.26);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.feature-band h2 {
    margin: 0 0 10px;
    font-size: 34px;
}

.feature-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: 24px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: var(--shadow);
}

.category-card:nth-child(3n + 2) {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #0d9488, #0891b2);
}

.category-card h2,
.category-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: 25px;
}

.category-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.category-card span {
    position: relative;
    z-index: 2;
    font-weight: 900;
}

.category-card .mini-posters {
    position: absolute;
    right: -10px;
    bottom: -18px;
    display: flex;
    gap: 8px;
    transform: rotate(-8deg);
    opacity: 0.54;
}

.mini-posters img {
    width: 82px;
    height: 112px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 52px 64px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.rank-no {
    font-size: 28px;
    font-weight: 950;
    color: var(--cyan);
    text-align: center;
}

.rank-item img {
    width: 64px;
    height: 86px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-copy {
    min-width: 0;
}

.rank-copy strong,
.rank-copy em {
    display: block;
}

.rank-copy strong {
    font-size: 17px;
    color: #172033;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-copy em {
    color: #64748b;
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    color: #ffffff;
    background: linear-gradient(110deg, var(--cyan), var(--blue), var(--teal));
}

.page-hero p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    font-size: 18px;
}

.page-shell {
    padding: 48px 0;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 14px;
    margin: 24px 0 30px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.filter-panel input,
.filter-panel select,
.search-box input,
.search-box select {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    background: #ffffff;
    color: #172033;
    outline: 0;
    padding: 13px 14px;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-box input:focus,
.search-box select:focus {
    border-color: rgba(8, 145, 178, 0.56);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.watch-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 54px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #64748b;
    margin: 10px 0 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--cyan);
    font-weight: 800;
}

.watch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
    align-items: start;
}

.player-card,
.detail-card,
.page-section {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-shell {
    position: relative;
    overflow: hidden;
    background: #020617;
    aspect-ratio: 16 / 9;
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(8, 145, 178, 0.14), rgba(15, 23, 42, 0.72));
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-core {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.play-core span {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 20px 45px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
    font-size: 36px;
    padding-left: 5px;
}

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

.player-copy {
    padding: 26px;
}

.player-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.03em;
}

.player-copy p {
    margin: 0;
    color: #64748b;
    line-height: 1.85;
    font-size: 17px;
}

.detail-card {
    padding: 18px;
}

.detail-card img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 16px;
}

.detail-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-list p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: #64748b;
}

.detail-list strong {
    color: #172033;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag,
.detail-chip,
.feature-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--cyan);
    background: #e0f7fa;
    font-size: 13px;
    font-weight: 800;
}

.page-section {
    padding: 30px;
    margin-top: 26px;
}

.page-section p {
    color: #475569;
    line-height: 1.95;
    font-size: 16px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.search-box {
    display: grid;
    grid-template-columns: 1fr 180px 180px auto;
    gap: 12px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    margin-bottom: 26px;
}

.search-box button {
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    font-weight: 900;
    padding: 0 22px;
    cursor: pointer;
}

.empty-result {
    padding: 38px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    color: #64748b;
    text-align: center;
}

.site-footer {
    color: #e2e8f0;
    background: linear-gradient(180deg, #1e293b, #0f172a);
    margin-top: 30px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px;
    padding: 46px 0 30px;
}

.footer-about p {
    color: #94a3b8;
    line-height: 1.85;
    margin: 18px 0 0;
}

.footer-group h2 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 18px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border-top: 1px solid rgba(226, 232, 240, 0.12);
    padding: 18px 0 26px;
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
}

.hidden-card {
    display: none !important;
}

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-inner,
    .watch-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        min-height: 460px;
    }

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

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

@media (max-width: 760px) {
    .nav-shell,
    .footer-shell,
    .section-shell,
    .hero-inner,
    .page-shell,
    .watch-shell,
    .mobile-nav,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

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

    .hero-inner {
        min-height: auto;
        padding: 58px 0 46px;
        gap: 32px;
    }

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

    .hero-stats,
    .filter-panel,
    .search-box {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        min-height: 430px;
    }

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

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

    .feature-band {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .section-head {
        display: block;
    }

    .player-copy,
    .page-section {
        padding: 22px;
    }

    .rank-item {
        grid-template-columns: 44px 58px 1fr;
    }

    .rank-no {
        font-size: 23px;
    }
}

@media (max-width: 420px) {
    .movie-info {
        padding: 12px;
    }

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

    .movie-desc {
        font-size: 13px;
    }

    .hero-card-copy {
        padding: 24px;
    }

    .hero-card-copy h2 {
        font-size: 25px;
    }
}
