/* OhaCasino Custom CSS */

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

@keyframes aurora {
  0% { opacity: 0.15; background-position: 0% 50%; }
  50% { opacity: 0.35; background-position: 100% 50%; }
  100% { opacity: 0.15; background-position: 0% 50%; }
}

@keyframes pulse2 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

.aurora-overlay {
  background: linear-gradient(135deg, rgba(103,216,245,0.08) 0%, rgba(168,85,247,0.08) 50%, rgba(245,197,24,0.06) 100%);
  animation: aurora 8s ease-in-out infinite alternate;
  background-size: 200% 200%;
}

.games-marquee {
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.game-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(245,197,24,0.25);
}

.provider-tag {
  display: inline-block;
  padding: 0.35em 0.9em;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #132060, #1e2e7a);
  color: #9ee8fb;
  border: 1px solid #1e2e7a;
  transition: background 0.2s, color 0.2s;
}

.provider-tag:hover {
  background: linear-gradient(135deg, #f5c518, #ffd740);
  color: #060c24;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { list-style: none; }

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

.prose h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f5c518;
  margin-top: 1em;
  margin-bottom: 0.75em;
  border-bottom: 2px solid #1e2e7a;
  padding-bottom: 0.3em;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9ee8fb;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.prose p {
  margin-bottom: 1.25em;
  color: #c4f0fd;
}

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

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

.prose ul, .prose ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

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

.prose blockquote {
  border-left: 4px solid #f5c518;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #9ee8fb;
  font-style: italic;
  background: rgba(245,197,24,0.06);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75em 1em;
}

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

.prose thead {
  background: #132060;
}

.prose th {
  padding: 0.6em 1em;
  color: #f5c518;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid #1e2e7a;
}

.prose td {
  padding: 0.5em 1em;
  color: #c4f0fd;
  border-bottom: 1px solid #1e2e7a;
}

.prose tr:nth-child(even) td {
  background: rgba(103,216,245,0.04);
}

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

.prose strong {
  color: #ffd740;
  font-weight: 700;
}

.prose code {
  background: #132060;
  color: #9ee8fb;
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

* { box-sizing: border-box; }

.max-w-screen-xl { max-width: 1440px; }

details > summary { cursor: pointer; }
