/* ───────────────────────────────────────────
   TOKENS
─────────────────────────────────────────── */
:root {
  --pink:     #ff6b9d;
  --pink-lt:  #ffc2d9;
  --yellow:   #ffbe0b;
  --blue:     #4cc9f0;
  --purple:   #9b72cf;
  --bg:       #2a1620;
  --bg-2:     #321a26;
  --surface:  rgba(255,255,255,0.06);
  --border:   rgba(255,255,255,0.08);
  --text:     #f5f0ff;
  --muted:    rgba(245,240,255,0.52);
  --glow-pink: rgba(255,107,157,0.28);
  --glow-blue: rgba(76,201,240,0.22);
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-disp: 'Fraunces', Georgia, serif;
  --radius:   1.5rem;
  --radius-sm: 0.75rem;
  --shadow:   0 32px 80px rgba(0,0,0,0.55);
}

/* ───────────────────────────────────────────
   RESET / BASE
─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

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

/* ───────────────────────────────────────────
   ANIMATED BACKGROUND BLOBS
─────────────────────────────────────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(255,107,157,0.18), transparent 70%);
  top: -15%; left: -10%;
  animation-duration: 20s;
}

.blob-2 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(76,201,240,0.15), transparent 70%);
  bottom: -10%; right: -8%;
  animation-duration: 25s;
  animation-delay: -8s;
}

.blob-3 {
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, rgba(255,190,11,0.12), transparent 70%);
  top: 40%; left: 40%;
  animation-duration: 30s;
  animation-delay: -14s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4vw, 6vh) scale(1.06); }
}

/* ───────────────────────────────────────────
   NAV
─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: rgba(42,22,32,0.7);
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
  font-size: clamp(1rem, 3.5vw, 1.5rem);
}

.logo-more {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: inherit;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255,107,157,0.3));
}

.logo-icecream {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: inherit;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255,107,157,0.12);
  border: 1px solid rgba(255,107,157,0.25);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 5rem;
}

.hero-inner {
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 1.6rem; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  overflow: visible;
}

.hero-title em {
  font-style: italic;
  display: inline;
  overflow: visible;
  padding-right: 0.15em;
  background: linear-gradient(100deg, var(--pink), var(--yellow) 60%, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

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

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(10px);
  width: fit-content;
  transition: border-color 0.25s, background 0.25s;
}

.hero-location-pill svg {
  color: var(--pink);
  flex-shrink: 0;
}

/* ─── Ice Cream Visual ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 2rem;
}

.scoop-stack {
  position: relative;
  width: 220px;
  height: 400px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.scoop-glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 40px;
  border-radius: 50%;
  background: var(--glow-pink);
  filter: blur(22px);
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.12); }
}

/* Cone */
.cone-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cone-shape {
  width: 112px;
  height: 155px;
  background: linear-gradient(155deg, #eaa962 0%, #d4854a 45%, #a85520 100%);
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  position: relative;
}

.cone-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      62deg,
      transparent,
      transparent 11px,
      rgba(255,255,255,0.10) 11px,
      rgba(255,255,255,0.10) 13px
    ),
    repeating-linear-gradient(
      -62deg,
      transparent,
      transparent 11px,
      rgba(255,255,255,0.10) 11px,
      rgba(255,255,255,0.10) 13px
    );
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}

.cone-rim {
  width: 118px;
  height: 16px;
  margin-top: -2px;
  background: linear-gradient(90deg, #c87030, #eaa962, #c87030);
  border-radius: 0 0 4px 4px;
  order: -1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

/* Scoops */
.scoop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), inset 0 -8px 0 rgba(0,0,0,0.15);
}

