/* ===== RADIO JAZB – iOS Glass Style ===== */
.mba-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  z-index: 9999;
}

.mba-modal {
  position: fixed;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: min(520px, 92vw);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(227, 178, 60, 0.45); /* طلایی */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-radius: 24px;
  padding: 20px;
  z-index: 10000;
  color: #fff;
  font-family: IRANSans, system-ui;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.mba-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.mba-close:hover { color: #ffd65b; }

.mba-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mba-tab {
  flex: 1;
  padding: 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.mba-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.mba-tab.mba-active {
  background: linear-gradient(135deg, #ffd65b, #e3b23c);
  color: #111;
  border-color: rgba(255, 215, 91, 0.9);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(227, 178, 60, 0.4);
}

.mba-pane {
  display: none;
}
.mba-pane.mba-active {
  display: block;
}

.mba-form {
  display: grid;
  gap: 12px;
}

.mba-form input {
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.3s ease;
}
.mba-form input:focus {
  border-color: #ffd65b;
  box-shadow: 0 0 8px rgba(255, 215, 91, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

.mba-btn,
.mba-btn-primary {
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mba-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.mba-btn-primary {
  background: linear-gradient(135deg, #ffd65b, #e3b23c);
  color: #111;
  border-color: rgba(255, 215, 91, 0.9);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(227, 178, 60, 0.4);
}
.mba-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(227, 178, 60, 0.6);
}

.mba-otp-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mba-msg {
  min-height: 20px;
  font-size: 0.9rem;
  color: #ffd65b;
  margin-top: 6px;
}

.mba-small {
  font-size: 0.9rem;
  color: #ccc;
}
.mba-glass .mba-blur-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: -1;
}
