/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .container {
    text-align: center;
  }
  
  /* Neon Title */
  .neon-title {
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 20px #ff4da6,
      0 0 40px #ff4da6,
      0 0 80px #ff4da6,
      0 0 90px #ff4da6,
      0 0 100px #ff4da6,
      0 0 150px #ff4da6;
  }
  
  /* Red Button */
  .red-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    background-color: #ff4d4d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .red-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Shooting Star */
  .shooting-star {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #ffffff, transparent);
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ff4da6;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
  }
  
  .shooting-star.animate {
    animation: shoot 2s linear forwards;
  }
  
  /* Animation for Shooting Star */
  @keyframes shoot {
    0% {
      opacity: 1;
      transform: translateX(-100%);
    }
    100% {
      opacity: 0;
      transform: translateX(150vw);
    }
  }