/* ==========================================================
   Home page – Camperzz
   Aesthetic: late-night neon casino lounge.
   Cyan bloom + pink glow accents on a deep ink base.
   ========================================================== */

.home-page {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
  position: relative;
}

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  padding: 70px 28px 70px;
  align-items: center;
  overflow: visible;
}

.home-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.13;
  z-index: 0;
  filter: drop-shadow(0 0 30px rgba(70, 174, 240, 0.35));
}
.home-decor-tl {
  top: -10px;
  left: -50px;
  width: 220px;
  transform: rotate(-12deg);
}
.home-decor-br {
  bottom: -50px;
  right: -40px;
  width: 240px;
  transform: rotate(8deg);
  opacity: 0.1;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(70, 174, 240, 0.28);
  border-radius: 999px;
  background: rgba(70, 174, 240, 0.06);
  color: #8fcff5;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.home-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2eaaf0;
  box-shadow: 0 0 10px #2eaaf0, 0 0 20px rgba(46, 170, 240, 0.5);
  animation: home-pulse 1.6s ease-in-out infinite;
}
@keyframes home-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

.home-hero-h1 {
  margin: 28px 0 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #f5f7fb;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home-hero-line {
  display: block;
}
.home-hero-line-1 {
  color: #f5f7fb;
}
.home-hero-line-2 {
  background: linear-gradient(135deg, #2eaaf0 0%, #7de3ff 50%, #46aef0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
  padding-right: 0.1em; /* prevent italic clip */
}
.home-hero-line-3 {
  color: #ff7aa2;
  font-weight: 800;
  text-shadow: 0 0 60px rgba(255, 122, 162, 0.35);
}

.home-hero-tagline {
  margin: 26px 0 0;
  max-width: 540px;
  color: #b3b6c5;
  font-size: 1.05rem;
  line-height: 1.65;
}
.home-hero-code {
  font-family: 'Source Code Pro', monospace;
  background: rgba(255, 122, 162, 0.12);
  color: #ff7aa2;
  font-weight: 700;
  padding: 1px 10px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 122, 162, 0.4);
  letter-spacing: 0.05em;
}

.home-hero-cta {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--xl {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

/* ---------- Hero prize card ---------- */
.home-hero-prize {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 30px;
  border-radius: 24px;
  background: radial-gradient(
      120% 120% at 50% 0%,
      rgba(70, 174, 240, 0.2),
      transparent 70%
    ),
    linear-gradient(180deg, #14161e 0%, #0c0d12 100%);
  border: 1px solid rgba(70, 174, 240, 0.2);
  box-shadow: 0 30px 60px -30px rgba(70, 174, 240, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.home-hero-prize-glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(70, 174, 240, 0.18) 25%,
    transparent 45%,
    rgba(255, 122, 162, 0.12) 70%,
    transparent 90%
  );
  animation: home-prize-rotate 14s linear infinite;
  z-index: -1;
  filter: blur(30px);
  opacity: 0.85;
}
@keyframes home-prize-rotate {
  to {
    transform: rotate(1turn);
  }
}
.home-hero-prize-label {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8fcff5;
}
.home-hero-prize-value {
  margin: 18px 0 8px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #ffffff 0%, #9bd6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero-prize-foot {
  color: #87858e;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
}

/* ---------- Stats strip ---------- */
.home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 28px;
  margin: 28px 0 60px;
}
.home-stat {
  position: relative;
  background: linear-gradient(180deg, #15161d 0%, #0e0f15 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 220ms ease, transform 220ms ease;
}
.home-stat::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(70, 174, 240, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 220ms ease;
}
.home-stat:hover {
  border-color: rgba(70, 174, 240, 0.28);
  transform: translateY(-2px);
}
.home-stat:hover::after {
  opacity: 1;
}
.home-stat-icon {
  font-size: 1.05rem;
  color: #46aef0;
  margin-bottom: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(70, 174, 240, 0.1);
  border: 1px solid rgba(70, 174, 240, 0.2);
}
.home-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f3f4f8;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.home-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #87858e;
  margin-top: 2px;
}

/* ---------- Section heads ---------- */
.home-section-head {
  text-align: center;
  margin: 70px auto 32px;
  padding: 0 24px;
  max-width: 720px;
}
.home-section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #46aef0;
  font-weight: 700;
  margin-bottom: 12px;
}
.home-section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 0;
  color: #f3f4f8;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.home-section-foot {
  text-align: center;
  margin-top: 32px;
}

