/* ===== CTA CARD ===== */
.vocab-card {
  background: linear-gradient(145deg, #ffffff 0%, #fff8ee 60%, #fff1d6 100%);
  border-radius: 20px;
  padding: 20px 20px;
  text-align: center;
  margin: 20px 0 30px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255,160,0,0.25);
  box-shadow: 0 24px 70px rgba(255,120,0,0.22), 0 6px 20px rgba(0,0,0,0.08);
  font-family: "Montserrat", sans-serif!important;
}

.vocab-card::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,200,50,0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.vocab-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,140,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===== DECORATIVE DOTS ===== */
.dot { position: absolute; border-radius: 50%; }
.dot-1 { width:10px; height:10px; background:#ffcc00; top:22px; left:36px; opacity:0.7; }
.dot-2 { width:6px; height:6px; background:#ff9a00; top:48px; right:90px; opacity:0.5; }
.dot-3 { width:8px; height:8px; background:#ffd740; bottom:36px; right:48px; opacity:0.6; }
.dot-4 { width:5px; height:5px; background:#ff6f00; bottom:60px; left:80px; opacity:0.4; }

/* ===== TEXT ===== */
.vocab-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff9a00, #ffcc00);
  color: #7a3800;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 18px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(255,150,0,0.3);
}

.vocab-card h2 {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.vocab-card h2 span {
  background: linear-gradient(135deg, #e85222 0%, #b13e19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vocab-card p {
  color: #6b5030;
  font-size: 15px;
  margin: 0 0 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== BUTTON ===== */
.btn-ninja {
  background: linear-gradient(135deg, #e85222 0%, #b13e19 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 42px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 22px rgba(255,120,0,0.45);
  display: inline-block;
}

.btn-ninja:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,120,0,0.55);
}

.btn-ninja:active {
  transform: translateY(0);
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: 14px;
  border: none;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  font-family: "Montserrat", sans-serif!important;
}

.modal-header {
  background: linear-gradient(135deg, #e85222 0%, #b13e19 100%);
  border: none;
  padding: 10px 15px;
}

.modal-header .modal-title {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.modal-header .modal-title span {
  color: #fff3cd;
}

.modal-header .modal-title small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-top: 3px;
}

.modal-header .close {
  color: rgba(255,255,255,0.85);
  opacity: 1;
  font-size: 24px;
  margin-top: -2px;
}

.modal-header .close:hover {
  color: #fff;
}

button.close {
  color: #ffffff !important;
}

/* ===== FORM ===== */
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-control {
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  height: 42px;
  font-size: 14px;
  color: #333;
  padding: 8px 13px;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: none;
}

.form-control:focus {
  border-color: #ff9a00;
  box-shadow: 0 0 0 3px rgba(255,154,0,0.15);
  outline: none;
}

/* ===== OTP ===== */
.otp-row {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}

.otp-row .form-control {
  flex: 1;
}

.btn-otp {
  background: linear-gradient(135deg, #e85222 0%, #b13e19 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0 16px;
  height: 42px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}

.btn-otp:hover {
  opacity: 0.88;
}

.btn-otp.sent {
  background: #27ae60;
  cursor: default;
}

.otp-success {
  font-size: 11px;
  color: #27ae60;
  margin-top: 5px;
}

/* ===== SELECT ===== */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 32px;
}

/* ===== SUBMIT BUTTON ===== */
.modal-submit-btn {
  background: linear-gradient(135deg, #e85222 0%, #b13e19 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
  display: block;
  box-shadow: 0 4px 16px rgba(255,120,0,0.3);
}

.modal-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.modal-note {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
  margin-bottom: 0;
}

