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

  body {
    background-color: black;
  }
  
  html, body {
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: url('https://static.vecteezy.com/system/resources/thumbnails/002/062/363/small/abstract-background-with-technology-circuit-board-texture-electronic-motherboard-illustration-communication-and-engineering-concept-illustration-vector.jpg') no-repeat center center fixed;*/
    background-size: cover;
    position: relative;
    /*color: #a0e0ff;*/
    /*color: white;*/  /* Text color */
    /*color: #0C2949;*/  /* I like that Text color */
  }
  
  /* Dark overlay to dim background for better contrast */
  #overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 81, 0.75);
    z-index: 0;
    pointer-events: none;
  }
  
  /* Bits container on top */
  #bits-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
  }
  
  /* Bit styling */
  .bit {
    position: absolute;
    background: #ccecff;
    box-shadow: 0 0 8px 3px #ccecff;
    border-radius: 50%;
    opacity: 0.85;
    will-change: transform;
  }
  
  /* Centered Logo */
  .logo {
    position: relative;
    z-index: 10;
    font-size: 6rem;
    color: #55aaff;
    letter-spacing: 0.12em;
    text-shadow:
      0 0 8px #55aaff,
      0 0 20px #55aaff,
      0 0 30px #a0e0ff,
      0 0 50px #a0e0ff;
    user-select: none;
    white-space: nowrap;
    text-align: center;
  }
  