/* ===== Base CRT skin (your current setup) ===== */
body {
  background-color: #000;
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  position: relative;
}





/* ===== HERO SECTION ===== */
.glitch-effect {
  text-align: center;
  position: relative;
  padding-top: 10vh;
  color: #fff;
  text-transform: uppercase;
}

#main-text {
  font-size: clamp(48px, 10vw, 120px); /* responsive: min 48px, ideal 10vw, max 120px */
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.1;
  margin: 0;
  font-family: 'Orbitron', sans-serif; /* or try 'Montserrat', 'Bebas Neue', 'Anton' */
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

#prereg-text {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Poppins', sans-serif;
}

/* Optional: Add smooth fade-in or glitch timing */
.glitch-effect h1,
.glitch-effect p {
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}










/* CRT Static Grid Background */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(248,232,89,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,232,89,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -2;
}

/* CRT Wave Effect */
body::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 50%);
  background-size: 100% 100px;
  animation: scan-wave 8s infinite linear;
  pointer-events: none;
  z-index: -1;
}
@keyframes scan-wave {
  0% { background-position: 0 0; }
  100% { background-position: 0 100vh; }
}

/* Overall screen flicker */
.crt-container {
  width: 100%; height: 100%;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  animation: flicker 0.1s infinite;
}
@keyframes flicker {
  0% { opacity: .95; }
  50% { opacity: 1; }
  100% { opacity: .95; }
}

/* Glitchy hero block */
.glitch-effect {
  text-align: center;
  padding: 40px;
  position: relative;
  color: rgb(248, 89, 222);
  filter: blur(0.5px);
  text-shadow: 0 0 5px rgba(245, 89, 248, 0.7);
  animation: blurry-glitch 4s infinite alternate;
}
@keyframes blurry-glitch {
  0%   { transform: translate(0,0);   filter: blur(.5px); opacity:1;    }
  5%   { transform: translate(2px,-2px); filter: blur(1px); opacity:.95; }
  10%  { transform: translate(-2px,2px); filter: blur(.5px); opacity:1;  }
  15%  { transform: translate(1px,1px);  filter: blur(1.5px); opacity:.9; }
  20%  { transform: translate(0,0);   filter: blur(.5px); opacity:1;    }
  25%  { transform: translate(-1px,-1px); filter: blur(1px); opacity:.95; }
  30%  { transform: translate(1px,-1px);  filter: blur(.5px); opacity:1;  }
  35%  { transform: translate(0,0);   filter: blur(.5px); opacity:1;    }
}

h1, p {
  margin: 10px 0;
  white-space: pre-wrap;
  overflow: hidden;
}

/* Bottom socials */
.socials-section {
  position: absolute; bottom: 20px; width: 100%; text-align: center;
}
.social-links-container {
  display: flex; justify-content: center; align-items: center;
}
.social-link {
  color: #b983ff;
  text-shadow: 0 0 8px rgba(185,131,255,.4);
  text-decoration: none;
  font-size: 1.5em;
  margin: 0 15px;
  position: relative;
  transition: all .3s ease;
}
.social-link::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: rgb(234,0,255);
  transition: width .3s ease-in-out;
}
.social-link:hover::after { width: 100%; }

/* ===== Top Nav (polished + minimal, matches your neon vibe) ===== */
.nav{
  position: sticky; top: 0; z-index: 10;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner{
  height: 56px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Brand (logo left) */
.brand{
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #d8d8d8;
}
.brand__img{
  height: 35px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(248,89,222,.35));
}
.brand__text{
  font-size: 12px; letter-spacing: 1.6px;
  font-weight: 700; opacity: .85;
}

/* Menu (right) */
.menu{ display:flex; align-items:center; gap:20px }
.menu__link{
  position:relative; text-decoration:none;
  color:#b983ff;
  font-size:14px; line-height:1; padding-bottom:6px;
  text-shadow:0 0 6px rgba(185,131,255,.35);
}
.menu__link::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0%;
  background:linear-gradient(90deg, rgb(234,0,255), rgb(248,89,222));
  box-shadow:0 0 10px rgb(248,89,222);
  transition: width .22s ease;
}
.menu__link:hover::after{ width:100% }

