/* Vincobets Custom CSS – Gold Rush Theme */

:root {
  --gold: #ffd700;
  --gold-mid: #f0c040;
  --gold-dark: #b8860b;
  --onyx: #0d0d0d;
  --onyx-light: #141414;
  --amber: #ff8c00;
  --text-light: #f5f5f5;
  --text-muted: #9ca3af;
}

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

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

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* Sparkle overlay */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1.2); }
}

.sparkle-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,215,0,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: sparkle 4s ease-in-out infinite;
  pointer-events: none;
}

/* Gold pulse for CTA */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(255,215,0,0); }
}

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

/* Provider tag word cloud */
.provider-tag {
  display: inline-block;
  background: rgba(240,192,64,0.12);
  border: 1px solid rgba(240,192,64,0.25);
  color: #f0c040;
  padding: 0.3em 0.8em;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.provider-tag:hover {
  background: rgba(255,215,0,0.22);
  color: #ffd700;
}

/* FAQ details/summary */
.faq-item summary::-webkit-details-marker { display: none; }

/* Prose styles for single pages */
.prose-vincobets {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 100%;
}

.prose-vincobets h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffd700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(240,192,64,0.2);
  padding-bottom: 0.4em;
}

.prose-vincobets h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0c040;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.prose-vincobets p {
  margin-bottom: 1.2rem;
  color: #d1d5db;
}

.prose-vincobets a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-vincobets a:hover {
  color: #f0c040;
}

.prose-vincobets ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  color: #d1d5db;
}

.prose-vincobets ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  color: #d1d5db;
}

.prose-vincobets li {
  margin-bottom: 0.4rem;
}

.prose-vincobets blockquote {
  border-left: 4px solid #ffd700;
  background: rgba(255,215,0,0.06);
  padding: 0.8em 1.2em;
  margin: 1.5rem 0;
  color: #e5e7eb;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.prose-vincobets table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.prose-vincobets th {
  background: rgba(255,215,0,0.15);
  color: #ffd700;
  font-weight: 700;
  padding: 0.6em 1em;
  text-align: left;
  border-bottom: 2px solid rgba(240,192,64,0.3);
}

.prose-vincobets td {
  padding: 0.55em 1em;
  border-bottom: 1px solid rgba(240,192,64,0.1);
  color: #d1d5db;
}

.prose-vincobets tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}

.prose-vincobets img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(240,192,64,0.2);
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* Responsive media */
img, video, iframe, embed, object {
  max-width: 100%;
}
