/* app.css – global overrides on top of Tailwind */
:root {
  --brand: #6366f1;
  --brand-dark: #4338ca;
  --brand-light: #818cf8;
}

/* Smooth transitions for choice buttons */
.choice-btn {
  transition: transform 0.1s, box-shadow 0.1s;
}
.choice-btn:active {
  transform: scale(0.97);
}

/* Image reveal container */
#reveal-canvas {
  max-width: 100%;
}

/* Prevent text selection / drag on all images in game screens */
img {
  -webkit-user-drag: none;
  user-select: none;
}

/* Drag handle for editor */
.drag-handle {
  touch-action: none;
}

/* Podium bars */
.podium-bar {
  min-width: 80px;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 4px;
}

/* Animations */
@keyframes pop-in {
  0%   { transform: scale(0.7) translateY(20px); opacity: 0; }
  80%  { transform: scale(1.05); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.pop-in {
  animation: pop-in 0.6s cubic-bezier(.17,.67,.35,1.2) both;
}

@keyframes slide-in-up {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.slide-in { animation: slide-in-up 0.3s ease forwards; }
