/* Модальное окно подписки */
.subscription-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}
.subtext{
    color: #ffffff !important;
}
.modal-content {
  background-color: #222;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 15px rgb(223 191 151 / 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background: rgba(223, 191, 151, 0.3);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(223, 191, 151, 0.7);
  transform: scale(1.1);
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.subscription-form h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  color: #dfbf97;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.subscription-form input {
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 16px;
  background: #333;
  color: white;
  box-shadow: inset 0 0 5px #000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.subscription-form input:focus {
  background: #444;
  outline: none;
  box-shadow: 0 0 8px #dfbf97;
}

.subscription-form button {
  background-color: #dfbf97;
  color: #222;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  box-shadow: 0 4px 8px rgb(223 191 151 / 0.5);
}

.subscription-form button:hover {
  background: #c0a765;
  color: #fff;
  box-shadow: 0 6px 12px rgb(223 191 151 / 0.7);
}

#subscription-result {
  margin-top: 10px;
  text-align: center;
  color: #dfbf97;
  font-weight: bold;
}

/* Добавляем класс .show для показа модалки */
.subscription-modal.show {
  display: flex;
  opacity: 1;
}

/* Остальные стили остаются без изменений */