:root {
  color-scheme: dark;
  --bg-950: #020617;
  --bg-925: #07111f;
  --bg-900: #0f172a;
  --bg-850: #111c31;
  --bg-800: #1e293b;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(34, 211, 238, 0.28);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --gold: #f59e0b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-950);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(59, 130, 246, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--bg-950), var(--bg-900) 52%, var(--bg-950));
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.header-inner {
  min-height: 72px;
  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;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.36);
  font-weight: 900;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20px;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  background: none;
  -webkit-text-fill-color: var(--muted);
}

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

.main-nav a,
.mobile-nav a {
  color: #dbeafe;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 650;
  transition: 0.25s ease;
}

.main-nav a:hover,
.mobile-nav a:hover,
.main-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--cyan);
  background: rgba(30, 41, 59, 0.72);
}

.header-search {
  position: relative;
  flex: 1 1 320px;
  max-width: 360px;
}

.search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: var(--text);
  padding: 12px 18px;
  outline: none;
  transition: 0.25s ease;
}

.search-input:focus {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(480px, 92vw);
  max-height: 70vh;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: none;
}

.search-panel.is-open {
  display: block;
}

.search-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  transition: 0.25s ease;
}

.search-item:hover {
  background: rgba(30, 41, 59, 0.72);
}

.search-item img {
  width: 84px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.search-item strong {
  display: block;
  font-size: 15px;
  color: white;
  margin-bottom: 3px;
}

.search-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: white;
}

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

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

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.42)),
    linear-gradient(0deg, var(--bg-950), rgba(2, 6, 23, 0.18) 38%, rgba(2, 6, 23, 0.86));
}

.hero-content {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 52px;
  padding: 96px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: var(--cyan);
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.1));
  font-weight: 750;
  font-size: 14px;
}

.hero-kicker {
  display: block;
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 0;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #ffffff, #a5f3fc 48%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-movie-title {
  margin: 20px 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  color: white;
  font-weight: 900;
}

.hero-desc {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 760px;
  margin: 0 0 26px;
}

.hero-meta,
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.pill-cyan {
  color: white;
  background: rgba(6, 182, 212, 0.78);
  border-color: rgba(103, 232, 249, 0.35);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: 0.25s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
  box-shadow: 0 16px 44px rgba(34, 211, 238, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(34, 211, 238, 0.32);
}

.btn-ghost {
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.62);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(34, 211, 238, 0.48);
  color: var(--cyan);
  background: rgba(15, 23, 42, 0.9);
}

.hero-poster-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(15, 23, 42, 0.46);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
  transition: 0.35s ease;
}

.hero-poster-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.hero-poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.92));
}

.hero-poster-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.hero-poster-info strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

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

.hero-arrow,
.hero-dot {
  border: 1px solid var(--line);
  color: white;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 24px;
}

.hero-dot {
  width: 36px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
}

.hero-dot.is-active,
.hero-arrow:hover,
.hero-dot:hover {
  background: var(--cyan-strong);
  border-color: var(--cyan);
}

.section {
  position: relative;
  padding: 74px 0;
}

.section-tight {
  padding-top: 36px;
}

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

.section-head h2,
.page-title,
.detail-title {
  margin: 0;
  font-weight: 920;
  letter-spacing: -0.03em;
  color: white;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
}

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

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.category-card,
.info-card,
.panel,
.movie-card {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: 0.28s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(15, 23, 42, 0.82);
}

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

.category-card:hover img {
  opacity: 0.26;
  transform: scale(1.06);
}

.category-card-content {
  position: relative;
  z-index: 2;
}

.category-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--soft);
  margin: 0;
  font-size: 14px;
}

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.36);
  background: rgba(30, 41, 59, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

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

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

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

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.72));
  opacity: 0.86;
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%) scale(0.86);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.92);
  color: white;
  opacity: 0;
  transition: 0.28s ease;
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.4);
}

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

.card-badges {
  position: absolute;
  z-index: 4;
  inset: 12px 12px auto 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 19px;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
}

.movie-card-large {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: stretch;
}

.movie-card-large .card-media {
  aspect-ratio: auto;
  min-height: 360px;
}

.movie-card-large .card-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.movie-card-large .card-body h3 {
  font-size: clamp(30px, 4vw, 46px);
  -webkit-line-clamp: 3;
}

.movie-card-large .card-body p {
  font-size: 16px;
  -webkit-line-clamp: 5;
}

.page-hero {
  padding: 74px 0 34px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background:
    radial-gradient(circle at 18% 16%, rgba(34, 211, 238, 0.12), transparent 25rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), transparent);
}

.page-title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  background: linear-gradient(90deg, white, #a5f3fc 62%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 190px));
  gap: 12px;
  margin: 28px 0 32px;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(34, 211, 238, 0.62);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 68px 160px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.62);
  transition: 0.25s ease;
}

.ranking-item:hover {
  background: rgba(30, 41, 59, 0.78);
  border-color: rgba(34, 211, 238, 0.34);
  transform: translateY(-2px);
}

.rank-no {
  font-size: 30px;
  color: var(--cyan);
  font-weight: 950;
  text-align: center;
}

.ranking-item img {
  width: 160px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.ranking-item h2,
.ranking-item h3 {
  margin: 0 0 6px;
  color: white;
  font-size: 20px;
}

.ranking-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: black;
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: var(--shadow);
}

.player-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.82));
  transition: 0.25s ease;
}

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

.player-overlay-inner {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
}

.play-circle {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
  box-shadow: 0 0 52px rgba(34, 211, 238, 0.42);
  font-size: 34px;
  transform: translateX(2px);
}

.player-overlay strong {
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.2;
}

.player-overlay span:last-child {
  color: #cbd5e1;
  max-width: 640px;
}

.panel {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.panel + .panel,
.player-box + .panel {
  margin-top: 22px;
}

.detail-title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.detail-text h2,
.detail-text h3,
.panel h2,
.panel h3 {
  margin: 0 0 14px;
  color: white;
}

.detail-text p,
.panel p {
  color: #cbd5e1;
  margin: 0 0 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
}

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

.side-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  background: rgba(2, 6, 23, 0.34);
  transition: 0.25s ease;
}

.side-card:hover {
  background: rgba(30, 41, 59, 0.72);
}

.side-card img {
  width: 118px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.side-card strong {
  display: block;
  color: white;
  line-height: 1.32;
  margin-bottom: 4px;
}

.side-card span {
  color: var(--muted);
  font-size: 13px;
}

.meta-table {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.meta-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  color: #cbd5e1;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.meta-row b {
  color: var(--muted);
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65), rgba(2, 6, 23, 0.95));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.footer-inner h3 {
  margin: 0 0 14px;
  color: white;
}

.footer-inner p,
.footer-inner a,
.copyright {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.empty-state {
  display: none;
  padding: 38px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.52);
}

.empty-state.is-visible {
  display: block;
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-content,
  .movie-card-large,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-poster-card {
    max-width: 460px;
    justify-self: center;
  }

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

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

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

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

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

  .hero-carousel,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 62px;
    gap: 26px;
  }

  .hero-actions,
  .section-head,
  .detail-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .category-grid,
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .ranking-item {
    grid-template-columns: 52px 96px 1fr;
  }

  .ranking-item img {
    width: 96px;
    height: 64px;
  }

  .ranking-item .btn {
    grid-column: 1 / -1;
  }

  .side-card {
    grid-template-columns: 96px 1fr;
  }

  .side-card img {
    width: 96px;
    height: 62px;
  }

  .panel {
    padding: 20px;
  }
}