/* Retro neon buttons */
.retro-btn{
  --g1: rgba(248,89,222,.18);
  --g2: rgba(234,0,255,.08);
  display:inline-flex; align-items:center; gap:8px;
  color:#fff; text-decoration:none;
  padding:10px 14px; border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, var(--g1), var(--g2));
  border-radius:10px;
  box-shadow: 0 0 8px rgba(248,89,222,.6), 0 0 16px rgba(234,0,255,.45);
  text-shadow:0 0 6px rgba(248,89,222,.85);
  font-weight:700; letter-spacing:.4px;
}
.retro-btn--lg{ padding:14px 18px; font-size:16px; border-radius:10px }
.retro-btn:hover{ filter:brightness(1.06) saturate(1.05) }

/* Responsive tweaks */
@media (max-width: 860px){
  .nav__inner{ height:54px; padding:0 14px }
  .brand__text{ display:none }
  .menu{ gap:14px }
}




/* ===== NAV (sleek glass bar, perfectly centered) ===== */
.nav{
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;

  /* size */
  width: min(1100px, 92vw);
  height: 52px;

  /* glass look */
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(234,0,255,0.06) inset,
    0 6px 22px rgba(0,0,0,0.45),
    0 0 24px rgba(248, 89, 222, 0.15);
}

.nav__wrap{
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* brand left */
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:#d8d8d8;
}
.brand__img{
  height: 44px; width:auto; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(248,89,222,.35));
}
.brand__text{
  font-size: 12px;
  letter-spacing: .14em;   /* pehle jaisa “too wide” nahi */
  font-weight: 700;
  opacity: .85;
}

/* menu right */
.menu{ display:flex; align-items:center; gap:20px; }
.menu__link{
  position:relative;
  text-decoration:none;
  color:#b983ff;                   /* lavender */
  font-size: 13.5px;
  line-height: 1;
  padding-bottom: 6px;
  text-shadow: 0 0 6px rgba(185,131,255,.35);
  opacity: .95;
}
.menu__link::after{
  content:"";
  position:absolute; left:0; bottom:0;
  height:2px; width:0%;
  background: linear-gradient(90deg, rgb(234,0,255), rgb(248,89,222));
  box-shadow: 0 0 10px rgb(248,89,222);
  transition: width .22s ease;
}
.menu__link:hover::after{ width:100% }

/* retro pill button (smaller so chill lage) */
.retro-btn{
  --g1: rgba(248,89,222,.18);
  --g2: rgba(234,0,255,.08);
  display:inline-flex; align-items:center; gap:8px;
  color:#fff; text-decoration:none;
  padding:10px 14px; border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, var(--g1), var(--g2));
  border-radius:10px;
  box-shadow: 0 0 8px rgba(248,89,222,.55), 0 0 16px rgba(234,0,255,.35);
  text-shadow:0 0 6px rgba(248,89,222,.8);
  font-weight:700; letter-spacing:.4px;
}
.retro-btn--sm{ padding:8px 12px; font-size:13px; border-radius:9px }
.retro-btn:hover{ filter:brightness(1.06) saturate(1.05) }

/* keep hero perfectly centered below fixed nav */
.crt-container{ padding-top: 84px; } /* nav height + gap */

/* desktop par bottom socials ko chhupa do (optional, double nav na lage) */
@media (min-width: 900px){
  .socials-section{ display:none; }
}

/* mobile polish */
@media (max-width: 720px){
  .nav{ width: 94vw; height: 50px; top: 12px; }
  .nav__wrap{ padding: 0 12px; }
  .brand__text{ display:none; }
  .menu{ gap:14px; }
  .menu__link{ font-size: 13px; }
  .retro-btn--sm{ padding:7px 10px; font-size:12.5px; }
}

.nav-docs-icon{
  height: 40px;     /* adjust to match Twitter link height */
  width: auto;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px #ea00ff) drop-shadow(0 0 8px #f859de);
}



