/* Modern Support Page Styling */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.header {
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.header-content h1 {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-content .subtitle {
  font-size: 1.3em;
  font-weight: 300;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.header-content i.fa-heart {
  font-size: 4em;
  margin-bottom: 20px;
  color: #ff6b6b;
  display: block;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Card Styles */
.support-card, .payment-card, .thank-you-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 40px;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover, .payment-card:hover, .thank-you-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Card Headers */
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f0f0f0;
}

.card-header i {
  font-size: 2.5em;
  color: #667eea;
  margin-right: 20px;
}

.card-header h2 {
  font-size: 2.2em;
  color: #333;
  font-weight: 600;
}

/* Card Content */
.card-content p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item i {
  font-size: 2em;
  margin-bottom: 15px;
  display: block;
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9em;
  opacity: 0.9;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  margin: 30px 0;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: #28a745;
  font-size: 1.2em;
  margin-right: 15px;
  width: 20px;
}

/* Payment Section */
.payment-section h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.payment-section p {
  text-align: center;
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}

/* Amount Buttons */
.amount-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.amount-btn {
  padding: 20px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.3em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.amount-btn:hover, .amount-btn.selected {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Custom Amount */
.custom-amount {
  margin-bottom: 40px;
  text-align: center;
}

.custom-amount label {
  display: block;
  font-size: 1.2em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}

.amount-input-group {
  display: inline-flex;
  align-items: center;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 1.3em;
  transition: border-color 0.3s ease;
}

.amount-input-group:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.currency {
  font-weight: bold;
  color: #667eea;
  margin-right: 10px;
}

#customAmount {
  border: none;
  background: transparent;
  outline: none;
  font-size: inherit;
  width: 200px;
  color: #333;
}

#customAmount::placeholder {
  color: #aaa;
}

/* Donate Button */
.donate-btn {
  width: 100%;
  padding: 25px 40px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
  margin-bottom: 30px;
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
}

.donate-btn i {
  margin-right: 15px;
  font-size: 1.2em;
}

.donate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Security Notice */
.security-notice {
  text-align: center;
  color: #666;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-notice i {
  color: #28a745;
  margin-right: 10px;
  font-size: 1.2em;
}

/* Thank You Section */
.thank-you-section {
  text-align: center;
}

.thank-you-card i.fa-hands-helping {
  font-size: 4em;
  color: #28a745;
  margin-bottom: 25px;
}

.thank-you-card h3 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.contact-info p {
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #667eea;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.contact-links a:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.contact-links a i {
  margin-right: 10px;
  font-size: 1.1em;
}

/* Footer */
.footer {
  background: rgba(255,255,255,0.1);
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95em;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2.5em;
  }
  
  .header-content .subtitle {
    font-size: 1.1em;
  }
  
  .support-card, .payment-card, .thank-you-card {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .card-header h2 {
    font-size: 1.8em;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .amount-input-group {
    font-size: 1.1em;
  }
  
  #customAmount {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 40px 15px;
  }
  
  .header-content h1 {
    font-size: 2em;
  }
  
  .amount-buttons {
    grid-template-columns: 1fr;
  }
  
  .main-content {
    padding: 0 15px 40px;
  }
}

/* Loading Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading {
  animation: spin 1s linear infinite;
}