/* General Styles */
body {
    margin: 0;
    padding: 0;
    background: black;
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  /* Background: Glowing Balls */
  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  
  a {
    text-decoration: none;
    color: white;
  }
  .ball {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgb(115, 0, 255), transparent);
    border-radius: 50%;
    opacity: 0.7;
    animation: moveBall 10s linear infinite, changeColor 5s ease infinite;
  }
  
  @keyframes moveBall {
    0% { transform: translate(0, 0); }
    50% { transform: translate(300px, 500px); }
    100% { transform: translate(-200px, -300px); }
  }
  
  @keyframes changeColor {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
  }
  
  /* Glass Card */
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  button {
    background-color: rgba(125, 20, 185, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  button:hover {
    background-color: rgba(124, 20, 185, 0.679);
    color: white;
    transform: scale(1.1);
  }
  
  /* Snake Trail Dots */
  .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(126, 7, 217);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: dotFade 1s ease-out forwards;
  }
  
  @keyframes dotFade {
    to {
      opacity: 0;
      transform: scale(0.5) translate(-50%, -50%);
    }
  }
  