:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --red: #ef4444;
  --red-2: #dc2626;
  --orange: #f97316;
  --blue: #2563eb;
  --green: #16a34a;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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: 80;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(51, 65, 85, 0.98), rgba(15, 23, 42, 0.98));
  color: #fff;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.35);
}

.brand-text {
  background: linear-gradient(90deg, #f87171, #fecaca);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.mobile-links {
  display: none;
  border-top: 1px solid rgba(226, 232, 240, 0.15);
  padding: 10px 0 16px;
}

.mobile-links a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #e2e8f0;
}

.mobile-links a:hover,
.mobile-links a.active {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.35), transparent 38%), linear-gradient(135deg, #0f172a, #7f1d1d 45%, #0f172a);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.65;
}

.hero-track {
  position: relative;
  min-height: 560px;
}

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

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 20px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: #fecaca;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.hero h2 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero h1 span,
.hero h2 span {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 3vw, 34px);
  color: #fecaca;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #e2e8f0;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.20);
  border: 1px solid rgba(248, 113, 113, 0.25);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.30);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.20);
  box-shadow: none;
}

.hero-panel {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-panel-body {
  padding: 18px;
}

.hero-panel-title {
  display: block;
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 6px;
}

.hero-panel-desc {
  display: -webkit-box;
  color: #cbd5e1;
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.hero-dot.active {
  width: 34px;
  background: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 58px 0;
}

.section-sm {
  padding: 34px 0;
}

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

.section-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 900;
  color: #1e293b;
}

.section-subtitle {
  margin: 8px 0 0;
  max-width: 720px;
  color: var(--muted);
}

.decor-line {
  flex: 1;
  min-width: 100px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), transparent);
}

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

.quick-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  box-shadow: var(--shadow);
}

.quick-card:nth-child(1) {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.quick-card:nth-child(2) {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.quick-card:nth-child(3) {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.quick-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.quick-card span {
  color: rgba(255, 255, 255, 0.82);
}

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

.category-tile {
  display: block;
  min-height: 172px;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.20);
}

.category-tile h2,
.category-tile h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.category-tile p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
}

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

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

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

.poster-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.poster-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.42);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.poster-media {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #334155);
}

.card-grid.wide .poster-media {
  aspect-ratio: 16 / 9;
}

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

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

.poster-media::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.70));
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(239, 68, 68, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.poster-title-on {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-body {
  padding: 14px;
}

.poster-title {
  display: -webkit-box;
  min-height: 45px;
  color: #0f172a;
  font-weight: 850;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-desc {
  display: -webkit-box;
  margin-top: 8px;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: #64748b;
  font-size: 12px;
}

.poster-meta span:first-child {
  color: #dc2626;
  font-weight: 800;
}

.rank-wrap {
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.32), transparent 35%), linear-gradient(135deg, #1e293b, #0f172a);
  box-shadow: var(--shadow);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 52px 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.14);
}

.rank-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-weight: 900;
}

.rank-item img {
  width: 78px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-title {
  display: block;
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-desc {
  display: block;
  color: #cbd5e1;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at 20% 0%, rgba(239, 68, 68, 0.30), transparent 32%), linear-gradient(135deg, #0f172a, #1e293b);
  padding: 74px 0;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #fee2e2;
  font-size: 14px;
  font-weight: 700;
}

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

.filter-panel {
  position: sticky;
  top: 80px;
  z-index: 20;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.search-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.search-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 10px 14px;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-chip {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #334155;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.empty-state {
  display: none;
  padding: 34px;
  border: 1px dashed #cbd5e1;
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: #fff;
}

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

.content-card,
.side-card {
  padding: 26px;
  border: 1px solid rgba(226, 232, 240, 0.90);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.content-card + .content-card {
  margin-top: 24px;
}

.content-card h2,
.side-card h2,
.side-card h3 {
  margin: 0 0 16px;
  color: #1e293b;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.content-card p {
  margin: 0 0 14px;
  color: #334155;
  text-align: justify;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.meta-item {
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.meta-label {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.meta-value {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  font-weight: 850;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: #b91c1c;
  background: #fee2e2;
  font-size: 13px;
  font-weight: 750;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
  cursor: pointer;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.72));
  color: #fff;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-shell.is-playing .play-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-button {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 18px 45px rgba(239, 68, 68, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.07);
}

.play-button span {
  transform: translateX(3px);
  font-size: 36px;
  line-height: 1;
}

.detail-cover {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.90);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-cover-body {
  padding: 18px;
}

.related-list {
  display: grid;
  gap: 12px;
}

.related-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-item:hover {
  transform: translateX(4px);
  border-color: rgba(239, 68, 68, 0.42);
}

.related-item img {
  width: 74px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.related-title {
  display: block;
  color: #0f172a;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-meta {
  display: block;
  color: #64748b;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer {
  margin-top: 48px;
  padding: 48px 0 26px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

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

.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fca5a5;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(226, 232, 240, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

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

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

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

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

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

  .mobile-links.open {
    display: block;
  }

  .hero,
  .hero-track {
    min-height: 620px;
  }

  .hero-inner {
    padding-top: 58px;
    padding-bottom: 92px;
  }

  .quick-grid,
  .category-grid,
  .rank-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .decor-line {
    width: 100%;
    min-width: 0;
  }

  .search-line {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero h1,
  .hero h2 {
    font-size: 34px;
  }

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

  .btn {
    width: 100%;
  }

  .card-grid,
  .card-grid.wide {
    gap: 12px;
  }

  .poster-body {
    padding: 12px;
  }

  .rank-item {
    grid-template-columns: 42px 66px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-item img {
    width: 66px;
    height: 50px;
  }

  .content-card,
  .side-card,
  .rank-wrap {
    padding: 20px;
  }
}
