/* Lovelys v5 — styles for the payment notice, apply-theme bar and boot mask */

.lv-notice {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 4, 10, 0.68);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 180ms ease;
}
.lv-notice.open {
  opacity: 1;
}
.lv-notice-card {
  width: min(420px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #101018;
  color: #f4f4f8;
  padding: 26px 24px 22px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: "DM Sans", system-ui, sans-serif;
}
.lv-notice.open .lv-notice-card {
  transform: none;
}
.lv-notice-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
  color: #ffb4c8;
  background: rgba(255, 92, 138, 0.14);
  border: 1px solid rgba(255, 92, 138, 0.35);
}
.lv-notice-title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lv-notice-body {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 244, 248, 0.68);
}
.lv-notice-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #0b0b12;
  background: linear-gradient(135deg, #b9a8ff, #7ce7ff);
}

.lv-apply {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2147482000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 16, 24, 0.92);
  backdrop-filter: blur(12px);
  color: #f2f2f7;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  max-width: calc(100vw - 24px);
}
.lv-apply-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ce7ff;
  box-shadow: 0 0 10px #7ce7ff;
  flex: none;
}
.lv-apply-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(242, 242, 247, 0.75);
}
.lv-apply-text b {
  color: #fff;
}
.lv-apply-go {
  flex: none;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #0b0b12;
  background: linear-gradient(135deg, #b9a8ff, #7ce7ff);
}
.lv-apply-x {
  flex: none;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: rgba(242, 242, 247, 0.6);
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
}

/* Boot mask: hides the fallback home markup until the real route renders. */
html[data-lv-boot] body > *:not(#lv-boot-veil) {
  visibility: hidden !important;
}
#lv-boot-veil {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: grid;
  place-items: center;
  background: #08080c;
}
#lv-boot-veil::after {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-top-color: #8b7bff;
  animation: lv-boot-spin 0.7s linear infinite;
}
@keyframes lv-boot-spin {
  to {
    transform: rotate(360deg);
  }
}
