/* Custom styling additions for Kate Royale felt environment */

/* Elegant customizable scrollbars */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #090a0f;
}
::-webkit-scrollbar-thumb {
  background: #20222a;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f4251;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Elite card container lifting transforms */
.card-hover-lift {
  transition: transform 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), box-shadow 0.2s ease-in-out;
}

.card-hover-lift:hover {
  transform: translateY(-20px) rotate(1deg) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  z-index: 50 !important;
}

/* Active Highlight Glow */
.seat-active-glowing {
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.7);
}

/* Rounded Cards */
.gold-trim {
  border: 1px solid #d9a752;
  box-shadow: inset 0 0 12px rgba(217,167,82,0.15);
}