/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    text-align: center;
    color: white;
    padding: 20px;
  }
  
  /* Header */
  header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
  }
  
  /* Progress Bar */
  .progress-container {
    margin: 20px auto;
    width: 80%;
  }
  
  .progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 15px;
    width: 100%;
    border-radius: 10px;
    position: relative;
  }
  
  .progress {
    background: #4CAF50;
    height: 15px;
    width: 15%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
  }
  
  /* Donation Section */
  .donation-container {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }
  
  .amount-options {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .amount-btn {
    background: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .amount-btn:hover {
    background: #ff6f61;
  }
  
  /* UPI Buttons */
  .upi-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .upi-btn {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .gpay { background: #4285F4; }
  .phonepe { background: #673AB7; }
  .paytm { background: #0F9D58; }
  
  .upi-btn:hover {
    transform: scale(1.1);
  }
  
  .hidden {
    display: none;
  }
  
  /* Footer */
  footer {
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
  }
  