/* GladiatorsBet Custom CSS */

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.shimmer-text {
  background: linear-gradient(90deg, #cd7f32 0%, #e8a84a 50%, #cd7f32 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

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

.prose h2 {
  color: #e8a84a;
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #333333;
  padding-bottom: 0.5rem;
}

.prose h3 {
  color: #b8cdd8;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  color: #c8c8c8;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.prose a {
  color: #cd7f32;
  text-decoration: underline;
  transition: color 0.2s;
}

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

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #c8c8c8;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #c8c8c8;
}

.prose li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.prose blockquote {
  border-left: 4px solid #c41e3a;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #a0a0a0;
  font-style: italic;
  background: #1a1a1a;
  border-radius: 0 0.5rem 0.5rem 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  display: block;
}

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

.prose table thead tr {
  background-color: #333333;
}

.prose table th {
  padding: 0.75rem 1rem;
  text-align: left;
  color: #e8a84a;
  font-weight: 700;
  border-bottom: 2px solid #444444;
}

.prose table td {
  padding: 0.65rem 1rem;
  color: #c8c8c8;
  border-bottom: 1px solid #2a2a2a;
}

.prose table tbody tr:hover {
  background-color: #1a1a1a;
}

.prose table tbody tr:last-child td {
  border-bottom: none;
}

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

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #cd7f32;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e8a84a;
}

/* Mobile menu visibility fix */
#mobile-menu:not(.hidden) {
  display: block;
  background-color: #1a1a1a;
}

/* Table wrapper utility */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
