body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: "Press Start 2P", cursive;
    background: linear-gradient(135deg, #0e0e0e 25%, #1a1a1a 75%);
    background-size: 200% 200%;
    animation: backgroundAnimation 5s ease infinite;
    color: #00ff00;
    overflow: hidden;
  }
  
  @keyframes backgroundAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  h1, #message {
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
  }
  
  .container {
    text-align: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    color: #00ff00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff00;
    width: 40vw;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  video {
    width: 40vw;
    height: 50vh;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    border: 2px solid #00ff00;
    transition: transform 0.3s ease;
  }
  
  video:hover {
    transform: scale(1.02);
  }
  
  button {
    background-color: #00ff00;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  
  button:hover {
    background-color: #32cd32;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  }
  
  
  .hidden {
    display: none;
  }
  
  #message {
    font-size: 22px;
    margin-top: 20px;
    animation: messageFadeIn 1s ease-in-out;
  }
  
  @keyframes messageFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  #confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .confetto {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    opacity: 0.7;
    animation: fall 5s linear infinite;
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 1.2em;
    }
  
    button {
      padding: 10px 20px;
      font-size: 16px;
    }
  
    #message {
      font-size: 1em;
    }
  
    .container {
      text-align: center;
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 10px;
      color: #00ff00;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
      border: 2px solid #00ff00;
      width: 80vw;
    }
  
    h1 {
      margin-bottom: 20px;
    }
  
    video {
      width: 82vw;
      height: 50vh;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
      border: 2px solid #00ff00;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1em;
    }
  
    button {
      padding: 8px 16px;
      font-size: 14px;
    }
  
    #message {
      font-size: 0.9em;
    }
  }
  