/* === Блок «Продажа карт оплаты НТВ+» === */
#ntvplus-block {
  background-color: #ffffff;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

#ntvplus-block h2 {
  color: #00a650;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

#ntvplus-block .cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#ntvplus-block .card {
  background-color: #f1f1f1;
  border-radius: 12px;
  width: 280px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s;
}

#ntvplus-block .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#ntvplus-block .card-title {
  font-size: 1.5rem;
  color: #00a650;
  margin-bottom: 10px;
  font-weight: 500;
}

#ntvplus-block .card-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

#ntvplus-block .card-amount span {
  font-size: 1rem;
  color: #666;
}

#ntvplus-block .buy-btn {
  display: inline-block;
  background-color: #00a650;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: background-color .3s;
}

#ntvplus-block .buy-btn:hover {
  background-color: #008b40;
}

#ntvplus-block .note {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  text-align: center;
}