/* LuckyCoin Custom CSS */
:root {
  --gold: #FFD700;
  --gold-light: #FFE566;
  --cobalt: #0A1628;
  --cobalt-mid: #0F2040;
  --cobalt-card: #142248;
  --cobalt-accent: #1E3A8A;
  --text-primary: #F0F4FF;
  --text-muted: #9BB3D4;
  --neon-glow: 0 0 18px rgba(255,215,0,0.55);
}

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

@keyframes floatCoin {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(180deg); }
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.4), 0 0 30px rgba(255,215,0,0.2); }
  50% { box-shadow: 0 0 20px rgba(255,215,0,0.8), 0 0 60px rgba(255,215,0,0.4); }
}

@keyframes trailGlow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

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

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

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

.coin-float {
  animation: floatCoin 4s ease-in-out infinite;
}

.neon-pulse {
  animation: neonPulse 2.5s ease-in-out infinite;
}

.trail-glow {
  animation: trailGlow 3s ease-in-out infinite;
}

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

.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(30,58,138,0.80) 50%, rgba(10,22,40,0.95) 100%);
}

.card-glow {
  border: 1px solid rgba(255,215,0,0.2);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card-glow:hover {
  border-color: rgba(255,215,0,0.6);
  box-shadow: 0 0 24px rgba(255,215,0,0.25);
  transform: translateY(-4px);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #0A1628;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  transition: box-shadow 0.3s, transform 0.2s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-gold:hover {
  box-shadow: 0 0 22px rgba(255,165,0,0.7);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid #FFD700;
  color: #FFD700;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.7rem 1.6rem;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: transparent;
}

.btn-outline-gold:hover {
  background: #FFD700;
  color: #0A1628;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255,215,0,0.4);
  margin-bottom: 1.5rem;
}

.badge-bonus {
  background: linear-gradient(135deg, #0F2040 0%, #1E3A8A 100%);
  border: 2px solid #FFD700;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 30px rgba(255,215,0,0.3);
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0A1628;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(255,215,0,0.5);
}

.provider-tag {
  display: inline-block;
  background: rgba(30,58,138,0.5);
  border: 1px solid rgba(255,215,0,0.3);
  color: #FFE566;
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.25rem;
  transition: background 0.2s, border-color 0.2s;
}

.provider-tag:hover {
  background: rgba(255,215,0,0.15);
  border-color: #FFD700;
}

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

.prose h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #FFD700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,215,0,0.2);
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #FFE566;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
  color: #C8D9EF;
}

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

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

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

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

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

.prose blockquote {
  border-left: 4px solid #FFD700;
  padding-left: 1rem;
  color: #9BB3D4;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(30,58,138,0.15);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75rem 1rem;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 1px solid rgba(255,215,0,0.2);
}

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

.prose thead {
  background: rgba(30,58,138,0.7);
}

.prose th {
  color: #FFD700;
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,215,0,0.3);
}

.prose td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #C8D9EF;
}

.prose tr:hover td {
  background: rgba(30,58,138,0.2);
}

.nav-link {
  color: #C8D9EF;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}

.nav-link:hover {
  color: #FFD700;
  background: rgba(255,215,0,0.08);
}

.mobile-menu {
  background: #0A1628;
  border-top: 1px solid rgba(255,215,0,0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(255,215,0,0.12);
  padding: 1rem 0;
}

.faq-question {
  color: #FFE566;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: #C8D9EF;
  margin-top: 0.5rem;
  line-height: 1.7;
}

.payment-icon {
  font-size: 1.4rem;
  color: #FFD700;
  margin-right: 0.5rem;
}

.promo-card {
  background: linear-gradient(135deg, #0F2040 0%, #142248 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,215,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,215,0,0.15);
}

.game-card {
  background: #0F2040;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 180px;
  max-width: 200px;
  flex-shrink: 0;
}

.game-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.review-block {
  background: linear-gradient(135deg, #0F2040 0%, #142248 100%);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255,215,0,0.15);
}

.footer-bg {
  background: linear-gradient(180deg, #070E1C 0%, #050C18 100%);
  border-top: 1px solid rgba(255,215,0,0.15);
}

.disclaimer {
  font-size: 0.78rem;
  color: #7A95B8;
  margin-top: 0.6rem;
  text-align: center;
}
