/* Copyright (c) 2025 by Puneet | Techartist (https://codepen.io/VoXelo/pen/QwWzwgQ) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  #container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        #00050a 0%,
        #000a14 50%,
        #001020 100%
      );
    overflow: hidden;
  }
  
  .glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%,
        rgba(0, 100, 180, 0.02) 0%,
        rgba(30, 0, 100, 0.03) 50%,
        transparent 75%
      );
    mix-blend-mode: screen;
    opacity: 0.5;
  }
  
  
  #patternName {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: sans-serif;
    font-size: 16px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    padding: 8px 18px;
    border-radius: 25px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  
  #instructions {
    position: fixed;
    bottom: 15px;
    left: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-family: sans-serif;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 100;
    pointer-events: none;
    line-height: 1.4;
  }