.nav-github-icon{
  height: 35px;        /* same as .nav-docs-icon for perfect alignment */
  width: auto;
  margin-left: 4px;   /* small horizontal gap from the Docs icon */
  filter: drop-shadow(0 0 4px #ea00ff)
          drop-shadow(0 0 8px #f859de);
  vertical-align: middle;
}


/* ===== Split hero layout ===== */
.hero-split{
  position: relative;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 28px) 0;
  min-height: 56vh; /* keeps it tall enough */
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}

.hero-copy{
  color:#d8d8d8;
  text-shadow: 0 0 10px rgba(248,89,222,.25);
}

.hero-copy .pretitle{
  font-size: 12px;
  letter-spacing: .22em;
  color: #b983ff;
  opacity: .95;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(185,131,255,.35);
}

.hero-copy .title{
  margin: 0 0 10px;
  font-size: clamp(26px, 6vw, 56px);
  color: #fff;
  text-shadow:
    0 0 10px rgba(248,89,222,.6),
    0 0 30px rgba(234,0,255,.25);
  animation: glitch 3.6s ease-in-out infinite; /* reuse your subtle wobble */
}






















/* ===== Top hero (text near the top center) ===== */
.hero-top{
  position: relative;
  z-index: 2;                  /* above the globe */
  width: 100%;
  margin-top: 110px;           /* puts it in your red area under nav */
}
.hero-top__inner{
  width: min(960px, 88vw);     /* nice readable width */
  margin: 0 auto;              /* center horizontally */
  text-align: center;
}
.hero-pretitle{
  font-size: 12px;
  letter-spacing: .22em;
  color: #b983ff;              /* your lavender */
  opacity: .95;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(185,131,255,.35);
}
.hero-title{
  margin: 0;
  font-size: clamp(28px, 6.4vw, 64px);
  color: #fff;
  text-shadow:
    0 0 10px rgba(248,89,222,.6),
    0 0 30px rgba(234,0,255,.25);
  animation: glitch 3.6s ease-in-out infinite; /* reuses your subtle wobble */
}
.hero-sub{
  margin: 12px 0 0;
  font-size: clamp(14px, 2.2vw, 18px);
  color: #d8d8d8;
  opacity: .9;
}









/* Robust bottom-anchored hemisphere placement */
.globe-horizon{
  position: fixed;
  left: 50%;
  top: 100%;                      /* anchor at the bottom edge of the viewport */
  width: 200vmin;                 /* circle size — adjust together */
  height: 200vmin;                /* circle size — adjust together */
  transform: translate(-50%, var(--lift, -36vmin));
  /*   ↑ lift controls how far the arc rises into view.
       more negative = more arc visible; less negative = thinner arc */
  z-index: 1;
  pointer-events: none;
  filter:
    drop-shadow(0 0 14px rgba(248,89,222,.45))
    drop-shadow(0 0 28px rgba(234,0,255,.28));
}

/* Keep your placement as-is (.globe-horizon stays unchanged) */

/* pixel-crisp stroke for the new grid */
.globe-arc{
  width: 100%;
  height: 100%;
  color: rgb(248,89,222);
  image-rendering: pixelated;
  shape-rendering: crispEdges;
}

.globe-arc .lat ellipse,
.globe-arc .lon ellipse{
  fill: none;
  stroke: url(#pix);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  opacity: .9;
}
.globe-arc .lat ellipse:nth-child(odd),
.globe-arc .lon ellipse:nth-child(odd){ opacity: .75; }

/* axis tilt (static), then spin inside it */
.globe-arc .tilt{
  transform-origin: 100px 100px;
  transform: rotate(-18deg);        /* earth-like axial tilt */
}

.globe-arc .spin{
  transform-origin: 100px 100px;
  animation: globe-spin 22s linear infinite;  /* rotate around its axis */
}

/* rotation animation */
@keyframes globe-spin{
  to { transform: rotate(360deg); }
}

/* optional: a touch more depth */
.globe-base{ fill: url(#shade); }
















/* ===== Pixel Socials (retro neon circles) ===== */
.pixel-socials{
  position: fixed;
  right: 24px;
  bottom: 24px;                 /* want top-right instead? use: top: 110px; bottom: auto; */
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;                   /* above globe, below nav shadow */
}

.pixel-btn{
  --ring: rgba(248,89,222,.55);
  --glow1: rgba(248,89,222,.60);
  --glow2: rgba(234,0,255,.35);

  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  text-decoration: none;
  color: rgb(248,89,222);        /* icon color only (does not touch page text) */
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 1px rgba(234,0,255,.06) inset,
    0 6px 18px rgba(0,0,0,.45);
  position: relative;
  transition: transform .12s ease;
}

.pixel-btn::before{
  content:"";
  position:absolute; inset:-6px;
  border-radius: 999px;
  border: 2px solid var(--ring);
  box-shadow: 0 0 10px var(--glow1), 0 0 24px var(--glow2);
  pointer-events:none;
}

.pixel-btn:hover{ transform: translateY(-2px) }


/* Make the icon “chunkier” on hover */
.pixel-btn:hover .px{ transform: scale(1); }











/* Pixel image icons for socials */
.px-img{
  width: 44px;
  height: 44px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 6px rgba(248,89,222,.6))
          drop-shadow(0 0 14px rgba(234,0,255,.4));
}












/* ===== Retro audio toggle ===== */
.pixel-audio{
  position: fixed;
  left: 24px;               /* 👈 stick to left edge */
  bottom: 26px;             /* sits above your social icons; tweak if needed */
  width: 35px; height: 35px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 1px rgba(234,0,255,.06) inset,
    0 6px 18px rgba(0,0,0,.45),
    0 0 12px rgba(248,89,222,.45),
    0 0 24px rgba(234,0,255,.28);
  color: rgb(248,89,222);
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease;
  z-index: 40;
}
.pixel-audio:hover{ transform: translateY(-2px); }

.audio-ic{ width:22px; height:22px; fill: currentColor; }
.audio-ic .wave{ fill: none; stroke: currentColor; stroke-width: 2; }

/* dim waves when OFF */
.pixel-audio:not(.is-on) .wave{ opacity: .25; }

/* small-screen nudge */
@media (max-width: 560px){
  .pixel-audio{
    left: 14px;             /* 👈 stay on left for mobile too */
    bottom: 110px;
    width: 40px; height: 40px;
  }
  .audio-ic{ width:20px; height:20px; }
}








/* Custom site-wide cursor */
html, body {
  cursor: url('cursor.png') 0 0, auto;
}


















/* === hero placement only (no color changes) === */
:root{
  /* tweak these two numbers to taste */
  --hero-shift: -150px;   /* negative = move text UP */
  --hero-gap:   88px;    /* gap between text block and globe */
}

.glitch-effect{
  position: relative;
  z-index: 2;                    /* stay above globe */
  margin-top: var(--hero-shift);
  padding-bottom: var(--hero-gap);
}

/* optional: slightly different tuning on small screens */
@media (max-width: 720px){
  :root{
    --hero-shift: -24px;
    --hero-gap:   56px;
  }
}














/* ===== Backed By strip ===== */
.backed-by{
  position: relative;
  z-index: 2;                 /* stay above globe */
  width: min(1100px, 92vw);
  margin: 14px auto 0;
  padding-bottom: 26px;       /* small safety gap from globe */
  text-align: center;
}

.backed-title{
  margin: 0 0 16px;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #ff83e4;             /* same neon family as your theme */
  text-shadow:
    0 0 6px rgba(248, 89, 222, .65),
    0 0 14px rgba(234, 0, 255, .35);
}

/* three-up grid that collapses nicely on mobile */
.backed-logos{
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 2px;
  align-items: center;
  justify-items: center;
}

.backed-logo{
  height: 60px;               /* tweak if needed */
  width: auto;
  image-rendering: pixelated; /* keep the retro crisp look */
  filter:
    drop-shadow(0 0 8px rgba(248,89,222,.45))
    drop-shadow(0 0 18px rgba(234,0,255,.25));
  opacity: .95;
  transition: transform .12s ease, opacity .12s ease, filter .12s ease;
}

.backed-logo:hover{
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(248,89,222,.65))
    drop-shadow(0 0 22px rgba(234,0,255,.35));
}

/* mobile: stack to two, then one */
@media (max-width: 820px){
  .backed-logos{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .backed-logos{ grid-template-columns: 1fr; }
  .backed-logo{ height: 48px; }
}









/* ===== Backed By: spacing + uniform logo size ===== */
:root{
  /* tune these to taste */
  --backer-w: 260px;       /* each logo box width  */
  --backer-h: 88px;        /* each logo box height */
  --backed-top: -20px;      /* space under the BACKED BY title */
}


.backed-title{ margin-bottom: var(--backed-top); }

/* Make every logo the same visual size */
.backed-logo{
  width: var(--backer-w);
  height: var(--backer-h);
  object-fit: contain;       /* keeps aspect ratio inside the box */
  image-rendering: pixelated;
  /* keep your glow effects; no color changes */
}
















/* ===== Retro KPI strip (under Backed By) ===== */
.kpi-strip{
  position: relative;
  z-index: 2;                          /* stays above globe */
  width: min(1100px, 92vw);
  margin: -35px auto 0;                 /* distance from logos */
  padding-bottom: 17px;                /* safety gap from globe */
  text-align: center;
}

.kpi-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;                           /* spacing between items */
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.kpi-list li{
  white-space: nowrap;
  letter-spacing: .06em;
  font-size: clamp(14px, 1.8vw, 18px);
  color: #ff83e4;                      /* same neon family */
  text-shadow:
    0 0 6px rgba(248,89,222,.55),
    0 0 14px rgba(234,0,255,.30);
  position: relative;
}

/* dot separators */
.kpi-list li + li::before{
  content: "•";
  position: relative;
  margin-right: 18px;
  color: rgba(248,89,222,.75);
  text-shadow:
    0 0 6px rgba(248,89,222,.55),
    0 0 14px rgba(234,0,255,.30);
}

.kpi-number{
  font-weight: 800;
  margin-right: 6px;
}

/* Mobile tweaks */
@media (max-width: 620px){
  .kpi-strip{ padding-bottom: 64px; }
  .kpi-list{ gap: 12px; }
  .kpi-list li + li::before{ margin-right: 10px; }
}





















/* ===== Retro neon preloader ===== */
.preloader{
  position: fixed; inset: 0;
  background: radial-gradient(1200px 500px at 50% -200px, rgba(234,0,255,.10), rgba(0,0,0,.92) 40%) #000;
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity .4s ease, visibility .4s ease;
}
.preloader.hide{ opacity: 0; visibility: hidden; }

.loader-box{
  width: min(540px, 92vw);
  padding: 24px 22px 28px;
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 1px rgba(234,0,255,.06) inset,
    0 0 24px rgba(234,0,255,.28),
    0 0 64px rgba(248,89,222,.25);
  text-align: center;
}

.loader-title{
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  letter-spacing: .18em;
  font-size: clamp(16px, 2.4vw, 20px);
  color: #ff83e4;
  margin-bottom: 12px;
  text-shadow: 0 0 6px rgba(248,89,222,.7), 0 0 16px rgba(234,0,255,.35);
}

/* ASCII dash bar */
.loader-bar{
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: clamp(16px, 2.6vw, 22px);
  line-height: 1.2;
  letter-spacing: .12em;
  color: #f859de;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.45);
  box-shadow:
    0 0 10px rgba(248,89,222,.35),
    0 0 24px rgba(234,0,255,.25) inset;
  min-height: 1.2em;
}

.loader-pct{
  margin-top: 10px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-weight: 800;
  color: #ff83e4;
  text-shadow: 0 0 6px rgba(248,89,222,.6);
}

/* prevent scroll jumps while loading */
html.preloading, body.preloading{ overflow: hidden; }








/* === Sticky Footer === */
.site-footer {
  position: fixed;           /* stay visible at bottom */
  bottom: 0;                 /* attach to bottom edge */
  left: 0;
  width: 100%;
  padding: 14px 16px;
  text-align: center;
  background: transparent;   /* keep your grid/black background visible */
  z-index: 50;               /* above globe and background */
}

.footer-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  color: #ff83e4;
  text-shadow:
    0 0 6px rgba(248,89,222,.55),
    0 0 14px rgba(234,0,255,.30);
}

.footer-link {
  color: #caa8ff;
  text-decoration: none;
  transition: filter .12s ease, opacity .12s ease;
}

.footer-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(248,89,222,.65));
}

.dot {
  color: rgba(248,89,222,.75);
  text-shadow:
    0 0 6px rgba(248,89,222,.55),
    0 0 14px rgba(234,0,255,.30);
}
