/* ================================================================
   DREAM KHELA — Auth styles (sign-in button, OTP modal)
   ================================================================ */

/* ── Header auth controls ─────────────────────────────────────── */
.auth-hdr-wrap {
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.auth-hdr-btn {
  background: linear-gradient(135deg, #6a00b8, #4a0080);
  color: #FFD700;
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}
.auth-hdr-btn:hover {
  background: linear-gradient(135deg, #8800e8, #6a00b8);
  box-shadow: 0 0 14px rgba(106,0,184,0.6);
}

.user-pill-hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 20px;
  padding: 5px 10px;
}
.user-phone-txt {
  color: #FFD700;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.user-signout-btn {
  background: rgba(232,0,61,0.25);
  color: #ff6b6b;
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s;
}
.user-signout-btn:hover { background: rgba(232,0,61,0.5); }