.s-bot {
  width: 110px; height: 92px;
  bottom: 158px;
  background: linear-gradient(135deg, #ff8fab, #ffccd5);
}

.s-mid {
  width: 102px; height: 87px;
  bottom: 224px;
  background: linear-gradient(135deg, #ffbe0b, #ffdf72);
}

.s-top {
  width: 94px; height: 82px;
  bottom: 285px;
  background: linear-gradient(135deg, #4cc9f0, #a2d2ff);
}

/* Drips */
.drip {
  position: absolute;
  border-radius: 0 0 8px 8px;
  background: rgba(255,190,11,0.85);
}

.d1 {
  width: 10px; height: 30px;
  left: calc(50% + 16px);
  bottom: 274px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(to bottom, #ffccd5, #ffb3c6);
}

.d2 {
  width: 8px; height: 22px;
  left: calc(50% - 26px);
  bottom: 268px;
  background: linear-gradient(to bottom, #ffdf72, #ffbe0b);
}

/* Cherry */
.cherry {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-20%);
}

.cherry-ball {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  box-shadow: 0 4px 14px rgba(230,57,70,0.5);
}

.cherry-stem {
  width: 2px; height: 18px;
  background: #52b788;
  border-radius: 2px;
  margin: 0 auto;
  transform: rotate(20deg) translateY(-2px);
  transform-origin: bottom center;
}

/* Sprinkles */
.sprinkle {
  position: absolute;
  width: 6px; height: 14px;
  border-radius: 4px;
  opacity: 0.9;
}

.sp1 { background: #ff6b9d; top: 70px; left: 22px; transform: rotate(30deg); }
.sp2 { background: #ffbe0b; top: 90px; right: 18px; transform: rotate(-40deg); }
.sp3 { background: #4cc9f0; top: 130px; left: 14px; transform: rotate(15deg); }
.sp4 { background: #a2d2ff; top: 55px; right: 28px; transform: rotate(-20deg); }
.sp5 { background: #caffbf; top: 115px; right: 12px; transform: rotate(50deg); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scroll-grow 2.2s ease-in-out infinite;
}

@keyframes scroll-grow {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ───────────────────────────────────────────
   CARDS SECTION
─────────────────────────────────────────── */
.cards-section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
}

.cards-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover::before { opacity: 1; }

.card-pink { border-color: rgba(255,107,157,0.2); }
.card-pink::before { background: radial-gradient(circle at top left, rgba(255,107,157,0.1), transparent 60%); }

.card-yellow { border-color: rgba(255,190,11,0.2); }
.card-yellow::before { background: radial-gradient(circle at top left, rgba(255,190,11,0.1), transparent 60%); }

.card-blue { border-color: rgba(76,201,240,0.2); }
.card-blue::before { background: radial-gradient(circle at top left, rgba(76,201,240,0.1), transparent 60%); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  display: block;
}

.card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ───────────────────────────────────────────
   FLAVOURS SECTION
─────────────────────────────────────────── */
.flavours-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.flavours-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,107,157,0.1);
  border: 1px solid rgba(255,107,157,0.2);
  width: fit-content;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 36rem;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.flavour-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s;
  cursor: default;
}

.flavour-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.15);
}

.flavour-swatch {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.flavour-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.flavour-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.flavour-desc {
  font-size: 0.78rem;
  color: var(--muted);
}

.flavour-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 1rem;
}

/* ───────────────────────────────────────────
   TEASER QUOTE
─────────────────────────────────────────── */
.quote-section {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
  text-align: center;
}

.quote-inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-text {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.quote-text em {
  font-style: italic;
  display: inline;
  overflow: visible;
  padding-right: 0.15em;
  background: linear-gradient(100deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.quote-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ───────────────────────────────────────────
   NEON SIGN
─────────────────────────────────────────── */
.neon-section {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
}

.neon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.neon-sign {
  position: relative;
  padding: 1.5rem 3rem;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.4), 0 10px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.neon-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: 0.15em;
  color: #333;
  text-shadow: 1px 1px 2px #111, -1px -1px 2px #444;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  user-select: none;
}

.neon-sign:hover .neon-text {
  color: #fff;
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--pink),
    0 0 40px var(--pink),
    0 0 80px var(--pink);
  animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 20px var(--pink),
      0 0 40px var(--pink),
      0 0 80px var(--pink);
  }
  20%, 24%, 55% {
    text-shadow: none;
    color: #444;
  }
}

.neon-caption {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ───────────────────────────────────────────
   FAQ SECTION
─────────────────────────────────────────── */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 6rem;
}

.faq-inner {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-item[open] {
  border-color: rgba(255,107,157,0.3);
  background: rgba(255,107,157,0.05);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--pink);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ───────────────────────────────────────────
   CTA BANNER
─────────────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 5rem;
}

.cta-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.5rem;
  border-radius: calc(var(--radius) + 0.5rem);
  background: linear-gradient(135deg, rgba(255,107,157,0.12), rgba(76,201,240,0.08));
  border: 1px solid rgba(255,107,157,0.2);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,157,0.18), transparent 70%);
  pointer-events: none;
}

.cta-text h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cta-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 36rem;
}

.cta-socials {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  background: linear-gradient(135deg, var(--pink), #e040a0);
  color: #fff;
  border: none;
  box-shadow: 0 8px 28px rgba(255,107,157,0.35);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,107,157,0.45);
}

.social-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text);
  box-shadow: none;
}

.social-btn-outline:hover {
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-logo {
  font-weight: 800;
  color: var(--text);
  font-size: 0.9rem;
}

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { align-items: center; }
  .hero-sub { max-width: 100%; }

  .hero-visual {
    justify-content: center;
    order: -1;
    padding-bottom: 0;
  }

  .scoop-stack { width: 180px; height: 330px; }
  .s-bot  { width: 90px; height: 76px; bottom: 130px; }
  .s-mid  { width: 82px; height: 70px; bottom: 188px; }
  .s-top  { width: 76px; height: 65px; bottom: 240px; }
  .cone-shape { width: 90px; height: 125px; }
  .cone-wrap  { width: 90px; }
  .cone-rim   { width: 96px; }

  .cards-inner { grid-template-columns: 1fr; }
  .flavour-grid { grid-template-columns: 1fr 1fr; }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .cta-socials { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .flavour-grid { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
