/* Overlay de respiración — oscuro, centrado y con foco */

:root {
  --overlay-bg-strong: rgba(6,8,12,0.86);
  --overlay-light: rgba(255,255,255,0.06);
}

/* Fullscreen breathing overlay */
#lr-breath-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  box-sizing: border-box !important;
  background: var(--overlay-bg-strong) !important;
  z-index: 22000 !important;
  -webkit-tap-highlight-color: transparent;
}

/* Center container */
#lr-breath-overlay .lr-center {
  width: 100%;
  max-width: 680px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
  padding: 14px;
  box-sizing: border-box;
}

/* Large breathing circle */
#lr-breath-overlay .lr-circle {
  width: min(72vw, 420px);
  height: min(72vw, 420px);
  max-width: 420px;
  max-height: 420px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  display:flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  padding: 16px;
  transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms;
  user-select:none;
}

/* Caption and small controls */
#lr-breath-overlay .lr-caption {
  color: rgba(255,255,255,0.95);
  font-size: clamp(14px, 3.2vw, 18px);
  text-align:center;
  max-width:90%;
}

/* Action buttons */
#lr-breath-overlay .lr-actions { display:flex; gap:12px; justify-content:center; margin-top:8px; }
#lr-breath-overlay button {
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight:700;
  cursor:pointer;
}
#lr-breath-overlay .btn-primary { background: linear-gradient(90deg,#ffd166,#ff9a9e); color:#072032; }
#lr-breath-overlay .btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.08); color: #fff; }

/* Prevent background scroll when overlay open */
body.lr-overlay-open { overflow: hidden !important; touch-action: none !important; }
