:root {
  --bg: #030712;
  --bg-soft: #0f172a;
  --card: #111827;
  --card-soft: rgba(31, 41, 55, 0.72);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --orange: #f97316;
  --blue: #38bdf8;
  --gold: #facc15;
  --green: #22c55e;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #0b1120 0%, #020617 38%, #111827 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(17, 24, 39, 0.94), rgba(3, 7, 18, 0.94));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.28);
  font-size: 14px;
}

.logo-text {
  font-size: 23px;
  background: linear-gradient(90deg, #ef4444, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: rgba(239, 68, 68, 0.16);
  transform: translateY(-1px);
}

.top-search,
.mobile-search,
.big-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.big-search input,
.toolbar input,
.toolbar select {
  min-width: 0;
  color: #fff;
  background: rgba(31, 41, 55, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.24);
  outline: none;
  border-radius: 999px;
  padding: 11px 16px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input {
  width: 210px;
}

.top-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.toolbar input:focus,
.toolbar select:focus {
  border-color: rgba(248, 113, 113, 0.8);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}

.top-search button,
.mobile-search button,
.big-search button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  color: #fff;
  background: rgba(31, 41, 55, 0.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
}

.hero-slider {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(220, 38, 38, 0.22), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.35) 54%, rgba(0, 0, 0, 0.65)),
    linear-gradient(90deg, rgba(3, 7, 18, 0.84), rgba(3, 7, 18, 0.2));
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.28);
}

.hero-content h2,
.page-hero h1 {
  margin: 18px 0 14px;
  max-width: 860px;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-content p,
.page-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--subtle);
}

.hero-meta span,
.detail-meta span,
.card-meta span,
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.64);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
}

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

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

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 18px 34px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 24px 44px rgba(220, 38, 38, 0.38);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  right: calc((100% - min(1180px, calc(100% - 32px))) / 2);
  bottom: 38px;
  z-index: 3;
  display: flex;
  gap: 9px;
}

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

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

.category-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.6);
}

.category-strip-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
}

.category-strip h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

.category-strip p {
  margin: 0;
  color: var(--muted);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.category-pills a {
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(31, 41, 55, 0.72);
  border-radius: 999px;
  padding: 9px 14px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.category-pills a:hover {
  color: #fff;
  background: rgba(220, 38, 38, 0.78);
  transform: translateY(-2px);
}

.page-stack {
  padding: 48px 0;
}

.page-stack > section + section,
.page-stack > div + section,
.page-stack > section + div {
  margin-top: 58px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
}

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

.section-link {
  color: #fb923c;
  font-weight: 900;
  white-space: nowrap;
}

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

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

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

.movie-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.98), rgba(17, 24, 39, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 113, 113, 0.72);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.36);
}

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

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.movie-card:hover .poster-link img,
.horizontal-card:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.poster-gradient,
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.76));
}

.corner-label,
.duration-label,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #fff;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.corner-label {
  left: 10px;
  top: 10px;
  background: var(--red);
}

.duration-label {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.75);
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

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

.movie-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover {
  color: #f87171;
}

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

.card-meta {
  gap: 6px;
}

.card-meta span {
  padding: 3px 8px;
  font-size: 12px;
}

.panel-section {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 26px;
  padding: 30px;
}

.blue-panel {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(88, 28, 135, 0.18));
}

.red-panel {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.22), rgba(154, 52, 18, 0.18));
}

.gold-panel {
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.23), rgba(88, 28, 135, 0.12));
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 275px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

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

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

.horizontal-list {
  display: grid;
  gap: 16px;
}

.horizontal-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(31, 41, 55, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 16px;
  padding: 14px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.horizontal-card:hover {
  transform: translateY(-3px);
  background: rgba(31, 41, 55, 0.96);
  border-color: rgba(248, 113, 113, 0.45);
}

.rank-box {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.horizontal-thumb {
  flex: 0 0 132px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
}

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

.horizontal-body {
  min-width: 0;
}

.horizontal-body h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
}

.subpage-main {
  min-height: 70vh;
}

.page-hero {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(220, 38, 38, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(2, 6, 23, 0.94));
}

.channel-hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(2, 6, 23, 0.95));
}

.library-hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(56, 189, 248, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(3, 7, 18, 0.95));
}

.ranking-hero {
  background:
    radial-gradient(circle at 74% 12%, rgba(250, 204, 21, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(69, 26, 3, 0.76), rgba(3, 7, 18, 0.95));
}

.search-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(168, 85, 247, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(30, 27, 75, 0.76), rgba(3, 7, 18, 0.95));
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  background: #111827;
  box-shadow: var(--shadow);
}

.category-card a,
.category-card img {
  width: 100%;
  height: 100%;
}

.category-card a {
  display: block;
}

.category-card img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.category-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.category-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.64);
}

.toolbar input {
  flex: 1;
}

.toolbar select {
  width: 155px;
}

.big-search {
  max-width: 720px;
  margin-top: 28px;
}

.big-search input {
  flex: 1;
  padding: 15px 20px;
}

.big-search button {
  padding: 14px 26px;
}

.search-empty {
  grid-column: 1 / -1;
  padding: 38px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(31, 41, 55, 0.7);
  color: var(--muted);
  text-align: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--subtle);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #f87171;
}

.detail-hero {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(220, 38, 38, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(31, 41, 55, 0.72), rgba(15, 23, 42, 0.82));
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 10;
  background: #111827;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

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

.detail-info h1 {
  margin: 18px 0 14px;
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lead-text {
  color: var(--muted);
  font-size: 19px;
}

.detail-meta,
.tag-list {
  margin-top: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-section,
.story-section {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.movie-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.movie-player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(220, 38, 38, 0.22), transparent 33%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22));
}

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

.player-play-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 22px 46px rgba(220, 38, 38, 0.35);
  font-size: 28px;
  padding-left: 5px;
}

.player-cover span:last-child {
  max-width: min(80%, 700px);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  text-align: center;
}

.story-section h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.story-section h2 + p {
  margin-top: 0;
}

.story-section p {
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), #020617);
  color: var(--muted);
}

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

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

.footer-grid p {
  margin: 14px 0 0;
  color: var(--subtle);
}

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

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #f87171;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
  color: #64748b;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

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

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

  .detail-hero {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slider {
    min-height: 76vh;
  }

  .hero-content {
    bottom: 12%;
  }

  .hero-dots {
    left: 16px;
    right: auto;
    bottom: 24px;
  }

  .category-strip-inner,
  .detail-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-pills {
    justify-content: flex-start;
  }

  .featured-grid,
  .compact-grid,
  .catalog-grid,
  .movie-grid,
  .category-card-grid,
  .ranking-grid,
  .full-ranking {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero {
    padding: 22px;
  }

  .detail-poster {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .header-inner {
    height: 62px;
  }

  .logo-text {
    font-size: 19px;
  }

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

  .hero-slider {
    min-height: 78vh;
  }

  .hero-content h2,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .page-hero {
    padding: 54px 0;
  }

  .section-heading,
  .toolbar,
  .horizontal-card {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar select {
    width: 100%;
  }

  .featured-grid,
  .compact-grid,
  .catalog-grid,
  .movie-grid,
  .category-card-grid,
  .ranking-grid,
  .full-ranking {
    grid-template-columns: 1fr;
  }

  .horizontal-thumb {
    flex-basis: auto;
    width: 100%;
  }

  .rank-box {
    width: 42px;
    height: 42px;
  }

  .panel-section,
  .player-section,
  .story-section {
    padding: 18px;
  }

  .scroll-row {
    grid-auto-columns: 82%;
  }
}
