/* Flare Modal Styles */
.flare-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.2s;
}
.flare-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.flare-modal:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}
.flare-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 2.2rem 1.8rem 1.2rem 1.8rem;
  min-width: 280px;
  max-width: 90vw;
  text-align: center;
  animation: flareModalPop 0.22s cubic-bezier(.4,1.6,.6,1) both;
}
@keyframes flareModalPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.flare-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff7700;
  margin-bottom: 0.7rem;
  display: block;
}
.flare-modal-message {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 1.3rem;
  line-height: 1.5;
}
.flare-modal-close {
  background: linear-gradient(90deg,#ff7700 0%,#ff3300 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.6em 2.2em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,119,0,0.08);
  transition: background 0.18s, box-shadow 0.18s;
}
.flare-modal-close:hover, .flare-modal-close:focus {
  background: linear-gradient(90deg,#ff3300 0%,#ff7700 100%);
  box-shadow: 0 4px 16px rgba(255,119,0,0.18);
  outline: none;
}