/* Wintino Casino - Custom CSS */

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0.5rem 0.1rem rgba(14,165,233,0.4); }
  50% { box-shadow: 0 0 1.5rem 0.4rem rgba(139,92,246,0.6); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

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

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

.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

.parallax-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Prose styling for Markdown content */
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #7dd3fc;
}
.prose p {
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose a {
  color: #38bdf8;
  text-decoration: underline;
}
.prose a:hover {
  color: #a78bfa;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #38bdf8;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #94a3b8;
  font-style: italic;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  width: 100%;
}
.prose thead tr {
  background: linear-gradient(90deg, #0ea5e9, #8b5cf6);
  color: #fff;
}
.prose th {
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #fff;
}
.prose td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #1e3a5f;
  color: #cbd5e1;
}
.prose tbody tr:nth-child(even) {
  background: rgba(14,165,233,0.06);
}
.prose strong {
  color: #f1f5f9;
  font-weight: 700;
}
.prose code {
  background: rgba(14,165,233,0.15);
  color: #7dd3fc;
  padding: 0.1em 0.4em;
  border-radius: 0.3em;
  font-size: 0.9em;
}

/* Global table safety net */
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }
