/* Контейнер подписки — теперь такой же ширины, как главная */
.container-subscribe {

  width: 100%;
  max-width: 480px;
  height: 100%;
  padding: 18px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

/* Блоки стали шире и выше */
.subscribe-block {
  width: 100%;
  padding: 20px;
  border-radius: 22px;
  background: #0924477a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.block-title {
    margin: 0px;
  padding: 0px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  opacity: 0.95;
}

.slider-label {
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  font-weight: bold;
}

/* Слайдер */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #1a1a1a;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

/* Ползунок */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: #2d6cff;
  border-radius: 50%;
  border: 3px solid white;
  cursor: pointer;
  transition: 0.2s;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Ромбики */
.slider-marks {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
}

.mark {
  width: 16px;
  height: 16px;
  background: #2d6cff;
  transform: rotate(45deg);
  border-radius: 3px;
  opacity: 0.9; /* яркие */
  transition: 0.2s;
  opacity: 0.4;
}


/* Кнопка назад */
.back-btn {
  width: 100%;
  padding: 13px;
  border-radius: 16px;
  border: 2px solid #2d6cff;
  background: transparent;
  color: #2d6cff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: 0.2s;
  box-shadow: 0 0 14px rgba(45,108,255,0.4);
}

.back-btn:hover {
  box-shadow: 0 0 20px rgba(45,108,255,0.7);
  transform: scale(1.02);
}

.mark.active {
  opacity: 1;
  box-shadow: 0 0 12px #2d6cff;
}

.pay-btn {
  width: 100%;
  padding: 13px;
  border-radius: 16px;
  background: #2d6cff;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(45,108,255,0.5);
  transition: 0.2s;
}

.pay-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 26px rgba(45,108,255,0.8);
}
