/* =========================
   СТИЛИ СТРАНИЦЫ ДОНАТА
   ========================= */

.donate-section {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  min-height: calc(100vh - 150px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.donate-section .container {
  width: 100%;
  max-width: 600px;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

/* Заголовки */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.donate-subtitle {
  text-align: center;
  color: #bbb;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Форма — строго в колонку */
.donate-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.donate-form .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.donate-form label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #ddd;
}

/* Все поля одинаковые */
.donate-form input[type="text"],
.donate-form input[type="number"],
.donate-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.donate-form input:focus {
  border-color: #e50914;
  background: rgba(255,255,255,0.1);
}

/* Поле с SC и ⚡ */
.input-with-suffix {
  position: relative;
  width: 100%;
}

.input-with-suffix input {
  width: 100%;
  padding-right: 70px;
}

.input-with-suffix .suffix {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-weight: bold;
  pointer-events: none;
}

.input-with-suffix .bonus-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff9800;
  font-size: 18px;
  animation: pulse 1.5s infinite;
  display: none;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Подсветка при x2 */
.highlight-x2 {
  background-color: #fffbe6;
  border: 2px solid #ffc107;
  color: #d35400;
  font-weight: bold;
}

/* Кнопка */
.donate-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  background: #e50914;
  color: #fff;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.donate-btn:hover {
  background: #ff1b1b;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
}

/* Подпись под формой */
.donate-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #bbb;
  text-align: center;
}

.donate-note a {
  color: #e50914;
  font-weight: 600;
  text-decoration: none;
}
.donate-note a:hover { text-decoration: underline; }

/* 📱 Адаптив для мобилок */
@media (max-width: 600px) {
  .donate-section {
    padding: 100px 10px 40px;
  }

  .donate-section .container {
    padding: 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .donate-subtitle {
    font-size: 0.95rem;
  }

  .donate-form input,
  .donate-btn {
    font-size: 1rem;
    padding: 12px;
  }

  .input-with-suffix input {
    padding-right: 60px;
  }
}
