/* Styles extraits de support.html */
/* Styles pour le bouton de donation intégré */
.donation-container-inline {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 400px;
  margin: 0 auto;
}

.donation-button-inline {
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  border: none;
  border-radius: 12px;
  padding: 15px 25px;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
}

.donation-button-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.donation-button-inline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.donation-button-inline:hover::before {
  left: 100%;
}

.address-container-inline {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-button-inline {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 8px 16px;
  color: white;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.copy-button-inline:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

@keyframes pulseInline {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.donation-button-inline.pulse {
  animation: pulseInline 2s infinite;
}

/* Styles pour le formulaire de support amélioré */
.support-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.support-header {
  text-align: center;
  margin-bottom: 30px;
}

.support-header h2 {
  color: #aab6fe;
  margin-bottom: 10px;
  font-size: 1.8em;
}

.support-header p {
  color: #bbb;
  font-size: 1.1em;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #aab6fe;
  font-weight: 600;
  font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px;
  color: white;
  font-size: 1em;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #aab6fe;
  box-shadow: 0 0 20px rgba(170, 182, 254, 0.3);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.char-counter {
  text-align: right;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.6);
}

.file-upload-area {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-area:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #aab6fe;
  transform: translateY(-2px);
}

.upload-icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.upload-text {
  color: white;
  font-weight: 600;
  margin-bottom: 5px;
}

.upload-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

.file-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-name {
  color: white;
  font-size: 0.9em;
}

.file-remove {
  background: #ff6b6b;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  color: white;
  cursor: pointer;
  font-size: 0.8em;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: white;
  font-size: 1em;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #aab6fe;
  border-color: #aab6fe;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 0.8em;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #aab6fe, #5c6bc0);
  color: white;
  box-shadow: 0 8px 25px rgba(92, 107, 192, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(92, 107, 192, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.support-tips {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-tips h3 {
  color: #aab6fe;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.support-tips ul {
  list-style: none;
  padding: 0;
}

.support-tips li {
  color: #bbb;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.support-tips li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #aab6fe;
  font-weight: bold;
}

@media (max-width: 768px) {
  .support-container {
    margin: 20px;
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Styles pour les éléments existants */
.address-container-inline {
  display: none;
}

.success-message-inline {
  color: #4caf50;
  font-size: 0.8em;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.file-input-hidden {
  display: none;
}

.btn-loading {
  display: none;
}
