    /* Ambient Glow Effects */
    .glow-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .ambient-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle,
          var(--accent-glow) 0%,
          rgba(8, 10, 16, 0) 70%);
      top: 20%;
      right: -10%;
      pointer-events: none;
      filter: blur(40px);
    }

    .ambient-glow-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle,
          rgba(255, 255, 255, 0.02) 0%,
          rgba(8, 10, 16, 0) 80%);
      bottom: 10%;
      left: -15%;
      pointer-events: none;
      filter: blur(50px);
    }
