:root {
  color-scheme: dark;
  --bg: #07070a;
  --bg-soft: rgba(13, 13, 18, 0.78);
  --card: rgba(18, 18, 24, 0.72);
  --card-strong: rgba(28, 28, 36, 0.92);
  --text: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --accent: #ff7b1a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.44);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f2eb;
  --bg-soft: rgba(255, 255, 255, 0.86);
  --card: rgba(255, 255, 255, 0.78);
  --card-strong: rgba(255, 255, 255, 0.96);
  --text: #17161a;
  --muted: rgba(23, 22, 26, 0.7);
  --line: rgba(23, 22, 26, 0.12);
  --gold-soft: rgba(212, 175, 55, 0.12);
  --shadow: 0 20px 50px rgba(19, 18, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 123, 26, 0.12), transparent 26%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.loaded .reveal {
  opacity: 1;
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 80%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
select {
  font: inherit;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.ambient {
  position: fixed;
  width: 40vw;
  height: 40vw;
  filter: blur(80px);
  opacity: 0.24;
  z-index: -3;
  pointer-events: none;
}

.ambient-left {
  top: -12vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.8), transparent 72%);
}

.ambient-right {
  right: -12vw;
  top: 8vw;
  background: radial-gradient(circle, rgba(255, 123, 26, 0.72), transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  margin: 1rem auto 0;
  width: min(1320px, calc(100% - 1rem));
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.58);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, padding 0.25s ease, background 0.25s ease;
}

.site-header.shrink {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
  transform: scale(0.985);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand strong {
  display: block;
  font-family: "Cinzel", serif;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.95), rgba(255, 123, 26, 0.82));
  color: #111;
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.26);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--gold-soft);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
  border-radius: 99px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 0.75rem 1rem;
}

main {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0 0;
}

.hero {
  min-height: calc(100vh - 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions,
.hero-points,
.legend-toolbar,
.quiz-actions,
.compare-selectors {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
}

.btn-primary {
  color: #141414;
  background: linear-gradient(135deg, #f7d96c, #c69417);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.ripple::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.ripple:active::after {
  width: 220%;
  height: 220%;
  opacity: 1;
}

.hero-points {
  margin-top: 2rem;
}

.hero-points div,
.stats-card,
.legend-card,
.timeline-item,
.compare-panel,
.detail-panel,
.quiz-card,
.award-card,
.moment-card,
.record-card,
.court-detail {
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-points div {
  min-width: 10rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
}

.hero-points strong,
.stats-number {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-points span,
.stats-label,
.record-meta,
.detail-panel p,
.quiz-meta,
.site-footer p,
.legend-meta,
.compare-label,
.player-meta,
.award-note,
.moment-meta {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 760px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 50% 68%, rgba(212, 175, 55, 0.18), transparent 20%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), transparent 35%);
}

.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 206, 107, 0.24);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12), inset 0 0 40px rgba(255, 255, 255, 0.04);
}

.glow-ring-1 {
  inset: 8% 12%;
}

.glow-ring-2 {
  inset: 18% 22%;
}

.floating-ball {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.35), transparent 12%),
    radial-gradient(circle at 52% 50%, #f18b23 0%, #d66508 52%, #8a4202 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  animation: float 7s ease-in-out infinite;
}

.floating-ball::before,
.floating-ball::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 2px solid rgba(18, 10, 4, 0.5);
}

.floating-ball::after {
  inset: 0;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
}

.floating-ball-a {
  width: 10rem;
  height: 10rem;
  right: 13%;
  top: 16%;
}

.floating-ball-b {
  width: 6rem;
  height: 6rem;
  left: 14%;
  bottom: 20%;
  animation-delay: -2.2s;
}

.floating-card {
  position: absolute;
  left: 10%;
  bottom: 12%;
  width: min(320px, 74%);
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(10, 10, 14, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.floating-card span {
  display: block;
  color: var(--gold);
  margin-bottom: 0.45rem;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 1.3rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0.15rem 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading-split {
  align-items: center;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: min(420px, 100%);
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.search-wrap input {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 0;
  outline: none;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--text);
  background: var(--gold-soft);
}

.stats-grid,
.legend-grid,
.awards-grid,
.moments-grid,
.records-board {
  display: grid;
  gap: 1rem;
}

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

.stats-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

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

.legend-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-xl);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.legend-card:hover,
.legend-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 18px 54px rgba(212, 175, 55, 0.14), var(--shadow);
}

.legend-card:hover .card-badge,
.legend-card:focus-within .card-badge {
  opacity: 1;
  transform: translateY(0);
}

.legend-portrait {
  width: 150px;
  height: 170px;
  border-radius: 24px;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
}

.legend-main {
  min-width: 0;
}

.legend-main h3,
.profile-header h2,
.detail-panel h3,
.quiz-card h3,
.court-detail h3,
.section-heading h2 {
  margin: 0;
}

.legend-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin-top: 1rem;
  font-size: 0.93rem;
}

