/* 氛围特效：星星 / 底部文案 */

/* 滚动星星特效 */
.dp-sparkle {
  position: absolute;
  font-size: 24px;
  pointer-events: none;
  z-index: 9999;
  animation: sparkleFloat 1.5s ease-out forwards;
}

@keyframes sparkleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) scale(1.2);
  }
}

/* 底部治愈文案 */
.dp-footer-quote {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 12px;
  color: var(--dp-text-sub);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 1000;
  max-width: 90%;
  text-align: center;
  backdrop-filter: blur(10px);
}

/* 新年模式装饰（春节期间自动开启） */
.dp-new-year-mode .dp-hero::before {
  background: linear-gradient(150deg, rgba(255, 240, 240, 0.9), rgba(255, 246, 249, 0.95));
}

.dp-new-year-mode .dp-hero-badge {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white;
  border: none;
}


