:root {
    --rose: #e11d48;
    --rose-dark: #be123c;
    --pink: #db2777;
    --amber: #f59e0b;
    --emerald: #10b981;
    --ink: #1f2937;
    --muted: #6b7280;
    --soft: #fff7f8;
    --line: rgba(225, 29, 72, 0.14);
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 24px 60px rgba(225, 29, 72, 0.16);
    --shadow-soft: 0 16px 40px rgba(31, 41, 55, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(251, 113, 133, 0.22), transparent 28rem),
        linear-gradient(135deg, #fff1f2 0%, #ffffff 48%, #fffbeb 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(244, 63, 94, 0.14);
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 32px rgba(225, 29, 72, 0.28);
    background: linear-gradient(135deg, #fb7185 0%, #db2777 100%);
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 21px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--rose), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

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

.nav-links a,
.mobile-nav a {
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--rose);
}

.search-box {
    position: relative;
    width: min(300px, 26vw);
    flex: 0 0 auto;
}

.search-box input,
.local-tools input,
.local-tools select {
    width: 100%;
    border: 1px solid rgba(244, 63, 94, 0.20);
    outline: none;
    border-radius: 999px;
    padding: 12px 18px;
    color: #374151;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(225, 29, 72, 0.07);
}

.search-box input:focus,
.local-tools input:focus,
.local-tools select:focus {
    border-color: rgba(225, 29, 72, 0.48);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.10);
}

.search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(430px, calc(100vw - 32px));
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.search-panel.open {
    display: grid;
    gap: 8px;
}

.search-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 9px;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-item:hover {
    background: #fff1f2;
    transform: translateY(-1px);
}

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

.search-item strong {
    display: block;
    margin-bottom: 4px;
}

.search-item span,
.search-empty {
    color: var(--muted);
    font-size: 13px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff1f2;
    cursor: pointer;
}

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

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

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

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.94), rgba(219, 39, 119, 0.90), rgba(245, 158, 11, 0.82));
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: linear-gradient(to top, #fff7f8, transparent);
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.26;
    transform: scale(1.04);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    gap: 48px;
    align-items: center;
    padding: 86px 0 120px;
}

.hero-copy {
    max-width: 760px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.hero h1 span {
    color: #fde68a;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--rose);
    background: #fff;
    box-shadow: 0 18px 36px rgba(127, 29, 29, 0.20);
}

.btn-primary:hover {
    background: #fff1f2;
}

.btn-ghost {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(12px);
}

.btn-rose {
    color: #fff;
    background: linear-gradient(90deg, var(--rose), var(--pink));
    box-shadow: 0 18px 36px rgba(225, 29, 72, 0.25);
}

.hero-poster {
    position: relative;
    align-self: stretch;
    min-height: 460px;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 80px rgba(31, 41, 55, 0.32);
}

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

.hero-slide.active .hero-poster img {
    transform: scale(1.05);
}

.hero-poster-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32));
    backdrop-filter: blur(12px);
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dots button.active {
    width: 34px;
    background: #fff;
}

.section {
    padding: 72px 0;
}

.section.soft {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.72), rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.72));
}

.section.tint {
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.88), rgba(253, 242, 248, 0.72));
}

.section-head {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 16px 34px rgba(225, 29, 72, 0.24);
}

.section-title h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    letter-spacing: -0.03em;
}

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

.movie-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    height: 330px;
    overflow: hidden;
    background: #fee2e2;
}

.movie-card.large-card .movie-cover,
.movie-grid.large .movie-cover {
    height: 430px;
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.64), transparent 54%);
    pointer-events: none;
}

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

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

.movie-type,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    border-radius: 999px;
    padding: 6px 11px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--rose), var(--pink));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.movie-type {
    right: 14px;
}

.rank-badge {
    left: 14px;
    background: linear-gradient(90deg, var(--amber), #f97316);
}

.movie-play-mark {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--rose);
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-meta {
    color: var(--rose);
    font-size: 13px;
    font-weight: 800;
}

.movie-card h3,
.horizontal-card h3 {
    margin: 8px 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover {
    color: var(--rose);
}

.movie-card p,
.horizontal-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #9f1239;
    font-size: 12px;
    font-weight: 700;
    background: #ffe4e6;
}

.movie-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: #374151;
    font-size: 13px;
    font-weight: 800;
}

