:root {
  --bg: #0b1220;               /* near-black indigo */
  --fg: #f7faff;               /* white-ish ink */
  --fg-dim: #cfd8ee;

  --accent: #F3A7C4;           /* hot pink accent */
  --accent-rgb: 243,167,196;  /* for rgba() */

  --surface: #111827;
  --radius: 14px;
}

/* Pink text highlight */
::selection { background: rgba(var(--accent-rgb), .35); color: #fff; }
::-moz-selection { background: rgba(var(--accent-rgb), .35); color: #fff; }

html { background: var(--bg); }

body {
  margin: 0;
  color: var(--fg);
  font: 500 16px/1.6 "Inter", ui-sans-serif, system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji";
  display: flex; justify-content: center; align-items: center;
  min-height: 100vh; background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { text-align: center; position: relative; z-index: 1; }

.name {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .1px;
  margin: 0 0 .3rem;
  color: var(--fg);
}

#username {
  font-size: .95rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
  letter-spacing: .2px;
  color: var(--fg-dim);
}

.links { display: flex; justify-content: center; gap: 0.9rem; }

/* ——— Thicker rings around link bubbles ——— */
.bubble {
  text-decoration: none;
  width: 45px; height: 45px; min-width: 40px; min-height: 40px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65); /* thicker ring */
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease,
              background-color .18s ease, color .18s ease, border-color .18s ease;
}

.bubble:hover {
  transform: translateY(-1px) scale(1.06);
  background: var(--accent);
  border-color: transparent;
  color: #0b1220;
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), .35);
}

/* Thicker focus rings */
.bubble:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(255,255,255,.22),         /* inner light ring */
    0 0 0 9px rgba(var(--accent-rgb), .45),   /* pink halo */
    0 12px 28px rgba(var(--accent-rgb), .35);
}

#cursor-dot {
  position: fixed; left: 0; top: 0;
  width: 16px; height: 16px; margin-left: -8px; margin-top: -8px;
  pointer-events: none; z-index: 2;
  background: rgba(var(--accent-rgb), .38);
  box-shadow: 0 2px 10px rgba(0,0,0,.45), 0 0 18px rgba(var(--accent-rgb), .25);
  transform: translate3d(-100px, -100px, 0);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  mix-blend-mode: normal;
}

@media (prefers-reduced-motion: reduce) {
  #cursor-dot { display: none; }
}


#bg-graph {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
  opacity: .7;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
}

