/* vCafe Schedule – closed banner */

.vcafe-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 5, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: vcafe-fade-in 0.5s ease both;
  overflow: hidden;
}

/* Preview mode – inline block inside the admin page */
.vcafe-overlay.vcafe-preview {
  position: relative;
  inset: auto;
  min-height: 360px;
  border-radius: 12px;
  margin-top: 12px;
}

@keyframes vcafe-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Card ── */
.vcafe-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #1a0e05, #2d1a08);
  border: 1px solid rgba(255, 180, 60, 0.25);
  border-radius: 20px;
  padding: 48px 56px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255,160,30,0.1),
    0 24px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255,200,80,0.08);
  animation: vcafe-slide-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

@keyframes vcafe-slide-up {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Icon ── */
.vcafe-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(255,160,30,0.4));
  animation: vcafe-float 3s ease-in-out infinite;
}

@keyframes vcafe-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Text ── */
.vcafe-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f5c842;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(245, 200, 66, 0.35);
}

.vcafe-msg {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #d4b896;
  line-height: 1.6;
  margin: 0 0 20px;
}

.vcafe-msg strong {
  color: #ffcc66;
  font-weight: 600;
}

.vcafe-next {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #9a7a5a;
  margin: 0 0 28px;
}

.vcafe-next span {
  color: #c8a96e;
  font-weight: 600;
}

/* ── Dismiss button (preview only) ── */
.vcafe-dismiss {
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid rgba(245, 200, 66, 0.3);
  border-radius: 8px;
  color: #f5c842;
  font-size: 0.8rem;
  padding: 6px 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.vcafe-dismiss:hover {
  background: rgba(245, 200, 66, 0.2);
  border-color: rgba(245, 200, 66, 0.5);
}

/* ── Steam animation ── */
.vcafe-steam {
  position: absolute;
  bottom: 0;
  width: 6px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,200,100,0.15) 0%, transparent 70%);
  animation: vcafe-rise linear infinite;
  pointer-events: none;
  z-index: 1;
}

.vcafe-steam-1 { left: 20%;  height: 220px; animation-duration: 6s;  animation-delay: 0s;   width: 90px; }
.vcafe-steam-2 { left: 50%;  height: 280px; animation-duration: 8s;  animation-delay: 2s;   width: 120px; }
.vcafe-steam-3 { left: 75%;  height: 200px; animation-duration: 7s;  animation-delay: 1s;   width: 80px; }

@keyframes vcafe-rise {
  0%   { transform: translateY(0)   scaleX(1);   opacity: 0;   }
  15%  { opacity: 1; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) scaleX(2); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .vcafe-card {
    padding: 36px 28px;
  }
  .vcafe-title {
    font-size: 1.3rem;
  }
}
