/* ============================================================
   DAFFA.DEV — GitHub Universe
   Elegant futuristic technology aesthetic
   ============================================================ */

:root {
  --bg: #030305;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #FFFFFF;
  --muted: #8B8B95;
  --accent: #8B5CF6;
  --accent-soft: rgba(139, 92, 246, 0.18);
  --secondary: #06B6D4;
  --secondary-soft: rgba(6, 182, 212, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
}

body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- INTRO ---------- */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
#intro-screen.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#intro-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- CURSOR ---------- */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  pointer-events: none;
  z-index: 9990;
  transform: translate(-100px, -100px);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
body.cursor-interactive #cursor-dot {
  width: 22px; height: 22px;
  background: rgba(139, 92, 246, 0.25);
  border-color: var(--accent);
}
@media (pointer: coarse) { #cursor-dot { display: none; } }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(3, 3, 5, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--text);
}
.nav__github {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.nav__github:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.nav__github .status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

/* ---------- HERO / UNIVERSE ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
  overflow: hidden;
}
#universe-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#universe-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  pointer-events: none;
}
.hero-content a,
.hero-content button {
  pointer-events: auto;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.hero-title span {
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 28ch;
  margin-bottom: 1.5rem;
}
.hero-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* System HUD (top-right) */
#github-system-hud {
  position: absolute;
  top: calc(var(--nav-h) + 1.25rem);
  right: 1.5rem;
  z-index: 5;
  width: 210px;
  padding: 1rem 1.1rem;
  background: rgba(3, 3, 5, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  pointer-events: auto;
}
.sys-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.sys-user {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.sys-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #86efac;
  font-size: 0.7rem;
  margin-bottom: 0.85rem;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}
.sys-stats {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.sys-stats > div {
  display: flex;
  justify-content: space-between;
}
.sys-key { color: var(--muted); }
.sys-val { font-family: var(--font-mono); }

/* Hover HUD */
#repo-hud {
  position: fixed;
  top: 0; left: 0;
  z-index: 50;
  width: 240px;
  padding: 0.9rem 1rem;
  background: rgba(8, 8, 12, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  backdrop-filter: blur(10px);
}
#repo-hud.is-visible {
  opacity: 1;
  visibility: visible;
}
.hud-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}
.hud-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.15rem; }
.hud-lang { color: var(--muted); margin-bottom: 0.55rem; }
.hud-stats {
  display: flex;
  gap: 1rem;
  font-family: var(--font-mono);
  margin-bottom: 0.35rem;
}
.hud-updated {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Focus panel */
#repo-focus-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 1.5rem;
}
#repo-focus-panel.is-visible {
  opacity: 1;
  visibility: visible;
}
.focus-panel__inner {
  position: relative;
  width: min(480px, 100%);
  padding: 2rem 1.75rem;
  background: #0a0a0e;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.focus-panel__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.focus-panel__close:hover { color: var(--text); border-color: var(--text); }
.focus-panel__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.focus-panel__title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.focus-panel__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.focus-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.focus-panel__key {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.focus-panel__val { font-weight: 500; }
.focus-panel__topics { margin-bottom: 1.5rem; }
.topics-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.35rem; }
.focus-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
}
.btn--accent:hover {
  background: #9d75f7;
  box-shadow: 0 0 32px rgba(139, 92, 246, 0.5);
}
.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
}
.btn.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  padding: 5.5rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}
.section-desc {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ---------- FEATURED ---------- */
#featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.featured-card,
.repo-card {
  position: relative;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  overflow: hidden;
}
.featured-card:hover,
.repo-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--lang-color, var(--accent)) 45%, var(--border));
  background: var(--surface-hover);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px color-mix(in srgb, var(--lang-color, var(--accent)) 20%, transparent);
}
.featured-card__glow {
  position: absolute;
  top: -40%; right: -20%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, color-mix(in srgb, var(--lang-color, var(--accent)) 25%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}
.system-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.featured-card__header,
.repo-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.external-link, .card-link {
  color: var(--muted);
  font-size: 1rem;
  transition: color 0.2s;
}
.external-link:hover, .card-link:hover { color: var(--accent); }
.featured-card__title,
.repo-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}
.featured-card__desc,
.repo-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.featured-card__meta,
.repo-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}
.lang-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c, var(--accent));
  box-shadow: 0 0 6px var(--c, var(--accent));
}
.stat { color: var(--muted); font-family: var(--font-mono); font-size: 0.75rem; }
.featured-card__topics,
.repo-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.topic {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid var(--border);
}
.featured-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.repo-card__divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}
.repo-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}
.badge {
  font-size: 0.62rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--featured { background: var(--accent-soft); color: var(--accent); }
.badge--archived { background: rgba(255,255,255,0.06); color: var(--muted); }
.badge--fork { background: rgba(6,182,212,0.12); color: var(--secondary); }

/* ---------- EXPLORER CONTROLS ---------- */
.explorer-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
.lang-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.lang-filters button {
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
}
.lang-filters button.is-active,
.lang-filters button:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-soft);
}
.search-wrap {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}
#repo-search {
  width: 100%;
  padding: 0.55rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
