:root {
  --bg: #050712;
  --bg-2: #0d1230;
  --card: rgba(18, 23, 53, 0.86);
  --ink: #fff8ff;
  --muted: #b9c1f1;
  --pink: #ff2fa5;
  --purple: #8b5cff;
  --yellow: #f7b90f;
  --gold: #f7b90f;
  --gold-bright: #ffd84a;
  --gold-dark: #b47700;
  --blue: #24d8ff;
  --green: #49f59d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow-pink: 0 0 24px rgba(255, 47, 165, 0.48);
  --shadow-blue: 0 0 26px rgba(36, 216, 255, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 47, 165, 0.3), transparent 22rem),
    radial-gradient(circle at 86% 14%, rgba(36, 216, 255, 0.2), transparent 24rem),
    linear-gradient(180deg, #050712 0%, #0a0f28 46%, #050712 100%);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  background: rgba(3, 4, 13, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.logo {
  position: relative;
  z-index: 3;
  display: block;
  width: 11.2rem;
  line-height: 0;
  transform: translateY(0.62rem);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 14px var(--pink), 0 5px 0 #000;
}

.menu-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.menu-toggle span:not(.sr-only) {
  width: 1.25rem;
  height: 0.16rem;
  background: #fff;
  border-radius: 999px;
}

.site-menu,
.header-actions {
  display: none;
}

.site-header.is-open .site-menu,
.site-header.is-open .header-actions {
  display: flex;
}

.site-menu {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 0.25rem;
}

