body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.35;
}

/* Scanlines */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px);
  pointer-events: none;
  z-index: 9991;
}

/* Custom cursor */
.cursor {
  width: 12px; height: 12px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--pink-light);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  mix-blend-mode: screen;
}

section {
  min-height: 100vh;
  padding: var(--section-pad);
  position: relative;
}

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

/* Shared section labels */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}
h2.section-title .accent  { color: var(--pink); }
h2.section-title .accent2 { color: var(--green); }

/* Shared buttons */
.btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  font-weight: 700;
}
.btn-primary {
  background: var(--pink);
  color: var(--dark);
  box-shadow: 0 0 30px rgba(255,45,120,0.4), 0 4px 15px rgba(255,45,120,0.3);
}
.btn-primary:hover {
  background: var(--pink-light);
  box-shadow: 0 0 50px rgba(255,45,120,0.6), 0 6px 25px rgba(255,45,120,0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  box-shadow: 0 0 15px rgba(0,255,157,0.15);
}
.btn-secondary:hover {
  background: rgba(0,255,157,0.1);
  box-shadow: 0 0 30px rgba(0,255,157,0.3);
  transform: translateY(-2px);
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.8); opacity: 0; }
}

/* Terminal cursor */
.terminal-cursor::after {
  content: '█';
  color: var(--green);
  animation: blink 1s step-end infinite;
  font-family: var(--font-mono);
  font-size: 0.8em;
  margin-left: 2px;
}

@media (max-width: 900px) {
  section { padding: 80px 1.2rem 50px; }
}
