:root {
    --bg-color: #222;
    --card-list-color: #494949;
    --text-color: white;
    --background-filter: #303030;
    --pokemon-red: #FF0000;
    --pokemon-blue: #0075BE;
    --pokemon-yellow: #FFCC00;
    --pokemon-white: white;
    --pokemon-black: black;
    
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--bg-color);
      color: #333;
    }

/* Container styles */


  .donate-container {
    max-width: 1400px;
    margin: 95px auto 0px auto;
    padding: 20px;
  }
  
  /* Header section */
  .donate-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .donate-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }
  
  .donate-subtitle {
    font-size: 1.2rem;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Feature grid */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .feature-card {
    background: var(--card-list-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    color: var(--header-color);
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--header-color);
  }
  
  .feature-description {
    color: #b3b3b3;
    line-height: 1.5;
  }
  
  /* Donation options */
  .donate-options {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-list-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .options-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
  }
  
  .payment-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    gap: 1rem;
  }
  
  .payment-icon {
    height: 24px;
    width: auto;
  }
  
  .paypal-btn {
    background-color: var(--header-color);
    color: white;
  }
  
  .paypal-btn:hover {
    background-color: #c01313;
  }

  /* Donations list styles */
  .donations-list {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--card-list-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .donations-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
  }

  .donations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .donation-card {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .donation-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
  }

  .donation-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .donator-name {
    color: var(--text-color);
    font-weight: 600;
  }

  .donation-date {
    color: #b3b3b3;
    font-size: 0.9rem;
  }

  .donation-message {
    color: #b3b3b3;
    font-style: italic;
    line-height: 1.4;
  }

  /* Existing media query */
  @media (max-width: 768px) {
    .donate-container {
      padding: 1rem;
    }
  
    .donate-title {
      font-size: 2rem;
    }
  
    .amount-buttons {
      grid-template-columns: 1fr;
    }
  
    .amount-btn.custom {
      grid-column: span 1;
    }
  }