:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --indigo: #4f46e5;
    --purple: #7c3aed;
    --text: #111827;
    --muted: #6b7280;
    --soft: #f3f4f6;
    --line: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #f9fafb;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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;
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #d1d5db;
    font-size: 15px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
}

.header-search {
    display: flex;
    align-items: center;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #ffffff;
    padding: 10px 14px;
    background: transparent;
}

.header-search input::placeholder {
    color: #cbd5e1;
}

.header-search button {
    border: 0;
    color: #ffffff;
    padding: 10px 16px;
    background: var(--blue);
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

.hero-section {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 48%, #faf5ff 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.36;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6zM0 6c3.314 0 6 2.686 6 6s-2.686 6-6 6v6c6.627 0 12-5.373 12-12S6.627 0 0 0v6zm0 36c3.314 0 6 2.686 6 6s-2.686 6-6 6v6c6.627 0 12-5.373 12-12S6.627 30 0 30v12z' fill='rgba(59,130,246,0.12)'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 660px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-track {
    width: 100%;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeIn 0.55s ease both;
}

.hero-copy {
    display: grid;
    gap: 22px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #dbeafe;
    font-weight: 700;
    font-size: 14px;
}

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

.hero-copy p {
    max-width: 640px;
    margin: 0;
    color: #374151;
    font-size: 19px;
    line-height: 1.85;
}

.hero-tags,
.tag-row,
.detail-tags,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tags span,
.detail-tags a,
.rank-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: #374151;
    background: #eef2ff;
    font-size: 13px;
}

.detail-tags a {
    color: #1d4ed8;
    background: #dbeafe;
    font-weight: 700;
}

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

.primary-button,
.secondary-button,
.more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.secondary-button {
    color: var(--blue);
    background: #ffffff;
    border: 2px solid var(--blue);
}

.primary-button:hover,
.secondary-button:hover,
.more-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--soft-shadow);
}

.hero-poster {
    position: relative;
    display: block;
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transform: translateZ(0);
}

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

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08), transparent);
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-play,
.poster-play {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.hero-play {
    top: 50%;
    left: 50%;
    width: 78px;
    height: 78px;
    font-size: 34px;
    transform: translate(-50%, -50%);
}

.hero-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: #ffffff;
    font-weight: 700;
    z-index: 3;
}

