/* ============================================
   GLACE ADMINISTRATION — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  /* Core palette */
  --bg-deep: #0a0b10;
  --bg-surface: #11121a;
  --bg-card: #161722;
  --bg-card-hover: #1c1d2e;
  --bg-elevated: #1e1f30;

  /* Accent: Turquoise ↔ Purple gradient spectrum */
  --turquoise: #00e5c8;
  --turquoise-dim: #00b89e;
  --turquoise-glow: rgba(0, 229, 200, 0.15);
  --purple: #9d5cff;
  --purple-dim: #7b3fd4;
  --purple-glow: rgba(157, 92, 255, 0.15);
  --gradient-main: linear-gradient(135deg, #00e5c8 0%, #6c3fff 50%, #c150ff 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(0,229,200,0.08) 0%, rgba(157,92,255,0.08) 100%);
  --gradient-text: linear-gradient(135deg, #00e5c8 0%, #9d5cff 60%, #c150ff 100%);

  /* Text */
  --text-primary: #eaecf5;
  --text-secondary: #8b8ea3;
  --text-muted: #565872;

  /* Borders */
  --border-subtle: rgba(255,255,255,0.06);
  --border-accent: rgba(0,229,200,0.2);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  --container-max: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ============================================
   Reset & Base
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

/* ============================================
   Ambient Background
   ============================================ */

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-bg::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(0,229,200,0.07) 0%, transparent 70%);
  animation: drift1 20s ease-in-out infinite;
}

.ambient-bg::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -100px;
  left: -200px;
  background: radial-gradient(circle, rgba(157,92,255,0.06) 0%, transparent 70%);
  animation: drift2 25s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-80px, 60px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -80px); }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 11, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 11, 16, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg-deep);
  font-weight: 900;
}

.nav-logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--turquoise);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 1px;
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px !important;
  border-radius: 8px;
  background: var(--gradient-main);
  color: var(--bg-deep) !important;
  font-weight: 600 !important;
  -webkit-text-fill-color: var(--bg-deep) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: 0.3s;
}

/* ============================================
   Container
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

section {
  position: relative;
  z-index: 1;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  padding-top: calc(72px + clamp(4rem, 10vw, 8rem));
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  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: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--turquoise);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--turquoise);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s ease-out both;
}

.hero h1 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.3s ease-out both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease-out both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-main);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 200, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
  border-color: var(--turquoise);
  background: var(--turquoise-glow);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s 0.5s ease-out both;
}

.hero-emblem {
  width: 340px;
  height: 340px;
  position: relative;
}

.emblem-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-image: var(--gradient-main) 1;
}

.emblem-ring-outer {
  border: 1px solid rgba(0, 229, 200, 0.15);
  animation: spinSlow 30s linear infinite;
}

.emblem-ring-inner {
  inset: 30px;
  border: 1px solid rgba(157, 92, 255, 0.15);
  animation: spinSlow 20s linear infinite reverse;
}

.emblem-ring-core {
  inset: 60px;
  border: 1px dashed rgba(0, 229, 200, 0.1);
  animation: spinSlow 15s linear infinite;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.emblem-center {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.emblem-center .emblem-icon {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.emblem-center .emblem-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emblem-center .emblem-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Floating orbit nodes */
.orbit-node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.orbit-node:nth-child(5) { top: 5%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-node:nth-child(6) { top: 25%; right: -5%; animation-delay: 1s; }
.orbit-node:nth-child(7) { bottom: 25%; right: -5%; animation-delay: 2s; }
.orbit-node:nth-child(8) { bottom: 5%; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.orbit-node:nth-child(9) { bottom: 25%; left: -5%; animation-delay: 4s; }
.orbit-node:nth-child(10) { top: 25%; left: -5%; animation-delay: 5s; }

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

/* ============================================
   Section Headers
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ============================================
   Services / About
   ============================================ */

.services {
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 200, 0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.service-icon.turquoise {
  background: var(--turquoise-glow);
  border: 1px solid rgba(0, 229, 200, 0.2);
}

.service-icon.purple {
  background: var(--purple-glow);
  border: 1px solid rgba(157, 92, 255, 0.2);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ============================================
   References / Experience
   ============================================ */

.references {
  padding: var(--section-padding);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ref-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}

.ref-card:hover {
  border-color: rgba(157, 92, 255, 0.2);
  transform: translateY(-2px);
}

.ref-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ref-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ref-meta h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.ref-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ref-card-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ref-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--turquoise-glow);
  border: 1px solid rgba(0, 229, 200, 0.15);
  color: var(--turquoise);
}

.ref-tag.purple {
  background: var(--purple-glow);
  border: 1px solid rgba(157, 92, 255, 0.15);
  color: var(--purple);
}

/* ============================================
   About Me
   ============================================ */

.about {
  padding: var(--section-padding);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--gradient-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg-deep) 100%);
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.skill-pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: border-color 0.3s;
}

.skill-pill:hover {
  border-color: var(--turquoise);
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
  padding: var(--section-padding);
}

.contact-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
}

.contact-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.3s, transform 0.2s;
  width: fit-content;
}

.contact-link:hover {
  border-color: var(--turquoise);
  transform: translateY(-2px);
}

.contact-link .link-icon {
  font-size: 1.1rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-left {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-left a {
  color: var(--turquoise);
  transition: opacity 0.3s;
}

.footer-left a:hover {
  opacity: 0.7;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-right a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-right a:hover {
  color: var(--turquoise);
}

/* ============================================
   Impressum Page
   ============================================ */

.legal-page {
  padding-top: calc(72px + 3rem);
  padding-bottom: 4rem;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.legal-back:hover {
  color: var(--turquoise);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content .legal-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--turquoise);
}

.legal-section p,
.legal-section address {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: normal;
}

.legal-section a {
  color: var(--turquoise);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.legal-section a:hover {
  border-bottom-color: var(--turquoise);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ref-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 300px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 11, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .nav-toggle {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
