/* KudosBet Alpine Luxe Custom CSS */

:root {
  --emerald-deep: #064e3b;
  --emerald-mid: #065f46;
  --emerald-bright: #10b981;
  --silver-light: #e2e8f0;
  --silver-mid: #94a3b8;
  --silver-accent: #cbd5e1;
  --dark-bg: #050d0a;
  --dark-card: #0d1f18;
  --dark-border: #1a3028;
  --gold-accent: #d4af37;
}

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

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(16,185,129,0.3), 0 0 20px rgba(16,185,129,0.15); }
  50% { box-shadow: 0 0 20px rgba(16,185,129,0.6), 0 0 40px rgba(16,185,129,0.3); }
}

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

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

.marquee-track {
  animation: marquee 28s linear infinite;
}

.float-anim {
  animation: parallax-float 5s ease-in-out infinite;
}

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

.shimmer-text {
  background: linear-gradient(90deg, #e2e8f0 0%, #10b981 40%, #d4af37 60%, #e2e8f0 100%);
  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.7s ease both;
}

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

.prose h2 {
  color: #10b981;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  border-left: 4px solid #064e3b;
  padding-left: 0.8rem;
}

.prose h3 {
  color: #e2e8f0;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1.1rem;
  color: #cbd5e1;
}

.prose a {
  color: #10b981;
  text-decoration: underline;
}

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

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

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

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

.prose blockquote {
  border-left: 4px solid #065f46;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
}

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

.prose thead {
  background: #064e3b;
  color: #e2e8f0;
}

.prose th {
  padding: 0.7rem 1rem;
  font-weight: 700;
  border: 1px solid #1a3028;
  color: #e2e8f0;
}

.prose td {
  padding: 0.6rem 1rem;
  border: 1px solid #1a3028;
  color: #cbd5e1;
  background: #0d1f18;
}

.prose tr:nth-child(even) td {
  background: #0a1a12;
}

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

/* Nav */
.nav-bg {
  background: rgba(5, 13, 10, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a3028;
}

.mobile-menu-bg {
  background: #050d0a;
  border-top: 1px solid #1a3028;
}

/* Cards */
.casino-card {
  background: #0d1f18;
  border: 1px solid #1a3028;
  border-radius: 0.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-4px);
  border-color: #10b981;
}

.bonus-badge {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #0d4a36 100%);
  border: 2px solid #10b981;
  border-radius: 1rem;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, #050d0a 0%, #064e3b 40%, #050d0a 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero.webp') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

/* Payment icons */
.payment-row td {
  vertical-align: middle;
}

/* Section headings */
.section-title {
  color: #10b981;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #94a3b8;
}

/* Game card */
.game-card {
  background: #0d1f18;
  border: 1px solid #1a3028;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.game-card:hover {
  transform: scale(1.03);
  border-color: #10b981;
}

/* Step badge */
.step-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #065f46, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

/* Provider cloud */
.provider-tag {
  background: #0d1f18;
  border: 1px solid #1a3028;
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  color: #94a3b8;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}

.provider-tag:hover {
  border-color: #10b981;
  color: #10b981;
}

/* FAQ */
.faq-item {
  background: #0d1f18;
  border: 1px solid #1a3028;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 1rem 1.25rem;
  color: #e2e8f0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: #94a3b8;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s;
  color: #10b981;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #050d0a; }
::-webkit-scrollbar-thumb { background: #065f46; border-radius: 3px; }
