
:root {
    --primary: #0070f3;
    --secondary: #6d28d9;
    --accent: #10b981;
    --dark: #111827;
    --light: #f9fafb;
    --gold: #f5be41;
    --green: #00c853;
    --lavender: #bebeff;
  }
  

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, sans-serif;
  }
  
  body {
    background-color: var(--dark);
    color: var(--light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
  }
  

  .grid-background, .glow, .tech-circles, .particles {
    position: fixed;
  }
  
  .grid-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(17, 24, 39, 0.8) 1px, transparent 1px),
      linear-gradient(90deg, rgba(17, 24, 39, 0.8) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
  }
  
  .glow {
    width: 50vw;
    height: 50vh;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 2;
  }
  
  .glow-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(
      circle,
      rgba(109, 40, 217, 0.3) 0%,
      rgba(0, 112, 243, 0.2) 30%,
      rgba(17, 24, 39, 0) 70%
    );
  }
  
  .glow-2 {
    bottom: -20%;
    left: -10%;
    background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.3) 0%,
      rgba(0, 112, 243, 0.2) 30%,
      rgba(17, 24, 39, 0) 70%
    );
  }
  
  /* Cursor glow effect */
  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(0, 112, 243, 0.2) 0%,
      rgba(17, 24, 39, 0) 70%
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
  }
  
  @media (min-width: 768px) {
    .cursor-glow {
      display: block;
    }
  }
  
  /* Particle styles */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
  }
  
  .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  }
  
  /* Tech circles decoration */
  .tech-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
  }
  
  .tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    opacity: 0.5;
  }
  
  .tech-circle-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation: rotate 60s linear infinite;
  }
  
  .tech-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 5%;
    animation: rotate 40s linear infinite reverse;
  }
  
  .tech-circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation: rotate 30s linear infinite;
  }