:root {
    --rose: #e11d48;
    --rose-dark: #be123c;
    --orange: #f97316;
    --amber: #f59e0b;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f9fafb;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 54%, #fff7ed 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1200px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185, #fdba74);
    box-shadow: 0 14px 24px rgba(225, 29, 72, 0.22);
}

.brand-text {
    font-size: 24px;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 700;
    transition: color 0.25s ease;
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: #fff1f2;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--rose);
    border-radius: 999px;
}

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

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

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff7ed;
}

.hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: linear-gradient(105deg, #ffe4e6 0%, #fff7ed 48%, #fef3c7 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(251, 113, 133, 0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(249, 115, 22, 0.11) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.52;
}

.hero-inner {
    position: relative;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0 76px;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
    gap: 48px;
}

.hero-slide.is-active {
    display: grid;
}

.hero-copy {
    max-width: 680px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--rose-dark);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(251, 113, 133, 0.24);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.08);
}

.hero h1 {
    margin: 22px 0 20px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.gradient-text {
    background: linear-gradient(90deg, var(--rose), var(--orange));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 620px;
    margin: 0 0 28px;
    color: #4b5563;
    font-size: clamp(17px, 2vw, 21px);
}

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

.btn-primary,
.btn-secondary,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    box-shadow: 0 18px 30px rgba(225, 29, 72, 0.24);
}

.btn-secondary {
    color: #1f2937;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.btn-light {
    color: var(--rose-dark);
    background: #ffffff;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(17, 24, 39, 0.14);
}

.hero-search {
    display: flex;
    max-width: 560px;
    overflow: hidden;
    border: 1px solid rgba(225, 29, 72, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.hero-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 20px;
    background: transparent;
}

.hero-search button {
    border: 0;
    padding: 15px 22px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    font-weight: 800;
}

.hero-poster {
    position: relative;
    isolation: isolate;
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 28px -18px -18px 18px;
    z-index: -1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(249, 115, 22, 0.26));
    filter: blur(2px);
}

.hero-poster a {
    display: block;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.78);
    border-radius: 32px;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.22);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.hero-panel {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px;
    color: #ffffff;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.82));
}

.hero-panel strong {
    display: block;
    font-size: 22px;
    line-height: 1.2;
}

.hero-panel span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

.hero-controls {
    position: relative;
    width: min(1200px, calc(100% - 32px));
    margin: -42px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-arrows {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.hero-arrow,
.hero-dot {
    border: 0;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: var(--rose);
    font-size: 24px;
}

.hero-dots {
    display: flex;
    gap: 9px;
    pointer-events: auto;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.62;
}

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    opacity: 1;
}

.section,
.page-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 66px 0;
}

.section.alt {
    width: 100%;
    background: linear-gradient(90deg, #fff7ed, #fff1f2);
}

.section.alt .section-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

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

.section-title h2,
.page-title h1,
.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.section-title p,
.page-title p,
.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.more-link {
    color: var(--rose);
    font-weight: 850;
}

.grid-featured {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.card-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.card-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.card-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-title:hover {
    color: var(--rose);
}

.card-meta {
    margin: 8px 0;
    color: #6b7280;
    font-size: 13px;
}

.card-line {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.tag-row span,
.meta-pill,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    color: var(--rose-dark);
    background: #fff1f2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.movie-card.featured {
    position: relative;
}

.movie-card.featured .card-body {
    position: absolute;
    inset: auto 0 0;
    color: #ffffff;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.88));
}

.movie-card.featured .card-title,
.movie-card.featured .card-meta,
.movie-card.featured .card-line {
    color: #ffffff;
}

.movie-card.featured .tag-row span {
    color: #ffffff;
    background: rgba(225, 29, 72, 0.86);
}

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

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

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 26px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(249, 115, 22, 0.22));
}

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

.category-card h2,
.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 950;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #4b5563;
}

.category-samples {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    color: var(--rose-dark);
    font-size: 14px;
    font-weight: 800;
}

.ranking-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.compact-item {
    display: grid;
    grid-template-columns: auto 70px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.compact-item img {
    width: 70px;
    height: 92px;
    border-radius: 14px;
    object-fit: cover;
}

.compact-item strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.compact-item em {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.compact-rank,
.compact-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    font-weight: 900;
}

.compact-dot {
    width: 12px;
    height: 12px;
}

.rank-mark {
    position: absolute;
    left: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.24);
}

.page-hero {
    background: linear-gradient(120deg, #e11d48 0%, #fb7185 48%, #f97316 100%);
    color: #ffffff;
}

.page-title {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 68px 0;
}

.page-title p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 14px;
}

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

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid rgba(225, 29, 72, 0.11);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.filter-search {
    display: flex;
    min-width: 280px;
    flex: 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f9fafb;
}

.filter-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 13px 18px;
    background: transparent;
}

.filter-search button {
    border: 0;
    padding: 0 18px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    font-weight: 850;
}

.filter-selects {
    display: flex;
    gap: 12px;
}

.filter-selects label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 800;
}

.filter-selects select {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 14px;
    color: #374151;
    background: #ffffff;
}

.no-result {
    display: none;
    padding: 34px;
    text-align: center;
    color: #6b7280;
    border-radius: 18px;
    background: #ffffff;
}

.no-result.is-visible {
    display: block;
}

[data-filter-card].is-hidden {
    display: none;
}

.detail-layout {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 70px;
}

.player-card,
.detail-card,
.related-card {
    overflow: hidden;
    margin-bottom: 26px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.09);
}

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

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

.play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.24), rgba(17, 24, 39, 0.78));
    z-index: 2;
}

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

.play-circle {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 22px 42px rgba(225, 29, 72, 0.32);
}

.play-triangle {
    width: 0;
    height: 0;
    margin-left: 7px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 25px solid #ffffff;
}

.play-text {
    font-size: 20px;
    font-weight: 950;
}

.detail-body {
    padding: 26px;
}

.detail-body h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-content {
    display: grid;
    gap: 24px;
}

.detail-content h2,
.related-card h2 {
    margin: 0 0 9px;
    font-size: 22px;
    font-weight: 950;
}

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

.related-card {
    padding: 26px;
}

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

.related-tile img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
    transition: transform 0.25s ease;
}

.related-tile:hover img {
    transform: translateY(-4px);
}

.related-tile strong {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.related-tile span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 52%, #111827);
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
    gap: 34px;
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-weight: 950;
}

.footer-grid p,
.footer-grid li {
    color: #9ca3af;
    font-size: 14px;
}

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

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

.footer-badge {
    display: inline-flex;
    margin-top: 14px;
    padding: 7px 12px;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.72);
    font-size: 13px;
    font-weight: 850;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .grid-cards,
    .grid-cards.compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-slide,
    .hero-slide.is-active {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero-poster a {
        transform: none;
    }

    .hero-controls {
        margin-top: -34px;
    }

    .section-head,
    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-selects {
        flex-wrap: wrap;
    }

    .ranking-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 64px;
    }

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

    .hero-search {
        border-radius: 22px;
        flex-direction: column;
    }

    .hero-search input {
        padding: 15px 18px;
    }

    .hero-search button {
        width: 100%;
    }

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

    .card-body {
        padding: 13px;
    }

    .card-title {
        min-height: 42px;
        font-size: 15px;
    }

    .card-line {
        display: none;
    }

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

    .compact-item {
        grid-template-columns: auto 58px minmax(0, 1fr);
    }

    .compact-item img {
        width: 58px;
        height: 78px;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}