/* ---------- Pillars ---------- */
.home-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 28px;
}
.home-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, #14161e 0%, #0d0e14 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease;
  min-height: 260px;
}
.home-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(70, 174, 240, 0.4);
}
.home-pillar:hover .home-pillar-glow {
  opacity: 1;
  transform: scale(1.1);
}
.home-pillar:hover .home-pillar-cta {
  color: #46aef0;
  letter-spacing: 0.04em;
}
.home-pillar-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(70, 174, 240, 0.28),
    transparent 70%
  );
  opacity: 0.45;
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}
.home-pillar-icon-wrap {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(70, 174, 240, 0.1);
  border: 1px solid rgba(70, 174, 240, 0.28);
}
.home-pillar-icon {
  font-size: 1.4rem;
  color: #46aef0;
}
.home-pillar h3 {
  margin: 8px 0 0;
  font-size: 1.3rem;
  color: #f3f4f8;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.home-pillar p {
  margin: 0;
  color: #9aa0b0;
  line-height: 1.6;
  font-size: 0.94rem;
}
.home-pillar-cta {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b3b6c5;
  letter-spacing: 0.02em;
  transition: color 200ms ease, letter-spacing 200ms ease;
}

.home-pillar--pink:hover {
  border-color: rgba(255, 122, 162, 0.45);
}
.home-pillar--pink .home-pillar-icon-wrap {
  background: rgba(255, 122, 162, 0.1);
  border-color: rgba(255, 122, 162, 0.3);
}
.home-pillar--pink .home-pillar-icon {
  color: #ff7aa2;
}
.home-pillar--pink .home-pillar-glow {
  background: radial-gradient(
    circle,
    rgba(255, 122, 162, 0.28),
    transparent 70%
  );
}
.home-pillar--pink:hover .home-pillar-cta {
  color: #ff7aa2;
}

.home-pillar--discord:hover {
  border-color: rgba(88, 101, 242, 0.5);
}
.home-pillar--discord .home-pillar-icon-wrap {
  background: rgba(88, 101, 242, 0.12);
  border-color: rgba(88, 101, 242, 0.32);
}
.home-pillar--discord .home-pillar-icon {
  color: #8a93ff;
}
.home-pillar--discord .home-pillar-glow {
  background: radial-gradient(
    circle,
    rgba(88, 101, 242, 0.3),
    transparent 70%
  );
}
.home-pillar--discord:hover .home-pillar-cta {
  color: #8a93ff;
}

