#vp-christmas-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  box-sizing: border-box;
}

#vp-christmas-popup {
  background: white;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid #FF1493;
  position: relative;
}

#vp-christmas-popup.vp-visible {
  transform: scale(1);
}

.vp-header {
  background: #FF1493;
  padding: 15px;
  text-align: center;
  color: white;
}

.vp-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.vp-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.vp-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.vp-subtitle {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}

.vp-content {
  padding: 20px;
  text-align: center;
}

.vp-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.vp-time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vp-time-box {
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1A1F36;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.05);
}

.vp-time-box.vp-urgent {
  background: #ef4444;
  color: white;
  border-color: #dc2626;
  animation: vp-pulse 2s infinite;
}

.vp-label {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b7280;
  margin-top: 4px;
}

.vp-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 5px;
}

.vp-highlight {
  color: #FF1493;
  font-weight: 800;
}

.vp-footer {
  padding: 15px;
  background: #f9fafb;
  border-top: 2px dashed #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vp-btn {
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.1s;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.vp-btn-primary {
  background: #FF1493;
  color: white;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(255, 20, 147, 0.3);
}

.vp-btn-primary:active {
  transform: scale(0.98);
}

.vp-btn-secondary {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  padding: 10px;
}

@keyframes vp-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Desktop Styles */
@media (min-width: 640px) {
  .vp-header { padding: 25px; }
  .vp-title { font-size: 28px; }
  .vp-subtitle { font-size: 16px; }
  .vp-content { padding: 30px; }
  .vp-timer { gap: 15px; margin-bottom: 25px; }
  .vp-time-box { font-size: 32px; border-radius: 12px; }
  .vp-label { font-size: 11px; margin-top: 8px; }
  .vp-text { font-size: 16px; }
  .vp-footer { flex-direction: row; padding: 20px; }
  .vp-btn { width: auto; }
  .vp-btn-primary { flex: 2; font-size: 18px; }
  .vp-btn-secondary { flex: 1; }
}
