/* CRT Scanline Effect */
body::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

/* Neon Borders & Tech Font */
.service-card, .widget-card {
  border: 1px solid #0ff;
  box-shadow: 0 0 5px #0ff, inset 0 0 5px #0ff;
  border-radius: 4px;
}
h1, h2, h3, .text-xl {
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px #ff00ff;
}

/* Hover Effects */
.service-card:hover {
    box-shadow: 0 0 15px #ff00ff, inset 0 0 10px #ff00ff;
    border-color: #ff00ff;
    transition: all 0.3s ease;
}