.legend-meta div,
.profile-section li,
.profile-grid li,
.court-detail li {
  line-height: 1.7;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.legend-card button {
  border: 0;
  background: transparent;
  color: var(--gold);
  padding: 0;
}

.favorite-btn {
  font-size: 1.15rem;
}

.card-badge {
  position: absolute;
  inset: auto 1rem 1rem auto;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
  pointer-events: none;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  border-radius: 24px;
  overflow: hidden;
}

.timeline-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.timeline-trigger span {
  color: var(--gold);
  font-weight: 800;
}

.timeline-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--muted);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.timeline-item.open .timeline-panel {
  max-height: 320px;
  padding-bottom: 1.25rem;
}

.compare-panel {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
}

.compare-selectors label {
  display: grid;
  gap: 0.45rem;
  flex: 1 1 280px;
}

.compare-selectors select {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.compare-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr) 160px;
  align-items: center;
  gap: 1rem;
}

.compare-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.bar {
  height: 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f4d56e, #c68a0c);
  width: 0;
  transition: width 0.8s ease;
}

.comparison-lead {
  color: var(--gold);
  font-weight: 700;
}

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

.ring-card {
  border-radius: 24px;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
}

.ring {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid var(--gold);
  box-shadow: inset 0 0 0 12px rgba(0, 0, 0, 0.32), 0 12px 30px rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  font-weight: 800;
  color: var(--text);
}

.award-card,
.moment-card,
.record-card {
  border-radius: 24px;
  padding: 1rem;
}

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

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

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

.record-card h3,
.award-card h3,
.moment-card h3 {
  margin: 0.35rem 0;
}

.record-bar {
  margin-top: 1rem;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.record-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #fff2a1, #cc9819);
  transition: width 1s ease;
}

.court-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  gap: 1rem;
}

.court-svg {
  width: 100%;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--line);
}

.court-bg {
  fill: #14211d;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2;
}

.court-line {
  stroke: rgba(255, 243, 214, 0.78);
  stroke-width: 2.5;
  fill: none;
}

.court-position {
  cursor: pointer;
}

.court-position circle {
  transition: transform 0.2s ease, filter 0.2s ease;
  transform-origin: center;
}

.court-position:hover circle,
.court-position:focus-visible circle {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.court-position text {
  fill: #131313;
  font-weight: 900;
  font-size: 20px;
  text-anchor: middle;
  dominant-baseline: middle;
}

.court-detail {
  border-radius: 24px;
  padding: 1.2rem;
}

.quiz-card {
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}

.quiz-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quiz-options {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.quiz-option {
  width: 100%;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.quiz-option.correct {
  border-color: rgba(77, 210, 120, 0.6);
  background: rgba(77, 210, 120, 0.14);
}

.quiz-option.wrong {
  border-color: rgba(255, 90, 90, 0.6);
  background: rgba(255, 90, 90, 0.12);
}

.quiz-result {
  min-height: 1.5rem;
  color: var(--gold);
}

.site-footer {
  width: min(1320px, calc(100% - 2rem));
  margin: 4rem auto 2rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.detail-panel {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 40;
}

.modal.open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  width: min(1100px, calc(100% - 1rem));
  max-height: min(92vh, 1100px);
  overflow: auto;
  border-radius: 30px;
  background: var(--card-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  transform: scale(0.94);
  animation: modalIn 0.26s ease forwards;
}

.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.profile-header {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.profile-header img {
  width: 170px;
  aspect-ratio: 0.92;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.profile-body {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.profile-section,
.profile-grid > div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.profile-section ul,
.profile-grid ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

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

.profile-section h3,
.profile-grid h3 {
  margin: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(6deg);
  }
}

@keyframes modalIn {
  to {
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  .hero,
  .court-shell,
  .profile-header,
  .legend-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .legend-grid,
  .records-board,
  .profile-grid,
  .rings {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 800px) {
  .site-header {
    width: min(100% - 1rem, 1320px);
    padding-inline: 1rem;
    border-radius: 24px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 12, 0.94);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .section {
    padding-top: 4rem;
  }

  .stats-grid,
  .legend-grid,
  .awards-grid,
  .moments-grid,
  .records-board {
    grid-template-columns: 1fr;
  }

  .search-wrap {
    min-width: 100%;
  }

  .hero-points div {
    flex: 1 1 160px;
  }
}
