:root {
  color-scheme: dark;
  --bg-deep: #020617;
  --bg-main: #0f172a;
  --bg-panel: #111827;
  --bg-card: #1e293b;
  --line: rgba(148, 163, 184, 0.22);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --orange: #f97316;
  --green: #22c55e;
  --yellow: #facc15;
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.32);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.15), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #111827 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

button,
a,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.94), rgba(8, 47, 73, 0.96));
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.24);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-4deg);
}

.brand-text,
.footer-brand strong {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: transparent;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.nav-link {
  position: relative;
  padding: 23px 0 20px;
  color: #cbd5e1;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--cyan);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  color: #fff;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-search input,
.mobile-search input {
  width: 230px;
  padding: 10px 14px;
}

.nav-search button,
.mobile-search button {
  padding: 10px 16px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #0891b2);
  cursor: pointer;
}

.nav-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(34, 211, 238, 0.8);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.menu-toggle {
  display: none;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

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

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  color: #e2e8f0;
  padding: 12px 14px;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.6);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.02);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, transform 1.2s ease;
  pointer-events: none;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 43%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 720px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #0891b2);
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 640px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
}

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

.hero-tags span,
.detail-tags span {
  padding: 8px 12px;
  color: #cffafe;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.45);
}

.hero-actions,
.inline-head,
.detail-meta,
.filter-panel,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  background: linear-gradient(90deg, var(--blue), #0891b2);
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.24);
  border: 0;
  cursor: pointer;
}

.primary-btn.full {
  width: 100%;
}

.ghost-btn,
.section-link {
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(15, 23, 42, 0.62);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(34, 211, 238, 0.18);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.section {
  padding: 64px 0;
}

.page-main {
  padding-top: 38px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-head p,
.page-hero p,
.site-footer p,
.content-box p,
.poster-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.inline-head {
  justify-content: space-between;
}

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

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

.category-tile {
  position: relative;
  min-height: 168px;
  padding: 26px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.2), transparent 40%),
    linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: var(--shadow);
}

.tile-glow {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.28);
  filter: blur(2px);
}

.category-tile strong {
  position: relative;
  display: block;
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 900;
}

.category-tile em {
  position: relative;
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.7;
}

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

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

.movie-card {
  min-width: 0;
}

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 20px;
  background: rgba(30, 41, 59, 0.86);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: var(--shadow);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

.poster-frame img,
.player-cover img,
.poster-panel img,
.rank-row img,
.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-frame img,
.player-cover img {
  transition: transform 0.45s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

.play-badge,
.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.9);
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #06b6d4);
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.3);
}

.play-badge {
  width: 48px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.type-badge,
.year-badge {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
}

.type-badge {
  left: 12px;
  top: 12px;
  background: linear-gradient(90deg, var(--blue), #0891b2);
}

.year-badge {
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.66);
}

.card-body {
  display: block;
  padding: 18px;
}

.card-body strong {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.25s ease;
}

.card-link:hover .card-body strong {
  color: var(--cyan);
}

.card-desc {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 10px 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: block;
  overflow: hidden;
  color: #67e8f9;
  font-size: 0.86rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-section {
  padding: 46px 0;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.22), rgba(8, 47, 73, 0.24));
}

.rank-list.wide {
  grid-template-columns: 1fr;
}

.rank-row {
  display: grid;
  grid-template-columns: 52px 120px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 12px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.52);
  transition: transform 0.25s ease, background 0.25s ease;
}

.rank-row:hover {
  transform: translateX(6px);
  background: rgba(30, 41, 59, 0.86);
}

.rank-num {
  color: var(--yellow);
  font-size: 1.45rem;
  font-weight: 950;
}

.rank-row img {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #0f172a;
}

.rank-copy strong,
.mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 850;
}

.rank-copy em,
.mini-card em {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.rank-score {
  color: #67e8f9;
  font-weight: 800;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 36px;
  margin-bottom: 64px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.75), rgba(2, 6, 23, 0.8));
}

.stats-strip article {
  text-align: center;
}

.stats-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 2rem;
}

.stats-strip span {
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at right top, rgba(34, 211, 238, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(30, 64, 175, 0.28), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow);
}

.filter-panel {
  padding: 18px;
  margin-bottom: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.58);
}

.filter-panel input {
  flex: 1 1 320px;
  padding: 13px 16px;
}

.filter-panel select {
  min-width: 150px;
  padding: 13px 16px;
}

.search-page-form {
  margin-top: 22px;
}

.search-page-form input {
  flex: 1 1 320px;
  min-height: 52px;
  padding: 0 18px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: #67e8f9;
  text-decoration: none;
}

.breadcrumbs strong {
  color: #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.player-cover.is-hidden {
  display: none;
}

.big-play {
  z-index: 2;
  width: 78px;
  height: 78px;
  font-size: 1.5rem;
}

.detail-copy {
  padding: 30px 0 0;
}

.detail-meta {
  margin: 0 0 20px;
  color: #cbd5e1;
}

.detail-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
}

.content-box {
  margin: 20px 0;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(30, 41, 59, 0.72);
}

.content-box.soft {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18), rgba(8, 47, 73, 0.18));
}

.content-box h2,
.side-list h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.35rem;
}

.detail-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.poster-panel,
.side-list {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.7);
}

.poster-panel img {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #0f172a;
}

.poster-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.2rem;
}

.mini-card {
  display: grid;
  grid-template-columns: 46px 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.mini-card:hover {
  transform: translateX(4px);
  background: rgba(30, 41, 59, 0.75);
}

.mini-card img {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #0f172a;
}

.mini-rank {
  color: var(--cyan);
  font-weight: 900;
}

.site-footer {
  margin-top: 70px;
  color: #cbd5e1;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(135deg, #020617, #0f172a 55%, #111827);
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.1rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 32px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.is-hidden-card {
  display: none !important;
}

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

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

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

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

  .detail-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    height: 64px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero-slider {
    min-height: 620px;
    height: 82vh;
  }

  .hero-content {
    padding: 30px 0 20px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .section {
    padding: 42px 0;
  }

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .compact-grid,
  .rank-list,
  .stats-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-score {
    grid-column: 2 / -1;
  }

  .page-hero {
    padding: 32px 22px;
  }

  .filter-panel {
    align-items: stretch;
  }

  .filter-panel input,
  .filter-panel select,
  .search-page-form input,
  .search-page-form button {
    width: 100%;
  }

  .detail-copy h1,
  .section-head h2,
  .page-hero h1 {
    font-size: 2rem;
  }

  .content-box,
  .poster-panel,
  .side-list {
    padding: 18px;
  }

  .mini-card {
    grid-template-columns: 42px 94px 1fr;
  }
}