#repo-search:focus {
  border-color: var(--accent);
}
#repo-search::placeholder { color: var(--muted); }
#repo-sort {
  padding: 0.5rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.8rem;
  outline: none;
  cursor: pointer;
}
#repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}

/* ---------- STACK ---------- */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.stack-cat {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stack-cat h3 {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}
.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.stack-tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

/* ---------- TIMELINE ---------- */
#activity-timeline {
  position: relative;
  padding-left: 1.5rem;
}
#activity-timeline::before {
  content: '';
  position: absolute;
  left: 5px; top: 4px; bottom: 4px;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 1.25rem;
}
.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.timeline-content a {
  font-weight: 500;
  transition: color 0.2s;
}
.timeline-content a:hover { color: var(--accent); }
.timeline-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ---------- ABOUT ---------- */
.about-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
#contact {
  text-align: center;
  padding-bottom: 6rem;
}
#contact .section-title {
  margin-left: auto;
  margin-right: auto;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer a { color: var(--text); }
.footer a:hover { color: var(--accent); }

/* ---------- COMMAND PALETTE ---------- */
#command-palette {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: start center;
  padding-top: 15vh;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
#command-palette.is-open {
  opacity: 1;
  visibility: visible;
}
.palette-box {
  width: min(520px, 92vw);
  background: #0c0c10;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}
#palette-input {
  width: 100%;
  padding: 1rem 1.15rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  outline: none;
}
#palette-input::placeholder { color: var(--muted); }
#palette-results {
  max-height: 320px;
  overflow-y: auto;
  padding: 0.4rem;
}
.palette-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.palette-item:hover,
.palette-item:focus {
  background: var(--accent-soft);
  color: var(--text);
}
.palette-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- CONSTELLATION EXIT ---------- */
#constellation-exit {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
#constellation-exit.is-visible {
  opacity: 1;
  visibility: visible;
}
body.constellation-mode .nav,
body.constellation-mode .hero-content,
body.constellation-mode #github-system-hud,
body.constellation-mode .section {
  opacity: 0.15;
  pointer-events: none;
}

/* ---------- ERROR BANNER ---------- */
#github-error {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  padding: 0.85rem 1.25rem;
  background: #1a1010;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #fca5a5;
  text-align: center;
  max-width: 90vw;
}
#github-error.is-visible { display: block; }

/* ---------- EASTER EGG ---------- */
.easter-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  padding: 1rem 1.75rem;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--accent);
  border-radius: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  backdrop-filter: blur(12px);
  animation: eggIn 0.4s var(--ease);
}
@keyframes eggIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
body.easter-egg #universe-canvas {
  filter: hue-rotate(40deg) brightness(1.15);
}

/* ---------- NO WEBGL ---------- */
body.no-webgl #universe-canvas {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(139, 92, 246, 0.15), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.08), transparent 45%),
    var(--bg);
}
body.no-webgl #universe-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.2), transparent);
  background-size: 100% 100%;
  opacity: 0.7;
  pointer-events: none;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
