/* Wintino Casino - Custom Styles */

/* Base Prose Readability */
.prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #e2e8f0;
}

.prose h2,
.prose h3,
.prose h4 {
  color: #f8fafc;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.prose ul,
.prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

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

.prose a {
  color: #38bdf8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: #7dd3fc;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.15) 25%,
    rgba(56, 189, 248, 0.3) 50%,
    rgba(56, 189, 248, 0.15) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    #38bdf8 0%,
    #a78bfa 25%,
    #38bdf8 50%,
    #a78bfa 75%,
    #38bdf8 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.float {
  animation: float 4s ease-in-out infinite;
}

.float-slow {
  animation: float 6s ease-in-out infinite;
}

.float-delay-1 {
  animation-delay: 0.5s;
}

.float-delay-2 {
  animation-delay: 1s;
}

.float-delay-3 {
  animation-delay: 1.5s;
}

/* Pulse Glow */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3),
                0 0 40px rgba(56, 189, 248, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.5),
                0 0 60px rgba(56, 189, 248, 0.2);
  }
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Countdown fade */
@keyframes fade-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.countdown-animate {
  animation: fade-pulse 1s ease-in-out infinite;
}

/* Neon Text Glow */
.neon-glow {
  text-shadow: 
    0 0 10px rgba(56, 189, 248, 0.8),
    0 0 20px rgba(56, 189, 248, 0.6),
    0 0 30px rgba(56, 189, 248, 0.4);
}

/* Card Hover Effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2);
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(56, 189, 248, 0.5);
}

/* Glass Effect */
.glass {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-light {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Tab Styles */
.tab-btn {
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  color: white;
}

.tab-btn:not(.active):hover {
  background: rgba(56, 189, 248, 0.1);
}

/* Badge Styles */
.badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e1b4b;
}

.badge-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  color: white;
}

.badge-green {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #022c22;
}

.badge-pink {
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
  color: white;
}

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

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #38bdf8, #6366f1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7dd3fc, #818cf8);
}

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

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

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

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

/* Selection */
::selection {
  background: rgba(56, 189, 248, 0.3);
  color: white;
}

/* Table Styles */
.table-casino {
  border-collapse: separate;
  border-spacing: 0;
}

.table-casino th {
  background: rgba(56, 189, 248, 0.1);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-casino td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-casino tr:hover td {
  background: rgba(56, 189, 248, 0.05);
}

/* Star Rating */
.star-filled {
  color: #fbbf24;
}

.star-empty {
  color: #475569;
}