.site-menu a,
.header-actions a,
.footer-socials a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.site-menu a {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-menu a.active {
  color: #fff;
  background: linear-gradient(135deg, #5d2de1, #8b5cff);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(139, 92, 255, 0.52);
}

.header-actions {
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.55rem;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 0 16px rgba(255, 47, 165, 0.25);
}

.social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.social-link img {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.instagram-link {
  color: #fff;
  background: linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5);
}

.youtube-link {
  color: #fff;
  background: #ff1f1f;
}

.tiktok-link {
  color: #fff;
  background: linear-gradient(135deg, #111, #161b2e);
}

.nav-cta,
.mega-button,
.category-card a {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  color: #120716;
  background: var(--yellow);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(244, 180, 0, 0.55);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.header-actions .nav-cta {
  color: #050507;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 56%, #d99100 100%);
  border-color: #fff2b8;
  box-shadow:
    0 0 18px rgba(247, 185, 15, 0.62),
    inset 0 -0.18rem 0 rgba(80, 45, 0, 0.2);
}

.header-actions .nav-cta:visited,
.header-actions .nav-cta:hover,
.header-actions .nav-cta:focus {
  color: #050507;
}

.hero {
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: center;
  padding: 0.45rem 1rem 0.55rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 26%, rgba(36, 216, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 18% 30%, rgba(255, 47, 165, 0.18), transparent 23rem),
    linear-gradient(180deg, #080916 0%, #081135 54%, #050712 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(5, 7, 18, 0.76), rgba(5, 7, 18, 0.28) 48%, rgba(5, 7, 18, 0.32)),
    linear-gradient(180deg, rgba(5, 7, 18, 0), rgba(5, 7, 18, 0.38)),
    url("assets/hero-tobesverse-beach-bg.png");
  background-position: 47% center;
  background-size: cover;
  filter: saturate(1.2) contrast(1.05) brightness(1.02);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(36, 216, 255, 0.18)),
    radial-gradient(ellipse at 42% 100%, rgba(255, 216, 74, 0.24), transparent 42%),
    radial-gradient(ellipse at 78% 96%, rgba(255, 47, 165, 0.2), transparent 38%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 216, 74, 0.18) 0 0.18rem, transparent 0.22rem),
    radial-gradient(circle at 72% 18%, rgba(255, 47, 165, 0.22) 0 0.16rem, transparent 0.22rem),
    radial-gradient(circle at 86% 34%, rgba(36, 216, 255, 0.2) 0 0.14rem, transparent 0.2rem);
  background-size: 6.5rem 5.5rem, 7rem 6rem, 5.5rem 5rem;
  opacity: 0.55;
  pointer-events: none;
}

.hero-title {
  position: relative;
  z-index: 4;
  width: min(100%, 88rem);
  margin: 0 auto;
  pointer-events: auto;
}

.kicker {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(36, 216, 255, 0.65);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title-text {
  position: relative;
  width: min(100%, 55rem);
  margin: 0 auto;
  padding: 0.15rem 0.35rem 0;
  isolation: isolate;
  transform: translate(-1rem, -0.85rem) rotate(-3deg);
}

.hero-title-text::before,
.hero-title-text::after {
  display: none;
}

.welcome-swipe {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin: 0 0 -0.1rem 1.6rem;
  padding: 0.48rem 1.25rem;
  color: #15100a;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.25), transparent 16%),
    linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: 0.45rem 1.3rem 0.36rem 1rem;
  box-shadow:
    -0.95rem 0.22rem 0 -0.18rem var(--gold),
    0.9rem -0.18rem 0 -0.24rem var(--gold-bright),
    1.35rem 0.2rem 0 -0.34rem var(--gold),
    0 0 1rem rgba(215, 168, 47, 0.36);
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(1rem, 3.4vw, 1.25rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero-logo-mark {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 34rem);
  height: auto;
  margin: -0.15rem 0 0;
}

.hero-tagline {
  position: relative;
  z-index: 3;
  display: grid;
  width: fit-content;
  margin: -0.35rem 0 0 2.4rem;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(1.2rem, 3.7vw, 1.7rem);
  font-weight: 950;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(1deg);
}

.hero-tagline span:first-child {
  color: var(--gold-bright);
  text-shadow: 0.08rem 0.08rem 0 #050507;
}

.hero-tagline span:nth-child(2) {
  color: #fff;
  text-shadow: 0.08rem 0.08rem 0 #050507;
}

.hero-tagline span:last-child {
  color: #9a54ff;
  text-shadow: 0.08rem 0.08rem 0 #050507;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.1rem, 8vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.hero-toby {
  position: absolute;
  right: 0.15rem;
  bottom: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-toby img {
  display: block;
  width: min(126vw, 52rem);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.64));
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.hero-stats {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 8;
  width: min(44vw, 21rem);
  pointer-events: none;
}

.stats-strip div {
  min-height: 5.25rem;
  padding: 0.48rem 0.5rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(5, 7, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(36, 216, 255, 0.14);
}

.stats-strip strong,
.stats-strip span {
  display: block;
  text-transform: uppercase;
}

.stat-icon {
  display: block;
  margin: 0 auto 0.18rem;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: 2.15rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.stats-strip strong {
  color: #fff;
  font-size: 1.16rem;
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
}

.hero-follow-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(5, 7, 18, 0.86);
  border: 2px solid rgba(139, 92, 255, 0.55);
  border-radius: 1.1rem;
  box-shadow: 0 0 28px rgba(255, 47, 165, 0.24);
}

.hero-follow-card h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.9rem, 8vw, 3rem);
}

.hero-follow-card h2 span {
  color: var(--purple);
}

.hero-follow-card p {
  color: var(--muted);
}

.hero-follow-card figure {
  margin: 0;
  justify-self: center;
}

.hero-follow-card img {
  width: min(48vw, 9.5rem);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.65rem;
  background: #fff;
  border-radius: 0.65rem;
  box-shadow: 0 0 24px rgba(139, 92, 255, 0.7);
}

.hero-follow-card figcaption {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.hero-follow-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 900;
  list-style: none;
}

.section {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 4rem 1rem;
}

.category-section {
  padding-top: 0.45rem;
}

.category-section .section-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1rem;
}

.category-grid,
.video-grid {
  display: grid;
  gap: 0.75rem;
}

.category-card,
.video-card,
.embed-panel,
.qr-shell,
.about-section,
.shop-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.category-card {
  position: relative;
  min-height: 10.65rem;
  padding: 0.8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border-width: 2px;
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.1),
    0 16px 30px rgba(0, 0, 0, 0.3);
}

.category-card::before {
  position: absolute;
  inset: -5rem -5rem auto auto;
  width: 10rem;
  height: 10rem;
  content: "";
  background: currentColor;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.25;
}

.category-card.pink {
  background:
    radial-gradient(circle at 65% 18%, rgba(255, 216, 74, 0.34), transparent 4rem),
    linear-gradient(145deg, #7e20ff 0%, #4d0fa7 100%);
}

.category-card.blue {
  background:
    radial-gradient(circle at 64% 16%, rgba(255, 47, 165, 0.3), transparent 4rem),
    linear-gradient(145deg, #1688ff 0%, #063a9b 100%);
}

.category-card.yellow {
  color: #180b05;
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.55), transparent 4rem),
    linear-gradient(145deg, #ffd84a 0%, #f1a20a 100%);
}

.category-card.purple {
  background:
    radial-gradient(circle at 67% 18%, rgba(73, 245, 157, 0.28), transparent 4rem),
    linear-gradient(145deg, #62c92c 0%, #237d16 100%);
}

.category-card.green {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 216, 74, 0.32), transparent 4rem),
    linear-gradient(145deg, #e23b3b 0%, #8f171f 100%);
}

.category-card p,
.video-card p,
.card-section p,
.about-section p,
.shop-section p,
.site-footer p {
  color: var(--muted);
}

.category-card p {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.25;
}

.category-card.yellow p {
  color: rgba(24, 11, 5, 0.82);
}

.category-card h3 {
  margin-bottom: 0.25rem;
  color: inherit;
  font-size: 1.12rem;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.category-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  margin-bottom: 0.55rem;
  color: #fff;
  background: rgba(5, 7, 18, 0.28);
  border: 1px solid var(--line);
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: 950;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.category-card a {
  min-height: 2.45rem;
  margin-top: 0.35rem;
  padding: 0.62rem 0.8rem;
  font-size: 0.8rem;
  color: #160b05;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.28rem 0 rgba(0, 0, 0, 0.15);
}

.pink {
  color: var(--pink);
  border-color: rgba(255, 47, 165, 0.5);
  box-shadow: var(--shadow-pink);
}

.blue {
  color: var(--blue);
  border-color: rgba(36, 216, 255, 0.5);
  box-shadow: var(--shadow-blue);
}

.yellow {
  color: var(--yellow);
  border-color: rgba(255, 224, 79, 0.55);
}

.purple {
  color: var(--purple);
  border-color: rgba(139, 92, 255, 0.56);
}

.green {
  color: var(--green);
  border-color: rgba(73, 245, 157, 0.55);
}

.video-card {
  overflow: hidden;
  border-color: rgba(255, 47, 165, 0.28);
}

.video-card h3,
.video-card p {
  padding-inline: 1rem;
}

.video-card p {
  padding-bottom: 1rem;
}

.thumb {
  position: relative;
  min-height: 13.5rem;
  display: grid;
  place-items: end start;
  padding: 1rem;
  overflow: hidden;
  background: #111733;
}

.thumb::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 0.5rem, transparent 0.5rem 1rem);
}

.thumb span {
  position: relative;
  padding: 0.45rem 0.7rem;
  color: #fff;
  background: rgba(5, 7, 18, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 950;
}

.roller-thumb {
  background: linear-gradient(135deg, #ff2fa5, #6f4dff);
}

.game-thumb {
  background: linear-gradient(135deg, #24d8ff, #8b5cff);
}

.football-thumb {
  background: linear-gradient(135deg, #49f59d, #ffe04f);
}

.embed-panel {
  display: grid;
  min-height: 36rem;
  place-items: center;
  padding: 1.25rem;
  border-color: rgba(36, 216, 255, 0.35);
}

.tiktok-embed {
  width: min(100%, 45rem);
  min-width: 18rem;
  margin: 0;
  padding: 1rem;
  overflow: hidden;
  background: #080915;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-blue);
}

.tiktok-embed section {
  display: grid;
  min-height: 28rem;
  place-items: center;
}

.tiktok-embed a {
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 950;
  text-decoration: none;
}

.phone-frame {
  display: grid;
  width: min(100%, 21rem);
  min-height: 28rem;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  background: #080915;
  border: 0.7rem solid #161a36;
  border-radius: 2.2rem;
  box-shadow: var(--shadow-blue);
}

.phone-speaker {
  width: 5rem;
  height: 0.4rem;
  align-self: start;
  background: #303859;
  border-radius: 999px;
}

.phone-frame p {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 950;
}

.phone-frame span {
  color: var(--pink);
  font-weight: 950;
}

.card-section {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.qr-shell {
  display: grid;
  min-height: 18rem;
  place-items: center;
  margin: 0;
  padding: 1rem;
  border-color: rgba(255, 224, 79, 0.45);
}

.qr-shell img {
  width: min(72vw, 12rem);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.8rem;
  background: #fff;
  border-radius: 0.6rem;
}

.qr-shell figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-section,
.shop-section {
  padding: 2rem 1rem;
}

.about-copy {
  max-width: 48rem;
}

.parent-note {
  padding: 1rem;
  background: rgba(73, 245, 157, 0.1);
  border: 1px solid rgba(73, 245, 157, 0.38);
  border-radius: 1rem;
}

.site-footer {
  display: grid;
  gap: 1.3rem;
  padding: 2rem 1rem;
  background: #03040d;
  border-top: 1px solid var(--line);
}

.site-footer nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer p {
  margin: 0.45rem 0 0;
}

@media (min-width: 46rem) {
  .section {
    padding-inline: 1.5rem;
  }

  .hero-logo-mark {
    width: min(100%, 43rem);
  }

  .hero-tagline {
    margin-left: 3.4rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

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

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

  .card-section {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .stats-strip {
    width: min(100%, 34rem);
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-follow-card {
    grid-template-columns: 1fr auto 1fr;
  }
}

@media (min-width: 66rem) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 1.5rem;
    min-height: 5.6rem;
  }

  .logo {
    width: 12.4rem;
    transform: translateY(0.86rem);
  }

  .menu-toggle {
    display: none;
  }

  .site-menu,
  .header-actions {
    display: flex;
    grid-column: auto;
    align-items: center;
  }

  .site-menu {
    flex-direction: row;
    justify-content: center;
    gap: 0.6rem;
  }

  .site-menu a {
    padding: 0.58rem 0.95rem;
    border-bottom: 0;
  }

  .hero {
    min-height: clamp(30rem, 65vh, 40rem);
    padding: 0.35rem 1.2rem 0.45rem;
  }

  .hero-title {
    padding-right: 42vw;
    transform: translateY(0.2rem);
  }

  .hero-title-text {
    width: min(50vw, 48rem);
    margin-left: 0;
    transform: translate(-0.65rem, -1.15rem) rotate(-3deg);
  }

  .hero-logo-mark {
    width: min(100%, 39rem);
  }

  .hero-tagline {
    margin-left: 3.35rem;
  }

  .hero-tagline {
    font-size: 1.72rem;
  }

  .hero-toby {
    right: 2.2vw;
  }

  .hero-toby img {
    width: min(64vw, 60rem);
    max-height: 63vh;
  }

  .hero-stats {
    right: 5.5vw;
    bottom: 1.4rem;
    width: min(28vw, 22rem);
  }

  .stats-strip {
    margin: 0 auto;
  }

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

  .category-card {
    min-height: 10.1rem;
  }

}

@media (min-width: 86rem) {
  .site-menu {
    gap: 1.05rem;
  }

  .site-menu a {
    padding-inline: 1.12rem;
  }
}
