/* Base Styles */
body {
  font-family: "Anek Latin", sans-serif;
  background: #ffffff;
  color: var(--color-text-dark);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Modern Neon Grid Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      var(--color-primary-blue) 0.5px,
      transparent 0.5px
    ),
    linear-gradient(90deg, var(--color-primary-purple) 0.5px, transparent 0.5px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Gradient accent on top right */
body::after {
  content: "";
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 110, 255, 0.12) 0%,
    rgba(76, 107, 255, 0.08) 40%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

main {
  position: relative;
  z-index: 1;
}
