/* Custom CSS for Jokery Casino Theme */

/* CSS Variables for Dark Urban Theme */
:root {
  --color-black: #000000;
  --color-deep-grey: #1a1a1a;
  --color-blood-red: #dc2626;
  --color-toxic-green: #10b981;
  --color-sharp-yellow: #fbbf24;
  --color-grey-800: #1f2937;
  --color-grey-700: #374151;
  --color-grey-600: #4b5563;
  --color-grey-400: #9ca3af;
  --color-grey-200: #e5e7eb;
}

/* Custom Animations */
@keyframes neonGlow {
  0%,
  100% {
    box-shadow: 0 0 5px var(--color-toxic-green), 0 0 10px var(--color-toxic-green), 0 0 15px var(--color-toxic-green);
  }
  50% {
    box-shadow: 0 0 10px var(--color-toxic-green), 0 0 20px var(--color-toxic-green), 0 0 30px var(--color-toxic-green);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes tiltHover {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
  }
}

@keyframes parallaxFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Neon Glow Effects */
.neon-glow {
  animation: neonGlow 2s ease-in-out infinite alternate;
}

.neon-border {
  border: 2px solid var(--color-toxic-green);
  box-shadow: 0 0 10px var(--color-toxic-green);
}

/* Marquee Animation */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marqueeScroll 20s linear infinite;
}

/* Tilt Effect */
.tilt-hover:hover {
  animation: tiltHover 0.3s ease-out forwards;
}

/* Parallax Float */
.parallax-float {
  animation: parallaxFloat 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-deep-grey);
}

::-webkit-scrollbar-thumb {
  background: var(--color-toxic-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-sharp-yellow);
}

/* Prose Styling */
.prose {
  color: var(--color-grey-200);
  line-height: 1.6;
}

.prose h2 {
  color: var(--color-sharp-yellow);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* Custom Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--color-blood-red), var(--color-toxic-green));
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-sharp-yellow);
  color: var(--color-sharp-yellow);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-sharp-yellow);
  color: var(--color-black);
}

/* Game Grid Hover Effects */
.game-card {
  transition: all 0.3s ease;
  background: var(--color-grey-800);
  border: 1px solid var(--color-grey-700);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-toxic-green);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

/* Bonus Calculator Styling */
.calculator-input {
  background: var(--color-grey-800);
  border: 1px solid var(--color-grey-600);
  color: var(--color-grey-200);
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.calculator-input:focus {
  outline: none;
  border-color: var(--color-toxic-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Sticky Sidebar */
.sidebar-sticky {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  background: var(--color-deep-grey);
  border-right: 2px solid var(--color-grey-800);
  padding: 1rem 0.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

@media (max-width: 1024px) {
  .sidebar-sticky {
    display: none;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.focus-visible:focus {
  outline: 2px solid var(--color-sharp-yellow);
  outline-offset: 2px;
}

/* Mobile Menu Animation */
.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-toxic-green);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 50;
}

.back-to-top:hover {
  background: var(--color-sharp-yellow);
  transform: translateY(-3px);
}

/* Trustpilot Badge Styling */
.trustpilot-badge {
  background: var(--color-grey-800);
  border: 1px solid var(--color-toxic-green);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* Payment Method Icons */
.payment-icon {
  width: 3rem;
  height: 2rem;
  background: var(--color-grey-700);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  background: var(--color-grey-600);
  transform: translateY(-2px);
}
