:root {
  --bg: #0A0E14;
  --text: #EDEDED;
  --hyper-cyan: #00E8FF;
  --neon-mint: #00F5B5;
  --neon-emerald: #00F5B5;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* === Section Spotlight Glow === */
.section-glow {
  position: relative;
  overflow: hidden;
}

/* === Section Top Divider === */
.divider-top {
  position: relative;
}

.divider-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 232, 255, 0.45),
    rgba(0, 245, 181, 0.45),
    transparent
  );
  pointer-events: none;
}

.section-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 232, 255, 0.09) 0%,
    rgba(0, 245, 181, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}