.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.faq-item {
  background: rgba(79, 70, 229, 0.04);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.faq-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.faq-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.donation-card-main {
  background: rgba(79, 70, 229, 0.04);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: 14px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.donation-card-main:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.donation-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  transition: all 0.3s ease;
}

.donation-item:last-child {
  border-bottom: none;
}

.donation-item:hover {
  background: rgba(79, 70, 229, 0.05);
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
  border-radius: 8px;
}

.donation-logo {
  font-size: 32px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(34, 197, 94, 0.1));
  border-radius: 10px;
  flex-shrink: 0;
}

.donation-info {
  flex: 1;
}

.donation-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.donation-address {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  word-break: break-all;
  line-height: 1.3;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.copy-btn-small {
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.copy-btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.copy-btn-small:active {
  transform: translateY(0);
}

.copy-btn-small.copied {
  background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  animation: slideIn 0.3s ease;
  z-index: 1000;
  font-weight: 600;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-title {
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-title:hover {
  text-shadow: 
    0 0 20px rgba(79, 70, 229, 0.8),
    0 0 15px rgba(34, 197, 94, 0.6),
    0 0 10px rgba(139, 92, 246, 0.5);
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .donation-card-main {
    padding: 24px;
  }

  .donation-item {
    flex-wrap: wrap;
  }

  .donation-info {
    flex: 1 1 100%;
  }
}

