* {
    box-sizing: border-box;
}

:root {
    --page-bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffbeb;
    --text: #292524;
    --muted: #78716c;
    --brand: #ea580c;
    --brand-dark: #9a3412;
    --brand-soft: #fed7aa;
    --amber: #d97706;
    --line: rgba(146, 64, 14, 0.14);
    --shadow: 0 22px 55px rgba(154, 52, 18, 0.13);
    --shadow-soft: 0 12px 30px rgba(154, 52, 18, 0.09);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.24), transparent 32rem),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 44%, #fff7ed 100%);
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 251, 235, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #ea580c 52%, #9a3412);
    box-shadow: 0 12px 26px rgba(234, 88, 12, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    color: #92400e;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.brand-text small {
    color: #d97706;
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a,
.mobile-nav a {
    color: #92400e;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.25s ease;
}

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

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: #92400e;
}

.mobile-nav {
    display: none;
    padding: 0 24px 18px;
    border-top: 1px solid var(--line);
}

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

.hero {
    position: relative;
    max-width: 1240px;
    min-height: 620px;
    margin: 26px auto 0;
    padding: 0 24px;
}

.hero-slider {
    position: relative;
    height: 620px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 46px;
    padding: 64px;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.95) 0%, rgba(124, 45, 18, 0.78) 48%, rgba(17, 24, 39, 0.42) 100%),
        radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.45), transparent 23rem);
}

.hero-bg img {
    filter: blur(4px) saturate(1.15);
    transform: scale(1.06);
}

.hero-content,
.hero-cover {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    color: #fed7aa;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(254, 215, 170, 0.34);
    border-radius: 999px;
    background: rgba(255, 247, 237, 0.1);
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 680px;
    margin: 0;
    color: #ffedd5;
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.detail-tags,
.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
    padding: 6px 10px;
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    background: #ffedd5;
}

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

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.32);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-small {
    min-height: 36px;
    padding: 0 16px;
    color: #ffffff;
    background: var(--brand);
}

.hero-cover {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.hero-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.72));
}

.hero-cover span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.92);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.hero-controls button {
    width: 42px;
    height: 42px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
    cursor: pointer;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 9px !important;
    height: 9px !important;
    padding: 0;
    border: 0 !important;
    background: rgba(255, 255, 255, 0.42) !important;
}

.hero-dot.active {
    width: 26px !important;
    background: #ffffff !important;
}

.search-band,
.page-hero,
.toolbar,
.content-section,
.detail-content,
.player-section,
.rank-list {
    max-width: 1240px;
    margin: 28px auto;
    padding-left: 24px;
    padding-right: 24px;
}

.search-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
    align-items: center;
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.search-band h2,
.section-head h2,
.story-card h2 {
    margin: 0;
    color: #7c2d12;
    font-size: 30px;
    letter-spacing: -0.03em;
}

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

.hero-search,
.search-inline {
    display: flex;
    gap: 10px;
}

.hero-search input,
.search-inline input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 237, 213, 0.52);
}

.hero-search button {
    min-width: 110px;
    height: 50px;
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    font-weight: 900;
    cursor: pointer;
}

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

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

.section-head.compact {
    margin-bottom: 16px;
}

.section-more {
    color: var(--brand);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    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-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #f97316);
}

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

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

.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #ffffff;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.68);
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.86);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
    padding: 14px;
}

.movie-title {
    display: block;
    color: #292524;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-title:hover {
    color: var(--brand);
}

.movie-desc {
    min-height: 42px;
    margin: 8px 0 10px;
    color: #78716c;
    font-size: 13px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #a16207;
    font-size: 12px;
    font-weight: 700;
}

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

.movie-tags span {
    padding: 4px 8px;
    background: #fff7ed;
}

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

.category-tile {
    position: relative;
    min-height: 184px;
    padding: 18px;
    overflow: hidden;
    border-radius: 22px;
    background: #111827;
    box-shadow: var(--shadow-soft);
}

.category-tile img {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(124, 45, 18, 0.82));
}

.category-tile span,
.category-tile small {
    position: relative;
    z-index: 1;
    display: block;
    color: #ffffff;
}

.category-tile span {
    margin-top: 70px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile small {
    margin-top: 8px;
    color: #ffedd5;
    line-height: 1.5;
}

.page-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    min-height: 260px;
    padding-top: 42px;
    padding-bottom: 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 85% 15%, rgba(254, 215, 170, 0.7), transparent 24rem),
        linear-gradient(135deg, #7c2d12, #ea580c 56%, #f59e0b);
    box-shadow: var(--shadow);
}

