:root {
  --blue: #2563eb;
  --cyan: #0891b2;
  --teal: #0d9488;
  --orange: #ea580c;
  --dark: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background: #f9fafb;
  font-family: -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;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.96), rgba(236, 254, 255, 0.96), rgba(240, 253, 250, 0.96));
  border-bottom: 1px solid rgba(191, 219, 254, 0.75);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.26);
}

.brand-text strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

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

.main-nav > a,
.nav-dropdown > button {
  border: 0;
  color: #374151;
  background: transparent;
  font-weight: 650;
  cursor: pointer;
  transition: color 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown > button:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 34px;
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 180px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 9px 12px;
  color: #374151;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  color: var(--blue);
  background: #eff6ff;
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(310px, 28vw);
  padding: 4px;
  background: var(--white);
  border: 1px solid #dbeafe;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.nav-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 8px 12px;
  background: transparent;
}

.nav-search button {
  border: 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
  padding: 8px 15px;
  cursor: pointer;
}

.mobile-nav-toggle,
.mobile-nav {
  display: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 48%, #f0fdfa 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.32;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

.orb-one {
  top: 34px;
  left: 5vw;
  width: 280px;
  height: 280px;
  background: #60a5fa;
}

.orb-two {
  right: 7vw;
  bottom: 28px;
  width: 360px;
  height: 360px;
  background: #22d3ee;
  animation-delay: 1s;
}

@keyframes pulseGlow {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.page-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 19px;
}

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

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.btn-outline {
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
}

.btn-light {
  color: var(--blue);
  background: var(--white);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-links a {
  padding: 8px 13px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 470px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.82));
}

.hero-panel {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 34px;
  color: var(--white);
}

.hero-panel h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.hero-panel p {
  max-width: 560px;
  margin: 0 0 22px;
  color: #e5e7eb;
}

.hero-label {
  display: inline-flex;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 24px;
  backdrop-filter: blur(8px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.hero-dot.is-active {
  width: 26px;
  background: var(--white);
  border-radius: 999px;
}

.stat-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.stat-grid div {
  text-align: center;
}

.stat-grid strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.stat-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section-block {
  padding: 68px 0;
  background: var(--white);
}

.bg-soft {
  background: var(--soft);
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-heading > a {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 800;
}

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 18px;
}

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

.category-card {
  min-height: 138px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
  display: block;
  font-size: 34px;
  margin-bottom: 12px;
}

.category-card strong {
  display: block;
  font-size: 18px;
}

.category-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card.is-hidden {
  display: none;
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbeafe;
}

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

.movie-card:hover .movie-cover img,
.related-item:hover img,
.ranking-row:hover img {
  transform: scale(1.08);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 44px;
  background: rgba(15, 23, 42, 0.24);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .play-icon {
  opacity: 1;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  border-radius: 12px;
  font-weight: 900;
}

.movie-info {
  padding: 16px;
}

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

.movie-title:hover {
  color: var(--cyan);
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-meta span {
  padding: 4px 9px;
  color: var(--cyan);
  background: #ecfeff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.movie-card.compact .movie-title {
  font-size: 16px;
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdfa);
  border-bottom: 1px solid #dbeafe;
}

.category-hero {
  padding-top: 46px;
}

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

.breadcrumb a {
  color: var(--blue);
  font-weight: 750;
}

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

.category-overview-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: var(--white);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-card img,
.category-glass {
  position: absolute;
  inset: 0;
}

.category-overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-glass {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.84));
}

.category-overview-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.category-icon {
  font-size: 38px;
}

.category-overview-card h2 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.category-overview-card p {
  margin: 0 0 14px;
  color: #e5e7eb;
}

.category-overview-card strong {
  display: inline-flex;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.filter-title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 850;
}

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

.filter-controls input,
.filter-controls select {
  min-height: 44px;
  padding: 0 14px;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: 0;
}

.filter-controls input {
  flex: 1 1 260px;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.empty-state {
  display: none;
  margin: 28px 0 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
}

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

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

.ranking-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: #dbeafe;
}

.ranking-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ranking-cover span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  border-radius: 13px;
  font-weight: 950;
}

.ranking-content > a {
  display: inline-block;
  margin: 4px 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.ranking-content > a:hover {
  color: var(--cyan);
}

.ranking-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.ranking-content div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ranking-content span,
.ranking-content strong {
  padding: 5px 10px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 13px;
}

.ranking-content strong {
  color: #b45309;
  background: #fef3c7;
}

.detail-shell {
  padding: 30px 0 70px;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.36);
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.54));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.4);
  font-size: 38px;
}

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

.detail-card,
.side-card {
  margin-top: 22px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

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

.lead-text {
  color: #4b5563;
  font-size: 18px;
}

.detail-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.detail-meta span,
.tag-cloud span {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.detail-meta span {
  color: var(--blue);
  background: #eff6ff;
}

.tag-cloud span {
  color: #374151;
  background: #f3f4f6;
}

.detail-side {
  min-width: 0;
}

.side-card {
  position: sticky;
  top: 98px;
  margin-top: 0;
}

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

.related-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.related-item:hover {
  background: #f8fafc;
}

.related-item img {
  width: 116px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 5px;
  color: #111827;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-item em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.side-more {
  display: block;
  margin-top: 18px;
  padding: 12px;
  color: var(--cyan);
  text-align: center;
  background: #ecfeff;
  border-radius: 12px;
  font-weight: 800;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 38px 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

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

.footer-bottom {
  padding: 18px 0;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 14px;
}

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

  .nav-search {
    margin-left: auto;
  }

  .mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    color: var(--blue);
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 10px;
    padding: 0 16px 18px;
  }

  .mobile-nav a {
    padding: 12px 16px;
    background: var(--white);
    border-radius: 12px;
  }

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

  .hero-carousel {
    min-height: 430px;
  }

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

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

  .side-card {
    position: static;
  }
}

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

  .nav-shell {
    min-height: 68px;
    gap: 12px;
  }

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

  .brand-text small,
  .nav-search {
    display: none;
  }

  .home-hero {
    padding: 48px 0 60px;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-carousel {
    min-height: 380px;
  }

  .hero-panel {
    padding: 22px;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading > a {
    display: inline-block;
    margin-top: 12px;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-shell {
    padding-top: 18px;
  }

  .detail-card,
  .side-card {
    padding: 18px;
  }

  .player-overlay span {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
