/* Betroom24 Custom CSS */

:root {
  --color-bg: #0d1117;
  --color-surface: #161b22;
  --color-surface2: #1c2333;
  --color-steel: #3b82f6;
  --color-steel-light: #60a5fa;
  --color-amber: #f59e0b;
  --color-amber-light: #fbbf24;
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-border: #2d3748;
}

* { box-sizing: border-box; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

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

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 22px 6px rgba(245,158,11,0.8); }
}

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

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

.float-anim {
  animation: parallaxFloat 4s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.shimmer-btn {
  background: linear-gradient(90deg, var(--color-amber) 0%, #fff7e6 40%, var(--color-amber) 60%, #f59e0b 100%);
  background-size: 200% auto;
  animation: shimmer 2.5s linear infinite;
  color: #1a0a00;
  font-weight: 700;
}

/* Prose Styles */
.prose {
  max-width: 100%;
  color: var(--color-text);
}

.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-amber-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-steel);
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-steel-light);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.8;
}

.prose a {
  color: var(--color-amber);
  text-decoration: underline;
}

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

.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.prose blockquote {
  border-left: 4px solid var(--color-steel);
  padding-left: 1em;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 1.5rem 0;
}

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

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

.prose table th {
  background-color: var(--color-steel);
  color: #fff;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
}

.prose table td {
  padding: 0.6em 1em;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  background-color: var(--color-surface);
}

.prose table tr:nth-child(even) td {
  background-color: var(--color-surface2);
}

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

/* Nav */
.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #0d1117 60%, #161b22 100%);
  border-bottom: 2px solid var(--color-steel);
}

.mobile-menu {
  background-color: #0d1117;
  border-top: 1px solid var(--color-steel);
}

/* Cards */
.game-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-amber);
}

.promo-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface2) 100%);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.promo-card:hover {
  border-color: var(--color-steel);
  transform: translateY(-3px);
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-amber);
  color: #1a0a00;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-amber-light);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.bonus-badge {
  background: linear-gradient(135deg, #1c2a1c 0%, #0d1a0d 100%);
  border: 2px solid var(--color-amber);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-amber) 0%, var(--color-amber-light) 100%);
  color: #1a0a00;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.85em 2.2em;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.cta-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-steel-light);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75em 2em;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 2px solid var(--color-steel);
  transition: background 0.2s, color 0.2s;
}

.cta-secondary:hover {
  background: var(--color-steel);
  color: #fff;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.6rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.2rem 0;
}

.faq-q {
  font-weight: 700;
  color: var(--color-steel-light);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.faq-a {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.provider-cloud span {
  display: inline-block;
  padding: 0.35em 0.9em;
  margin: 0.25em;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s, border-color 0.2s;
}

.provider-cloud span:hover {
  color: var(--color-amber);
  border-color: var(--color-amber);
}

.review-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.payment-icon {
  font-size: 1.5rem;
  color: var(--color-steel-light);
  margin-right: 0.5rem;
}

@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .burger-btn { display: flex; }
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .burger-btn { display: none; }
  #mobile-menu { display: none !important; }
}