.page-hero span {
    color: #fed7aa;
    font-weight: 900;
}

.page-hero h1 {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 720px;
    color: #ffedd5;
    font-size: 17px;
}

.slim-hero {
    min-height: 220px;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.sticky-toolbar {
    position: sticky;
    top: 78px;
    z-index: 20;
    backdrop-filter: blur(12px);
}

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

.filter-chip {
    min-height: 38px;
    padding: 0 14px;
    color: #92400e;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff7ed;
    font-weight: 800;
    cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    border-color: transparent;
    background: var(--brand);
}

.search-inline {
    min-width: 300px;
}

.search-inline.wide {
    width: min(520px, 100%);
}

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

.category-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-cover {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #fed7aa, #f97316);
}

.category-card h2 {
    margin: 0;
    color: #7c2d12;
}

.category-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.category-preview a {
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 72px 24px;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.42;
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.98), rgba(124, 45, 18, 0.84)),
        linear-gradient(180deg, rgba(17, 24, 39, 0.24), rgba(17, 24, 39, 1));
}

.detail-backdrop img {
    filter: blur(5px) saturate(1.1);
    transform: scale(1.06);
}

.detail-layout {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.detail-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    background: linear-gradient(135deg, #fed7aa, #f97316);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #fed7aa;
    font-size: 14px;
    font-weight: 800;
}

.detail-intro h1 {
    margin: 18px 0 16px;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.lead {
    max-width: 820px;
    color: #ffedd5;
    font-size: 18px;
    line-height: 1.8;
}

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

.detail-meta span {
    color: #ffffff;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.detail-tags span {
    color: #fed7aa;
    background: rgba(255, 237, 213, 0.12);
    border: 1px solid rgba(254, 215, 170, 0.22);
}

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

.movie-player {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
}

.video-el {
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
    cursor: pointer;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 12px;
    color: #ffffff;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-cover span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 20px 45px rgba(234, 88, 12, 0.38);
    font-size: 34px;
}

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

.movie-player.is-playing .play-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.story-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.story-card p {
    color: #44403c;
    font-size: 16px;
}

.detail-nav-links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.detail-nav-links a {
    color: #92400e;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    font-weight: 800;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 64px 104px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.rank-item.top {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    border-radius: 16px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    font-weight: 900;
}

.rank-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #fed7aa, #f97316);
}

.rank-info h2 {
    margin: 0;
    color: #292524;
    font-size: 20px;
}

.rank-info h2 a:hover {
    color: var(--brand);
}

.rank-info p {
    margin: 8px 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.movie-card-wide {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.wide-poster {
    aspect-ratio: auto;
    height: 100%;
}

.site-footer {
    margin-top: 56px;
    color: #fed7aa;
    background: linear-gradient(135deg, #7c2d12, #b45309);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px 24px;
    display: grid;
    gap: 18px;
}

.footer-brand {
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.footer-inner p {
    margin: 8px 0 0;
    color: #ffedd5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: #ffffff;
    font-weight: 800;
}

.copyright {
    font-size: 13px;
}

.hidden-by-filter {
    display: none !important;
}

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

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

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

    .hero-cover {
        height: 430px;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        margin-top: 18px;
    }

    .hero-slider {
        height: 760px;
        border-radius: 26px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
        padding: 34px;
    }

    .hero-cover {
        width: min(300px, 100%);
        height: 390px;
        margin: 0 auto;
    }

    .search-band,
    .toolbar,
    .page-hero,
    .section-head,
    .detail-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .search-band {
        display: grid;
    }

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

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

    .category-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }

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

    .detail-poster {
        width: min(300px, 100%);
    }

    .rank-item {
        grid-template-columns: 46px 82px minmax(0, 1fr);
    }

    .rank-item .btn {
        grid-column: 2 / -1;
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .hero,
    .search-band,
    .page-hero,
    .toolbar,
    .content-section,
    .detail-content,
    .player-section,
    .rank-list {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-text small {
        display: none;
    }

    .hero-slider {
        height: 720px;
    }

    .hero h1,
    .detail-intro h1 {
        font-size: 40px;
    }

    .hero p,
    .lead {
        font-size: 15px;
    }

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

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

    .category-cover {
        height: 190px;
    }

    .search-inline,
    .hero-search {
        min-width: 0;
        width: 100%;
    }

    .hero-search {
        flex-direction: column;
    }

    .rank-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .rank-cover {
        display: none;
    }

    .rank-info {
        grid-column: 2;
    }
}
