:root {
    color-scheme: dark;
    --bg-950: #020617;
    --bg-900: #0f172a;
    --bg-850: #111827;
    --bg-800: #1e293b;
    --bg-700: #334155;
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --cyan: #0891b2;
    --cyan-light: #22d3ee;
    --blue: #2563eb;
    --gold: #f59e0b;
    --border: rgba(148, 163, 184, 0.18);
    --shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 5%, rgba(8, 145, 178, 0.18), transparent 32rem),
        radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.14), transparent 30rem),
        linear-gradient(180deg, var(--bg-950), var(--bg-900) 42%, var(--bg-950));
}

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

img {
    display: block;
    max-width: 100%;
    background: #0b1220;
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 68px;
}

.site-logo,
.footer-logo {
    flex: 0 0 auto;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--cyan-light), #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--soft);
    font-size: 14px;
    white-space: nowrap;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
    color: var(--cyan-light);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-search input,
.mobile-search input {
    width: 230px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    outline: none;
    padding: 10px 12px;
    color: var(--text);
    background: rgba(30, 41, 59, 0.72);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.22);
}

.header-search button,
.mobile-search button,
.primary-button,
.ghost-button,
.sort-button,
.filter-chip {
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-search button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 26px rgba(8, 145, 178, 0.24);
}

.primary-button:hover,
.header-search button:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    color: var(--cyan-light);
    background: rgba(8, 145, 178, 0.08);
}

.ghost-button:hover {
    border-color: var(--cyan-light);
    background: rgba(8, 145, 178, 0.18);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: #fff;
    background: rgba(30, 41, 59, 0.65);
}

.mobile-nav {
    display: none;
    padding: 18px 24px 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.96);
}

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

.mobile-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--cyan-light);
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.mobile-search input {
    width: 100%;
}

.global-search-panel {
    position: fixed;
    top: 76px;
    left: 50%;
    z-index: 90;
    width: min(900px, calc(100% - 32px));
    max-height: min(70vh, 620px);
    overflow: auto;
    transform: translateX(-50%);
    border: 1px solid rgba(34, 211, 238, 0.26);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
}

.search-panel-inner {
    padding: 18px;
}

.search-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.search-panel-head h2 {
    margin: 0;
    font-size: 20px;
}

.search-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(148, 163, 184, 0.15);
    cursor: pointer;
}

.search-results-grid {
    display: grid;
    gap: 12px;
}

.search-result {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
}

.search-result img {
    width: 150px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
}

.search-result h3 {
    margin: 2px 0 6px;
    font-size: 17px;
}

.search-result p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 14px;
}

.hero {
    position: relative;
    height: min(72vh, 720px);
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.34) 48%, rgba(2, 6, 23, 0.18)),
        linear-gradient(0deg, var(--bg-950), rgba(2, 6, 23, 0.2) 42%, transparent 70%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 68px;
    transform: translateX(-50%);
    max-width: 1180px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: rgba(8, 145, 178, 0.92);
    box-shadow: 0 0 30px rgba(8, 145, 178, 0.35);
}

.hero h1 {
    margin: 0 0 10px;
    max-width: 780px;
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.hero h2 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: clamp(28px, 4.4vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 720px;
    margin: 0 0 28px;
    color: #cbd5e1;
    font-size: clamp(16px, 2.2vw, 20px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.48);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.68);
    transform: translateY(-1px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-entry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -28px;
    position: relative;
    z-index: 6;
}

.quick-entry a {
    padding: 18px 20px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 18px;
    color: var(--text);
    font-weight: 700;
    text-align: center;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.quick-entry a:hover {
    transform: translateY(-3px);
    border-color: var(--cyan-light);
}

.content-section {
    padding: 58px 0 8px;
}

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

.section-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--cyan-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.03em;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(30, 41, 59, 0.48);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.72);
    box-shadow: 0 18px 40px rgba(8, 145, 178, 0.18);
}

.card-link {
    display: block;
    height: 100%;
}

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

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

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

.card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
    transition: opacity 0.25s ease;
}

.movie-card:hover .card-cover::after {
    opacity: 1;
}

.card-duration,
.card-category,
.card-play,
.mini-cover span {
    position: absolute;
    z-index: 2;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.card-duration {
    right: 10px;
    bottom: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.74);
}

.card-category {
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    background: rgba(8, 145, 178, 0.9);
}

.card-play {
    left: 50%;
    top: 50%;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    opacity: 0;
    border-radius: 50%;
    font-size: 22px;
    background: rgba(8, 145, 178, 0.88);
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
    padding: 16px;
}

.card-body h3 {
    display: -webkit-box;
    min-height: 3em;
    margin: 0 0 8px;
    overflow: hidden;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.2s ease;
}

.movie-card:hover h3,
.mini-card:hover h3,
.rank-row:hover h2 a {
    color: var(--cyan-light);
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #94a3b8;
    font-size: 12px;
}

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

.category-feature,
.overview-category,
.detail-card,
.side-card,
.player-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(30, 41, 59, 0.42);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.category-feature {
    padding: 22px;
}

.category-feature-head,
.overview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.category-feature h3,
.overview-head h2 {
    margin: 0 0 5px;
    font-size: 22px;
}

