/* DONATE PAGE SPECIFIC STYLES */

body {
  background: #000;
  overflow-x: hidden;
}

.donate-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem 1.5rem;
  min-height: 100vh;
}

.donate-content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.donate-logo {
  width: 70px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(180, 22, 22, 0.3));
}

.donate-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.donate-description {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* DONATION OPTIONS */
.donation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.donation-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.donation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b41616, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.donation-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 22, 22, 0.5);
  box-shadow: 0 20px 40px rgba(180, 22, 22, 0.2);
}

.donation-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(180, 22, 22, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #b41616;
  transition: all 0.4s ease;
}

.donation-card:hover .card-icon {
  background: rgba(180, 22, 22, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.donation-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
  color: #fff;
}

.donation-card > p {
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  flex: 1;
}

/* DONATE BUTTONS */
.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.donate-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.donate-btn:hover::before {
  width: 300px;
  height: 300px;
}

.donate-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.donate-btn:hover svg {
  transform: translateX(4px);
}

.stripe-btn {
  background: linear-gradient(135deg, #635bff 0%, #5a52e8 100%);
}

.stripe-btn:hover {
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.4);
}

.roblox-btn {
  background: linear-gradient(135deg, #00a2ff 0%, #0082cc 100%);
}

.roblox-btn:hover {
  box-shadow: 0 8px 24px rgba(0, 162, 255, 0.4);
}

/* WARNING MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(180, 22, 22, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(180, 22, 22, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(180, 22, 22, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ff6b6b;
}

.modal-content h3 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.modal-content p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
}

.modal-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cancel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.continue-btn {
  background: linear-gradient(135deg, #b41616 0%, #d11a1a 100%);
  color: #fff;
}

.continue-btn:hover {
  box-shadow: 0 8px 24px rgba(180, 22, 22, 0.4);
  transform: translateY(-2px);
}

/* ANIMATION INITIAL STATES */
.donate-logo,
.donate-title,
.donate-description,
.donation-card {
  opacity: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .donate-title {
    font-size: 2rem;
  }

  .donate-description {
    font-size: 0.95rem;
  }

  .donation-options {
    grid-template-columns: 1fr;
  }

  .donation-card {
    padding: 1.5rem;
    min-height: auto;
  }

  .modal-content {
    padding: 2rem;
  }

  .modal-buttons {
    flex-direction: column;
  }
}