/* ---------- Podium teaser ---------- */
.home-podium {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 16px;
  padding: 0 28px;
  align-items: end;
  max-width: 900px;
  margin: 0 auto;
}
.home-podium-card {
  background: linear-gradient(180deg, #15161e 0%, #0d0e14 100%);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: transform 240ms ease;
  overflow: hidden;
}
.home-podium-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  opacity: 0.7;
}
.home-podium-card:hover {
  transform: translateY(-4px);
}
.home-podium-card--1 {
  border-color: rgba(255, 209, 102, 0.35);
  background: radial-gradient(
      120% 120% at 50% 0%,
      rgba(255, 209, 102, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #15161e 0%, #0d0e14 100%);
  padding: 40px 18px;
}
.home-podium-card--1::before {
  background: #ffd166;
}
.home-podium-card--2 {
  border-color: rgba(201, 205, 216, 0.25);
}
.home-podium-card--2::before {
  background: #d8dde7;
}
.home-podium-card--3 {
  border-color: rgba(205, 127, 50, 0.32);
}
.home-podium-card--3::before {
  background: #cd7f32;
}

.home-podium-rank {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: #87858e;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.home-podium-card--1 .home-podium-rank {
  color: #ffd166;
}
.home-podium-card--2 .home-podium-rank {
  color: #d8dde7;
}
.home-podium-card--3 .home-podium-rank {
  color: #cd7f32;
}

.home-podium-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  object-fit: cover;
}
.home-podium-card--1 .home-podium-avatar {
  width: 88px;
  height: 88px;
  box-shadow: 0 0 0 2px rgba(255, 209, 102, 0.6),
    0 0 40px rgba(255, 209, 102, 0.4);
  border: none;
}
.home-podium-card--2 .home-podium-avatar {
  box-shadow: 0 0 0 2px rgba(201, 205, 216, 0.45),
    0 0 28px rgba(201, 205, 216, 0.25);
  border: none;
}
.home-podium-card--3 .home-podium-avatar {
  box-shadow: 0 0 0 2px rgba(205, 127, 50, 0.5),
    0 0 28px rgba(205, 127, 50, 0.25);
  border: none;
}
.home-podium-name {
  font-weight: 700;
  color: #eef0f5;
  font-size: 0.98rem;
  margin-bottom: 4px;
  word-break: break-all;
}
.home-podium-wagered {
  color: #87858e;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ---------- Milestones strip ---------- */
.home-milestones-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0 28px;
}
.home-milestone-pill {
  background: linear-gradient(180deg, #15161e 0%, #0d0e14 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 26px 16px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
}
.home-milestone-pill::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--tier-color, #46aef0);
  opacity: 0.85;
}
.home-milestone-pill::after {
  content: '';
  position: absolute;
  inset: -50% -50% auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    var(--tier-color, #46aef0) 0%,
    transparent 70%
  );
  opacity: 0.08;
  pointer-events: none;
}
.home-milestone-pill:hover {
  transform: translateY(-4px);
  border-color: var(--tier-color, #46aef0);
}
.home-milestone-img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.home-milestone-name {
  font-weight: 700;
  color: #eef0f5;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.home-milestone-stat {
  color: #87858e;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.home-milestone-reward {
  margin-top: 12px;
  font-weight: 700;
  color: var(--tier-color, #46aef0);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}

/* ---------- Code section ---------- */
.home-code-section {
  padding: 60px 28px;
}
.home-code-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: radial-gradient(
      80% 100% at 50% 0%,
      rgba(255, 122, 162, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #15161e 0%, #0d0e14 100%);
  border: 1px solid rgba(255, 122, 162, 0.22);
  border-radius: 22px;
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.home-code-card-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.home-code-card-orb.orb-1 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 122, 162, 0.3), transparent 70%);
  top: -100px;
  left: -80px;
}
.home-code-card-orb.orb-2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(70, 174, 240, 0.22), transparent 70%);
  bottom: -100px;
  right: -60px;
}
.home-code-card-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #ff7aa2;
  font-weight: 700;
}
.home-code-card-title {
  margin: 14px 0 10px;
  color: #f3f4f8;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: -0.01em;
}
.home-code-card-blurb {
  color: #9aa0b0;
  margin: 0 auto 26px;
  max-width: 460px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.home-code-display {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: #07070a;
  border: 1px dashed rgba(255, 122, 162, 0.45);
  border-radius: 14px;
  font-family: 'Source Code Pro', monospace;
}
.home-code-label {
  color: #87858e;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: 'Montserrat', sans-serif;
}
.home-code-value {
  color: #ff7aa2;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.home-code-copy {
  position: relative;
  background: rgba(255, 122, 162, 0.12);
  border: 1px solid rgba(255, 122, 162, 0.32);
  color: #ff7aa2;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease,
    border-color 200ms ease, color 200ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-code-copy .fa-check {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}
.home-code-copy .fa-copy {
  transition: opacity 180ms ease, transform 180ms ease;
}
.home-code-copy:hover {
  background: rgba(255, 122, 162, 0.22);
}
.home-code-copy.is-copied {
  background: rgba(70, 174, 240, 0.18);
  border-color: #46aef0;
  color: #46aef0;
}
.home-code-copy.is-copied .fa-copy {
  opacity: 0;
  transform: scale(0.5);
}
.home-code-copy.is-copied .fa-check {
  opacity: 1;
  transform: scale(1);
}
.home-code-card-cta {
  margin-top: 28px;
}

/* ---------- FAQ ---------- */
.home-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px 80px;
}
.home-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 0;
}
.home-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #eef0f5;
  transition: color 200ms ease;
}
.home-faq-item summary::-webkit-details-marker {
  display: none;
}
.home-faq-item summary:hover {
  color: #46aef0;
}
.home-faq-item summary i {
  transition: transform 280ms ease, color 200ms ease;
  color: #46aef0;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.home-faq-item[open] summary i {
  transform: rotate(45deg);
}
.home-faq-item p {
  margin: 0 8px 22px;
  color: #9aa0b0;
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ---------- Animations ---------- */
@keyframes home-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero-eyebrow,
.home-hero-h1,
.home-hero-tagline,
.home-hero-cta,
.home-hero-prize {
  opacity: 0;
  animation: home-fade-up 700ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.home-hero-eyebrow {
  animation-delay: 80ms;
}
.home-hero-h1 {
  animation-delay: 200ms;
}
.home-hero-tagline {
  animation-delay: 320ms;
}
.home-hero-cta {
  animation-delay: 440ms;
}
.home-hero-prize {
  animation-delay: 380ms;
  animation-duration: 800ms;
}

.home-stat,
.home-pillar,
.home-podium-card,
.home-milestone-pill {
  opacity: 0;
  animation: home-fade-up 600ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.home-stat:nth-child(1) {
  animation-delay: 100ms;
}
.home-stat:nth-child(2) {
  animation-delay: 180ms;
}
.home-stat:nth-child(3) {
  animation-delay: 260ms;
}
.home-stat:nth-child(4) {
  animation-delay: 340ms;
}
.home-pillar:nth-child(1) {
  animation-delay: 100ms;
}
.home-pillar:nth-child(2) {
  animation-delay: 200ms;
}
.home-pillar:nth-child(3) {
  animation-delay: 300ms;
}
.home-podium-card:nth-child(1) {
  animation-delay: 100ms;
}
.home-podium-card:nth-child(2) {
  animation-delay: 200ms;
}
.home-podium-card:nth-child(3) {
  animation-delay: 300ms;
}
.home-milestone-pill:nth-child(1) {
  animation-delay: 80ms;
}
.home-milestone-pill:nth-child(2) {
  animation-delay: 160ms;
}
.home-milestone-pill:nth-child(3) {
  animation-delay: 240ms;
}
.home-milestone-pill:nth-child(4) {
  animation-delay: 320ms;
}
.home-milestone-pill:nth-child(5) {
  animation-delay: 400ms;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-eyebrow,
  .home-hero-h1,
  .home-hero-tagline,
  .home-hero-cta,
  .home-hero-prize,
  .home-stat,
  .home-pillar,
  .home-podium-card,
  .home-milestone-pill {
    animation: none;
    opacity: 1;
  }
  .home-eyebrow-dot,
  .home-hero-prize-glow {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 50px;
  }
  .home-hero-prize {
    padding: 40px 28px;
  }
  .home-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }
  .home-pillars-grid {
    grid-template-columns: 1fr;
  }
  .home-podium {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .home-podium-card--1 {
    order: -1;
  }
  .home-milestones-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-section-head {
    margin-top: 50px;
  }
}

@media (max-width: 560px) {
  .home-stats {
    grid-template-columns: 1fr;
  }
  .home-milestones-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-decor {
    display: none;
  }
  .home-code-card {
    padding: 40px 24px;
  }
  .home-code-display {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
