/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Inter', sans-serif;
    height: 100%;
    background: url('Assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
  }
  
  /* Background overlay */
  .overlay {
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  /* Container holds both cards */
  .container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  /* Reusable card style */
  .card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Welcome text */
  .welcome h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .welcome p {
    font-size: 1.25rem;
    font-weight: 400;
  }
  
  /* Link section */
  .links h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  /* Buttons */
  ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    background: #00aaff;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
    font-weight: 600;
    text-align: center;
  }
  
  a:hover {
    background: #008fcc;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .welcome h1 {
      font-size: 2rem;
    }
  
    .welcome p, .links h2 {
      font-size: 1rem;
    }
  }

  /* Make It Rain Button */
.rain-button {
    text-align: center;
  }
  
  #makeItRain {
    background: #28c76f;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  #makeItRain:hover {
    background: #22a55c;
  }
  
  /* Falling money */
  #money-container {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
  }
  
  .money {
    position: absolute;
    top: -50px;
    font-size: 2rem;
    animation: fall linear forwards;
    color: #00ff7f;
  }
  
  @keyframes fall {
    to {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }

  ul li p {
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: 0.5rem;
  color: #dddddd;
}
