/* Hazcasino Custom CSS - Frost Spin Theme */
@keyframes frost-drift {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-18px) translateX(10px) scale(1.08); opacity: 1; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallax-bg {
  0% { background-position: 50% 0%; }
  100% { background-position: 50% 30%; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 12px 2px #38bdf8aa; }
  50% { box-shadow: 0 0 28px 6px #7dd3fccc; }
}
.frost-particle {
  animation: frost-drift 6s ease-in-out infinite;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.glow-btn {
  animation: glow-pulse 2.5s ease-in-out infinite;
}
.hero-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
/* Prose styles for Markdown content */
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  color: #7dd3fc;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #1e3a5f;
  padding-bottom: 0.3rem;
}
.prose h3 {
  color: #bae6fd;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #cbd5e1;
}
.prose a {
  color: #38bdf8;
  text-decoration: underline;
}
.prose a:hover {
  color: #7dd3fc;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #38bdf8;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.2rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.2rem 0;
  border: 1px solid #1e3a5f;
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.2rem;
}
.prose th {
  background: #0f2744;
  color: #7dd3fc;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid #1e3a5f;
}
.prose td {
  padding: 0.55rem 1rem;
  border: 1px solid #1e3a5f;
  color: #cbd5e1;
  background: #0a1628;
}
.prose tr:nth-child(even) td {
  background: #0d1e36;
}
/* Global table wrapper safety */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
