 :root {
      --neon-blue: #00f7ff;
      --neon-cyan: #00f7ff;
      --neon-purple: #a100ff;
      --neon-pink: #ff00e6;
      --neon-green: #00ff9d;
      --dark-bg: #0a0a15;
      --darker-bg: #050510;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--dark-bg);
      color: white;
      margin: 0;
      overflow-x: hidden;
    }

    .genz-gradient-text {
      background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    }

    .genz-glass-card {
      background: rgba(15, 5, 35, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 247, 255, 0.2);
      transition: all 0.3s ease;
    }

    .genz-glass-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 247, 255, 0.2), 0 0 15px rgba(161, 0, 255, 0.3);
    }

    .genz-tech-icon {
      transition: all 0.3s ease;
    }

    .genz-tech-icon:hover {
      transform: translateY(-5px);
      filter: drop-shadow(0 5px 15px rgba(0, 247, 255, 0.3));
    }

    @keyframes genz-float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .genz-floating {
      animation: genz-float 6s ease-in-out infinite;
    }

    .genz-tech-slider {
      overflow: hidden;
      white-space: nowrap;
    }

    .genz-tech-track {
      display: inline-block;
      animation: genz-scroll 20s linear infinite;
    }

    @keyframes genz-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* Hero Section Canvas Styles */
    #genz-cyber-particle-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .genz-hero-section {
      position: relative;
      padding: 80px 20px;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      /* background: radial-gradient(circle at center, rgba(0, 247, 255, 0.1), transparent 70%); */
    }

    .genz-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(10, 10, 21, 0.7), rgba(10, 10, 21, 0.9));
      z-index: 0;
    }

    .genz-cyber-glow-btn {
      position: relative;
      overflow: hidden;
      background: transparent;
      border: 1px solid var(--neon-cyan);
      transition: all 0.3s ease;
    }

    .genz-cyber-glow-btn:hover {
      background: rgba(0, 247, 255, 0.1);
      box-shadow: 0 0 15px var(--neon-cyan), 0 0 25px var(--neon-purple);
    }

    .genz-cyber-glow-btn::before {
      content: '';
      position: absolute;
      top: -100%;
      left: -100%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(0, 247, 255, 0.3), transparent);
      transform: rotate(45deg);
      animation: genz-buttonGlow 2s infinite;
    }

    @keyframes genz-buttonGlow {
      0% {
        transform: translateY(-100%) rotate(45deg);
      }

      100% {
        transform: translateY(100%) rotate(45deg);
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .genz-hero-section {
        height: 60vh;
        padding: 80px 20px;
      }

      .genz-hero-section h1 {
        font-size: 2.5rem;
        margin-top: 30px;
      }

      .genz-hero-section p {
        font-size: 1rem;
        max-width: 90%;
      }

      .genz-tech-track img {
        width: 48px;
        height: 48px;
      }

      .genz-glass-card {
        padding: 1rem;
      }

      .max-w-7xl {
        padding-left: 1rem;
        padding-right: 1rem;
      }
    }

    @media (max-width: 640px) {
      .genz-hero-section h1 {
        font-size: 2rem;
        margin-top: 30px;
      }

      .genz-hero-section p {
        font-size: 0.9rem;
      }

      .grid.md\:grid-cols-2,
      .grid.lg\:grid-cols-3 {
        grid-template-columns: 1fr;
      }
    }