/* Vincobets Casino - Custom CSS */

:root {
  --color-gold: #d4a017;
  --color-gold-light: #f5c842;
  --color-emerald: #064e3b;
  --color-ruby: #9f1239;
  --color-noir: #0a0a0a;
  --color-surface: #141414;
  --color-card: #1c1c1c;
  --color-border: #2a2a2a;
  --color-text: #e5e7eb;
  --color-muted: #9ca3af;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--color-noir);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

/* Prose Content Styles */
.prose-content {
  color: var(--color-text);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.75;
}

.prose-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  line-height: 1.3;
}

.prose-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.prose-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.prose-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.prose-content a:hover {
  color: var(--color-gold-light);
}

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

.prose-content ul li {
  color: #d1d5db;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5rem;
}

.prose-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

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

.prose-content ol li {
  color: #d1d5db;
  margin-bottom: 0.5rem;
  counter-increment: item;
  padding-left: 0.5em;
}

.prose-content ol li::before {
  content: counter(item) '.';
  color: var(--color-gold);
  font-weight: bold;
  margin-right: 0.5em;
}

.prose-content blockquote {
  border-left: 4px solid var(--color-gold);
  background: var(--color-card);
  padding: 1em 1.5em;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #e5e7eb;
  font-style: italic;
}

.prose-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  display: block;
  border: 1px solid var(--color-border);
}

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

.prose-content table thead tr {
  background: linear-gradient(90deg, var(--color-emerald), #065f46);
}

.prose-content table thead th {
  padding: 0.75em 1em;
  text-align: left;
  color: var(--color-gold);
  font-weight: 700;
  white-space: nowrap;
}

.prose-content table tbody tr:nth-child(odd) {
  background-color: var(--color-card);
}

.prose-content table tbody tr:nth-child(even) {
  background-color: var(--color-surface);
}

.prose-content table tbody td {
  padding: 0.7em 1em;
  color: #d1d5db;
  border-bottom: 1px solid var(--color-border);
}

/* Overflow-x fix for tables inside prose */
.prose-content table,
.prose-content .overflow-x-auto {
  overflow-x: auto;
  display: block;
  max-width: 100%;
}

/* Keyframe animations */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

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

.pulse-gold {
  animation: pulse-gold 2s infinite;
}

/* Marquee wrapper */
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
}

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

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

details[open] summary {
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
  margin-bottom: 0;
}

/* Container max-width */
.max-w-site {
  max-width: 1440px;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

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

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

/* Article H1 on single pages */
article h1 {
  color: var(--color-gold);
}
