  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      background: #000;
      color: #fff;
      overflow-x: hidden;
  }

  /* Custom Cursor */
  #cursor {
      position: fixed;
      width: 20px;
      height: 20px;
      border: 2px solid #00f2fe;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.2s ease;
      mix-blend-mode: difference;
  }

  #cursor-trail {
      position: fixed;
      width: 8px;
      height: 8px;
      background: #00f2fe;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
  }

  /* Canvas Layers */
  canvas {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
  }

  #particles-canvas {
      z-index: 1;
  }

  #neural-canvas {
      z-index: 2;
  }

  /* Content Layer */
  .content {
      position: relative;
      z-index: 100;
  }

  /* Hero Section */
  .hero-cinematic {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1000px;
      position: relative;
  }

  .hero-content-3d {
      text-align: center;
      transform-style: preserve-3d;
      max-width: 1200px;
      padding: 0 20px;
  }

  .glitch-title {
      font-size: 6rem;
      font-weight: 900;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
  }

  .glitch-title span {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .hero-subtitle {
      font-size: 1.5rem;
      margin: 30px 0;
      opacity: 0.9;
  }

  .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 40px 0;
      flex-wrap: wrap;
  }

  .stat-box {
      text-align: center;
  }

  .stat-number {
      font-size: 3rem;
      font-weight: 900;
      background: linear-gradient(45deg, #00f2fe, #00a8ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .stat-label {
      font-size: 0.9rem;
      opacity: 0.7;
      text-transform: uppercase;
  }

  .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
  }

  .btn-glow {
      padding: 18px 40px;
      font-size: 1.1rem;
      font-weight: 700;
      background: linear-gradient(45deg, #00f2fe, #00a8ff);
      border: none;
      border-radius: 50px;
      text-decoration: none;
      color: #000;
      transition: all 0.3s ease;
      box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
  }

  .btn-glow:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(0, 242, 254, 0.8);
      color: #000;
  }

  .btn-outline {
      padding: 18px 40px;
      font-size: 1.1rem;
      font-weight: 700;
      background: transparent;
      border: 2px solid #00f2fe;
      border-radius: 50px;
      text-decoration: none;
      color: #00f2fe;
      transition: all 0.3s ease;
  }

  .btn-outline:hover {
      background: rgba(0, 242, 254, 0.1);
      transform: translateY(-3px);
      color: #00f2fe;
  }

  /* Sections spacing */
  .section-padding {
      padding: 100px 0;
      position: relative;
  }

  @media (max-width: 768px) {
      .glitch-title {
          font-size: 3rem;
      }

      .hero-stats {
          gap: 20px;
      }

      .stat-number {
          font-size: 2rem;
      }

      .cta-buttons {
          flex-direction: column;
      }

      #cursor,
      #cursor-trail {
          display: none;
      }
  }