/* ============================================================
   VIDAPI REVIEW FORM — PREMIUM CARD DESIGN
============================================================ */

.vidapi-review-wrap {
  max-width: 520px;
  margin: 60px auto;
  padding: 28px 30px;
  background: linear-gradient(180deg, #0f2027, #0b151a);
  border: 1px solid #173239;
  border-radius: 14px;
  color: #e7eef0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

/* Headings */
.vidapi-review-wrap h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.vidapi-review-wrap .sub {
  margin: 0 0 22px;
  font-size: 14px;
  opacity: .85;
  text-align: center;
}

/* Messages */
.vidapi-review-error {
  color: #ff6b6b;
  font-size: 13px;
  text-align: center;
  margin-bottom: 12px;
  display: none;
}

.vidapi-review-success {
  color: #7dffb3;
  font-size: 14px;
  text-align: center;
  margin-bottom: 14px;
  display: none;
}

/* ============================================================
   STAR RATING
============================================================ */
.vidapi-stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 22px;
}

.vidapi-stars label {
  font-size: 34px;
  color: #2c5562;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
}

.vidapi-stars label:hover {
  transform: scale(1.2);
}

.vidapi-stars label.active,
.vidapi-stars label:hover,
.vidapi-stars label:hover ~ label {
  color: #f5c542;
}

/* ============================================================
   INPUTS
============================================================ */
.vidapi-review-wrap input[type="text"],
.vidapi-review-wrap textarea {
  width: 100%;
  background: #0b151a;
  border: 1px solid #173239;
  border-radius: 8px;
  padding: 12px 14px;
  color: #e7eef0;
  font-size: 14px;
  margin-bottom: 14px;
  outline: none;
}

.vidapi-review-wrap input::placeholder,
.vidapi-review-wrap textarea::placeholder {
  color: #8faab5;
}

.vidapi-review-wrap textarea {
  min-height: 96px;
  resize: vertical;
}

/* ============================================================
   SUBMIT BUTTON
============================================================ */
.vidapi-review-wrap button {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(180deg, #ffd84d, #ffcc00);
  color: #0d1a20;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.vidapi-review-wrap button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 204, 0, .35);
}

/* Footer note */
.vidapi-review-note {
  margin-top: 14px;
  font-size: 12px;
  opacity: .7;
  text-align: center;
}
