/* Hiệu ứng chuyển động & Phong cách cho angicungduoc.food */

@keyframes popIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  70% {
    transform: scale(1.03);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-pop-in {
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slotRolling {
  0% {
    transform: translateY(0);
    filter: blur(0px);
  }
  50% {
    transform: translateY(-20px);
    filter: blur(2px);
  }
  100% {
    transform: translateY(0);
    filter: blur(0px);
  }
}

.animate-rolling {
  animation: slotRolling 0.15s ease-in-out infinite;
}

@keyframes spinWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Thẻ tab đang chọn */
.tab-active {
  background-color: #ea580c !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* Nút buổi đang chọn (Sáng - Trưa - Tối) */
.session-active {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

/* Ẩn thanh cuộn nhưng vẫn cuộn được */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Canvas hiệu ứng pháo hoa Confetti tràn màn hình */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}
