/* BetWest Casino – Custom CSS */

:root {
  --navy-900: #050d1a;
  --navy-800: #070f1e;
  --navy-700: #0d1e36;
  --sapphire-500: #2a5ca8;
  --sapphire-400: #4a8fe8;
  --sapphire-300: #6ab0f0;
  --silver-100: #f0f4fc;
  --silver-200: #e0e8f4;
  --silver-300: #c8d4e8;
  --silver-400: #a8b4cc;
}

/* Parallax */
.hero-parallax {
  background-attachment: fixed;
}

/* Marquee */
.marquee-track {
  overflow: hidden;
  width: 100%;
}
.marquee-content {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pulse CTA */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 143, 232, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(74, 143, 232, 0); }
}
.pulse-cta {
  animation: pulse-cta 2.5s ease-in-out infinite;
}

/* Prose Styles */
.prose {
  color: var(--silver-300);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}

.prose h2 {
  color: var(--silver-100);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--sapphire-500);
  padding-bottom: 0.5rem;
}

.prose h3 {
  color: var(--silver-200);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: var(--silver-300);
}

.prose a {
  color: var(--sapphire-300);
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: var(--sapphire-400);
}

.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.prose ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--silver-300);
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sapphire-400);
}

.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  counter-reset: list-counter;
  list-style: none;
}

.prose ol li {
  counter-increment: list-counter;
  margin-bottom: 0.5rem;
  color: var(--silver-300);
  padding-left: 0.5rem;
  position: relative;
}

.prose ol li::before {
  content: counter(list-counter) ".";
  color: var(--sapphire-300);
  font-weight: 700;
  margin-right: 0.5rem;
}

.prose blockquote {
  border-left: 4px solid var(--sapphire-500);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--silver-400);
  font-style: italic;
  background: rgba(26, 58, 110, 0.2);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
}

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

.prose table th {
  background: rgba(26, 58, 110, 0.6);
  color: var(--silver-100);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid rgba(74, 143, 232, 0.2);
}

.prose table td {
  color: var(--silver-300);
  padding: 0.65rem 1rem;
  border: 1px solid rgba(74, 143, 232, 0.15);
  background: rgba(13, 30, 54, 0.5);
}

.prose table tr:hover td {
  background: rgba(26, 58, 110, 0.3);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  display: block;
  border: 1px solid rgba(74, 143, 232, 0.2);
}

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

/* Max container */
.max-w-container {
  max-width: 1440px;
}

/* Details/Summary styling */
details summary::-webkit-details-marker {
  display: none;
}
