/* UK Online Casino Lux - Custom Styles (Tailwind CSS) */

/* ============================================
   Custom Animations
   ============================================ */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease both;
}

.animation-delay-100 {
  animation-delay: 0.1s;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

/* ============================================
   Mobile Menu Transform Helper
   ============================================ */
.translate-x-full {
  transform: translateX(100%);
}

.translate-y-full {
  transform: translateY(100%);
}

/* ============================================
   Details/Summary Styling
   ============================================ */
details summary::-webkit-details-marker {
  display: none;
}

details summary {
  list-style: none;
}

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #12121a;
}

::-webkit-scrollbar-thumb {
  background: #333340;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* ============================================
   Selection Colors
   ============================================ */
::selection {
  background: rgba(212, 175, 55, 0.3);
  color: #ffffff;
}

/* ============================================
   Focus States
   ============================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  header,
  footer,
  .cookie-banner,
  .mobile-menu {
    display: none !important;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
  }
}