.hero-controls {
    position: absolute;
    left: 0;
    bottom: 42px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #bfdbfe;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

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

.section-block {
    padding: 68px 0;
}

.tinted-section {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, #eef2ff, #eff6ff 50%, #faf5ff);
}

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

.section-heading h2,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.section-heading a {
    color: var(--blue);
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    padding: 22px;
    color: #ffffff;
    background: #0f172a;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 0.4s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.86), rgba(37, 99, 235, 0.28));
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-card span {
    display: block;
    margin-top: 80px;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    margin: 10px 0 0;
    color: #dbeafe;
    line-height: 1.6;
    font-size: 14px;
}

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

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

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

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

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

.movie-card {
    min-width: 0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.poster-frame {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.poster-frame img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.poster-region,
.poster-year {
    position: absolute;
    top: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 5px 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.poster-region {
    left: 10px;
    background: var(--blue);
}

.poster-year {
    right: 10px;
    background: rgba(17, 24, 39, 0.74);
    backdrop-filter: blur(8px);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-card-body h2,
.rank-card h2,
.category-large-card h2 {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
}

.movie-card-body h2 {
    min-height: 46px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta-line,
.movie-one-line {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 13px;
}

.movie-one-line {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: 10px;
}

.tag-row span {
    padding: 4px 8px;
    font-size: 12px;
    background: #f3f4f6;
}

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

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

.full-rank-list {
    padding-bottom: 72px;
}

.rank-card {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.rank-card a {
    display: grid;
    grid-template-columns: 56px 132px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 12px;
}

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

.rank-card img {
    width: 132px;
    height: 82px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-card-body {
    min-width: 0;
}

.rank-card-body p {
    margin: 6px 0 8px;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta span {
    padding: 4px 8px;
    font-size: 12px;
}

.page-main {
    padding: 34px 0 70px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    border-radius: 28px;
    padding: 48px;
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #4f46e5 55%, #7c3aed);
    box-shadow: var(--soft-shadow);
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

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

.slim-hero {
    padding: 42px;
}

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

.breadcrumb a {
    color: var(--blue);
    font-weight: 700;
}

.filter-panel {
    margin: 0 0 26px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

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

.filter-grid label {
    display: grid;
    gap: 8px;
    color: #374151;
    font-weight: 700;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    padding: 12px 14px;
    color: #111827;
    background: #ffffff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-grid input:focus,
.filter-grid select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-item.is-hidden {
    display: none;
}

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

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

.category-large-cover {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #111827;
}

.category-large-cover img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.88;
}

.category-large-cover span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 10px;
    color: #ffffff;
    background: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.category-large-card p {
    color: var(--muted);
    line-height: 1.75;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.sample-links a {
    max-width: 100%;
    border-radius: 999px;
    padding: 7px 10px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 13px;
    font-weight: 700;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 28px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    overflow: hidden;
    color: #ffffff;
    background: #000000;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.22), rgba(0, 0, 0, 0.72));
}

.player-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.92);
    font-size: 38px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
}

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

.detail-card,
.sticky-panel {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.detail-card {
    padding: 28px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
    color: var(--muted);
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    background: #f3f4f6;
}

.detail-tags {
    margin: 0 0 22px;
}

.detail-card section {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.detail-card h2,
.sticky-panel h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 22px;
}

.detail-card p {
    margin: 0;
    color: #374151;
    line-height: 1.9;
    font-size: 16px;
}

.review-box {
    border-radius: 18px;
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
}

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

.sticky-panel {
    position: sticky;
    top: 96px;
    padding: 20px;
}

.side-rank-list .rank-card a {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 12px;
}

.side-rank-list .rank-number {
    display: none;
}

.side-rank-list .rank-card img {
    width: 98px;
    height: 66px;
}

.side-rank-list .rank-card-body p,
.side-rank-list .tag-row {
    display: none;
}

.more-link {
    width: 100%;
    margin-top: 18px;
    color: #ffffff;
    background: var(--blue);
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.7fr;
    gap: 36px;
    padding: 42px 0;
}

.footer-brand p {
    max-width: 430px;
    color: #94a3b8;
    line-height: 1.75;
}

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

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

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

.footer-grid a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    text-align: center;
    color: #94a3b8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 14px;
        padding: 12px 0;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .header-search {
        width: 280px;
    }

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

    .detail-sidebar .sticky-panel {
        position: static;
    }

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

    .feature-grid,
    .home-rank-list,
    .category-large-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-inner {
        width: min(100% - 24px, 1180px);
    }

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

    .site-nav {
        display: none;
        padding: 8px 0 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-search {
        order: 4;
        width: 100%;
    }

    .hero-section,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        padding: 46px 0 72px;
    }

    .hero-slide.is-active {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-poster,
    .hero-poster img {
        width: 100%;
        min-height: 320px;
        height: 320px;
    }

    .hero-controls {
        left: 0;
        bottom: 26px;
    }

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

    .category-grid,
    .movie-grid,
    .compact-grid,
    .feature-grid,
    .listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .page-hero,
    .slim-hero,
    .detail-card {
        padding: 24px;
        border-radius: 22px;
    }

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

    .rank-card a {
        grid-template-columns: 44px 104px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .rank-card img {
        width: 104px;
        height: 72px;
    }

    .rank-card-body p,
    .rank-card .tag-row {
        display: none;
    }

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

@media (max-width: 460px) {
    .category-grid,
    .movie-grid,
    .compact-grid,
    .feature-grid,
    .listing-grid {
        grid-template-columns: 1fr;
    }

    .rank-card a,
    .side-rank-list .rank-card a {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .rank-number {
        display: none;
    }

    .rank-card img,
    .side-rank-list .rank-card img {
        width: 92px;
        height: 64px;
    }
}