.category-feature p,
.overview-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.category-feature-head a {
    flex: 0 0 auto;
    color: var(--cyan-light);
    font-size: 14px;
    font-weight: 700;
}

.mini-grid,
.rank-card-grid,
.side-list {
    display: grid;
    gap: 14px;
}

.mini-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 13px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.52);
}

.mini-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.mini-cover span {
    right: 6px;
    bottom: 6px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.72);
}

.mini-card h3 {
    display: -webkit-box;
    margin: 0 0 7px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.2s ease;
}

.mini-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.page-hero {
    padding: 70px 0 42px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background:
        radial-gradient(circle at 25% 20%, rgba(8, 145, 178, 0.2), transparent 32rem),
        linear-gradient(90deg, rgba(8, 145, 178, 0.08), rgba(37, 99, 235, 0.08));
}

.compact-hero {
    padding-top: 58px;
}

.page-hero h1 {
    max-width: 860px;
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 800px;
    margin: 0;
    color: var(--soft);
    font-size: 17px;
}

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

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

.overview-grid {
    display: grid;
    gap: 30px;
    padding: 44px 0 18px;
}

.overview-category {
    padding: 24px;
}

.category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 28px;
}

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

.filter-chip,
.sort-button {
    padding: 9px 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--soft);
    background: rgba(30, 41, 59, 0.65);
}

.filter-chip:hover,
.sort-button:hover,
.filter-chip.active,
.sort-button.active {
    border-color: rgba(34, 211, 238, 0.64);
    color: #fff;
    background: rgba(8, 145, 178, 0.72);
}

.rank-list {
    display: grid;
    gap: 16px;
    padding: 40px 0 20px;
}

.rank-row {
    display: grid;
    grid-template-columns: 58px 180px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(30, 41, 59, 0.46);
}

.rank-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.rank-cover {
    overflow: hidden;
    border-radius: 14px;
}

.rank-cover img {
    width: 180px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.rank-info p {
    margin: 0 0 10px;
    color: var(--muted);
}

.small-button {
    padding: 8px 14px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    gap: 28px;
    padding: 34px 0 20px;
}

.player-card {
    overflow: hidden;
    margin-bottom: 22px;
    background: #020617;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.22));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.overlay-play {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    background: rgba(8, 145, 178, 0.92);
    box-shadow: 0 0 36px rgba(8, 145, 178, 0.45);
}

.player-overlay strong {
    font-size: 19px;
}

.detail-card {
    padding: 24px;
}

.detail-title h1 {
    margin: 0 0 16px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
}

.tag-list span {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--cyan-light);
    font-size: 13px;
    background: rgba(15, 23, 42, 0.72);
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.68);
}

.detail-stats div {
    text-align: center;
}

.detail-stats strong {
    display: block;
    color: #fff;
    font-size: 20px;
}

.detail-stats span {
    color: var(--muted);
    font-size: 12px;
}

.text-block {
    margin-top: 24px;
}

.text-block h2,
.side-card h2 {
    position: relative;
    margin: 0 0 12px;
    padding-left: 14px;
    font-size: 21px;
}

.text-block h2::before,
.side-card h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 22px;
    border-radius: 999px;
    background: var(--cyan);
}

.text-block p {
    margin: 0;
    padding: 18px;
    border-radius: 14px;
    color: #cbd5e1;
    white-space: pre-line;
    background: rgba(15, 23, 42, 0.55);
}

.detail-side {
    min-width: 0;
}

.side-card {
    position: sticky;
    top: 92px;
    padding: 20px;
}

.site-footer {
    margin-top: 60px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 36px 0;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: var(--muted);
}

.footer-grid h2 {
    margin: 0 0 12px;
    font-size: 17px;
}

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

.footer-grid a:hover {
    color: var(--cyan-light);
}

.footer-bottom {
    padding: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
    font-size: 13px;
}

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

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 12px;
        font-size: 13px;
    }

    .header-search input {
        width: 180px;
    }

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

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

    .side-card {
        position: static;
    }
}

@media (max-width: 840px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 560px;
        height: 68vh;
    }

    .hero-content {
        bottom: 72px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .quick-entry {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .category-toolbar,
    .category-feature-head,
    .overview-head {
        align-items: stretch;
        flex-direction: column;
    }

    .rank-row {
        grid-template-columns: 42px 120px 1fr;
    }

    .rank-row .primary-button {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .rank-cover img {
        width: 120px;
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero {
        min-height: 590px;
    }

    .hero-content {
        bottom: 82px;
    }

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

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

    .quick-entry,
    .movie-grid,
    .small-grid,
    .detail-stats {
        grid-template-columns: 1fr;
    }

    .mini-card,
    .search-result {
        grid-template-columns: 1fr;
    }

    .mini-card img,
    .search-result img {
        width: 100%;
    }

    .rank-row {
        grid-template-columns: 38px 1fr;
    }

    .rank-cover {
        grid-column: 1 / -1;
    }

    .rank-cover img {
        width: 100%;
    }

    .rank-info,
    .rank-row .primary-button {
        grid-column: 1 / -1;
    }
}
