
#boot-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#boot-preloader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(229, 231, 235, 0.7);
  backdrop-filter: blur(8px);
}

body.dark #boot-preloader::before {
  background: rgba(31, 41, 55, 0.7);
}

.boot-loader {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ===== BRAND TEXT ===== */
.boot-brand {
  display: flex;
  gap: 4px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #374151;
}

body.dark .boot-brand {
  color: #e5e7eb;
}

.boot-brand span {
  opacity: 0;
  animation: letterFade 1.6s ease-in-out infinite;
}

.boot-brand span:nth-child(1) { animation-delay: 0s; }
.boot-brand span:nth-child(2) { animation-delay: 0.2s; }
.boot-brand span:nth-child(3) { animation-delay: 0.4s; }
.boot-brand span:nth-child(4) { animation-delay: 0.6s; }

@keyframes letterFade {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ===== PRICING SUBTEXT ===== */
.boot-subtext {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

body.dark .boot-subtext {
  color: #9ca3af;
}

.dot {
  opacity: 0;
  animation: dotPulse 1.6s infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ===== WINE GLASS ===== */
.wine-glass {
  width: 72px;
  height: 120px;
}

.wine-fill {
  animation: wineFillUp 2.4s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes wineFillUp {
  0% {
    height: 0;
    y: 160px;
  }
  70% {
    height: 90px;
    y: 70px;
  }
  100% {
    height: 0;
    y: 160px;
  }
}