.horizontal-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.horizontal-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.horizontal-cover {
    position: relative;
    height: 205px;
    overflow: hidden;
    border-radius: 18px;
    background: #fee2e2;
}

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

.rank-index {
    position: absolute;
    left: 10px;
    top: 10px;
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), #f97316);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.category-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.category-tile {
    position: relative;
    min-height: 178px;
    overflow: hidden;
    padding: 22px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.92), rgba(219, 39, 119, 0.82), rgba(245, 158, 11, 0.70));
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
}

.category-tile strong {
    display: block;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--rose);
    background: rgba(255, 255, 255, 0.92);
    font-size: 22px;
}

.category-tile h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.category-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 64px;
    color: #fff;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.95), rgba(219, 39, 119, 0.90), rgba(245, 158, 11, 0.72));
}

.page-hero .main-wrap {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 64px);
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.8;
}

.local-tools {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.local-tools input {
    max-width: 420px;
    border-radius: 18px;
}

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

.filter-chips button {
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    color: #9f1239;
    font-weight: 800;
    background: #ffe4e6;
    cursor: pointer;
}

.filter-chips button.active {
    color: #fff;
    background: linear-gradient(90deg, var(--rose), var(--pink));
}

.no-results {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    padding: 28px;
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.detail-shell {
    padding: 34px 0 76px;
}

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 14px;
}

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

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 34px;
    align-items: stretch;
}

.detail-poster {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow);
    background: #fee2e2;
}

.detail-poster img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.detail-info {
    padding: 34px;
    border: 1px solid rgba(244, 63, 94, 0.14);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: var(--shadow-soft);
}

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-lead {
    margin: 0 0 24px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

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

.fact {
    padding: 14px;
    border-radius: 18px;
    background: #fff1f2;
}

.fact span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.fact strong {
    display: block;
    margin-top: 4px;
    color: #9f1239;
    font-size: 17px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #111827;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.32);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.player-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.62), rgba(225, 29, 72, 0.42));
}

.player-cover span {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--rose);
    font-size: 32px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease;
}

.player-cover:hover span {
    transform: scale(1.08);
}

.player-shell.is-playing .player-cover {
    opacity: 0;
    pointer-events: none;
}

.content-card {
    padding: 30px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.content-card p {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.9;
}

.site-footer {
    border-top: 1px solid rgba(244, 63, 94, 0.14);
    background: linear-gradient(135deg, #fff1f2, #fdf2f8, #fffbeb);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 14px;
    font-weight: 900;
    color: #9f1239;
}

.site-footer p {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

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

.footer-links a {
    color: var(--muted);
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(244, 63, 94, 0.14);
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 16px;
    }

    .search-box {
        width: 230px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 74px;
    }

    .hero-poster {
        display: none;
    }

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

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

    .detail-hero {
        grid-template-columns: 280px 1fr;
    }

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

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

@media (max-width: 760px) {
    .header-inner {
        min-height: 66px;
        gap: 12px;
    }

    .brand-copy small {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .search-box {
        width: auto;
        flex: 1 1 auto;
    }

    .menu-toggle {
        display: inline-block;
    }

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

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 70px 0 110px;
    }

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

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

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

    .movie-cover,
    .movie-card.large-card .movie-cover,
    .movie-grid.large .movie-cover {
        height: 260px;
    }

    .horizontal-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-card {
        grid-template-columns: 116px 1fr;
    }

    .horizontal-cover {
        height: 158px;
    }

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

    .local-tools {
        align-items: stretch;
        flex-direction: column;
    }

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

    .detail-poster img {
        min-height: 420px;
    }

    .detail-info {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .brand-copy strong {
        font-size: 18px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .search-box input {
        padding: 10px 12px;
        font-size: 13px;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .movie-grid,
    .movie-grid.large {
        grid-template-columns: 1fr;
    }

    .movie-cover,
    .movie-card.large-card .movie-cover,
    .movie-grid.large .movie-cover {
        height: 360px;
    }

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

    .detail-facts {
        grid-template-columns: 1fr;
    }
}
