/* GladiatorsBet Casino - Custom Styles */

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

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

@keyframes gold-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(201,162,39,0.4); }
  50% { box-shadow: 0 0 25px rgba(201,162,39,0.8); }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

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

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

.gold-glow {
  animation: gold-glow 2s ease-in-out infinite;
}

/* Prose Styles */
.prose {
  color: #2c2416;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.75;
}

.prose h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #2c2416;
  margin-top: 2em;
  margin-bottom: 0.75em;
  padding-bottom: 0.25em;
  border-bottom: 3px solid #c9a227;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a6db5;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.prose p {
  margin-bottom: 1em;
  color: #2c2416;
}

.prose a {
  color: #1a6db5;
  text-decoration: underline;
  font-weight: 600;
}

.prose a:hover {
  color: #c9a227;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 1em;
  color: #2c2416;
}

.prose ol {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin-bottom: 1em;
  color: #2c2416;
}

.prose li {
  margin-bottom: 0.4em;
  color: #2c2416;
}

.prose blockquote {
  border-left: 4px solid #c9a227;
  padding-left: 1em;
  margin-left: 0;
  color: #5c4a2a;
  font-style: italic;
  background-color: #f0ece5;
  border-radius: 0 0.5em 0.5em 0;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(44,36,22,0.15);
  margin: 1.5em 0;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  width: 100%;
  font-size: 0.9em;
}

.prose table thead {
  background-color: #2c2416;
  color: #e8c84a;
}

.prose table th {
  padding: 0.6em 1em;
  text-align: left;
  color: #e8c84a;
}

.prose table td {
  padding: 0.6em 1em;
  color: #2c2416;
  border-bottom: 1px solid #e8e0d5;
}

.prose table tbody tr:nth-child(even) {
  background-color: #f0ece5;
}

.prose code {
  background-color: #e8e0d5;
  color: #2c2416;
  padding: 0.1em 0.3em;
  border-radius: 0.25em;
  font-size: 0.9em;
}

.prose pre {
  background-color: #2c2416;
  color: #e8e0d5;
  padding: 1em;
  border-radius: 0.5em;
  overflow-x: auto;
  margin-bottom: 1.5em;
}

/* Overflow wrapper for tables */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .prose h2 { font-size: 1.35rem; }
  .prose h3 { font-size: 1.1rem; }
  .prose { font-size: 0.95rem; }
}
