:root {
  --bg-deep: #04081a;
  --bg-card: #0b1229;
  --bg-card2: #0f1a38;
  --gold: #ffd84d;
  --gold-glow: #ffaa00;
  --cyan: #00e5ff;
  --orange: #ff5722;
  --text-main: #e8edf8;
  --text-muted: #8892b0;
  --border: rgba(255,216,77,0.18);
}

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 18px 4px rgba(255,216,77,0.35), 0 0 40px 8px rgba(255,170,0,0.18); }
  50% { box-shadow: 0 0 32px 8px rgba(255,216,77,0.6), 0 0 70px 18px rgba(255,170,0,0.32); }
}

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes badge-pop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

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

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

.glow-box {
  animation: glow-pulse 3s ease-in-out infinite;
}

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

.badge-pop {
  animation: badge-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 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(4,8,26,0.92) 0%, rgba(11,18,41,0.85) 60%, rgba(4,8,26,0.97) 100%);
}

.gold-text {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255,216,77,0.5);
}

.cyan-text {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.45);
}

.card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.card-dark2 {
  background: var(--bg-card2);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd84d 0%, #ff9900 100%);
  color: #04081a;
  font-weight: 800;
  border-radius: 0.5rem;
  padding: 0.85em 2em;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(255,153,0,0.4);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,153,0,0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.82em 1.8em;
  transition: background 0.18s, transform 0.18s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--cyan);
}

.btn-secondary:hover {
  background: rgba(0,229,255,0.12);
  transform: translateY(-2px);
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd84d, #ff9900);
  color: #04081a;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(255,153,0,0.5);
}

.provider-tag {
  display: inline-block;
  padding: 0.3em 0.85em;
  border-radius: 2em;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--cyan);
  font-weight: 600;
  transition: background 0.18s, transform 0.18s;
}

.provider-tag:hover {
  background: rgba(0,229,255,0.18);
  transform: scale(1.06);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(255,216,77,0.35);
  letter-spacing: -0.01em;
}

.prose {
  color: var(--text-main);
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}

.prose h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--gold);
  margin-top: 2em;
  margin-bottom: 0.6em;
  text-shadow: 0 0 10px rgba(255,216,77,0.25);
}

.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--cyan);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.prose p {
  margin-bottom: 1.25em;
  color: var(--text-main);
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}

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

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

.prose ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  color: var(--text-main);
}

.prose ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9em;
}

.prose ol {
  list-style: decimal;
  padding-left: 2em;
  margin-bottom: 1.25em;
}

.prose ol li {
  margin-bottom: 0.5em;
  color: var(--text-main);
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.75em 1.25em;
  background: rgba(255,216,77,0.06);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5em 0;
  color: var(--text-main);
  font-style: italic;
}

.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.5em;
}

.prose thead {
  background: rgba(255,216,77,0.12);
}

.prose th {
  padding: 0.7em 1em;
  text-align: left;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 2px solid rgba(255,216,77,0.3);
}

.prose td {
  padding: 0.65em 1em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--text-main);
}

.prose tr:hover td {
  background: rgba(0,229,255,0.04);
}

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

.nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4em 0.9em;
  border-radius: 0.4rem;
  transition: color 0.18s, background 0.18s;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(255,216,77,0.08);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-answer {
  display: none;
}

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

.faq-chevron {
  transition: transform 0.25s;
}

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

.site-footer {
  background: #020612;
  border-top: 1px solid rgba(255,216,77,0.12);
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid rgba(255,216,77,0.15);
  background: var(--bg-card);
  transition: transform 0.22s, box-shadow 0.22s;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,216,77,0.22);
}

.game-card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  display: block;
}

.promo-card {
  background: var(--bg-card2);
  border: 1px solid rgba(0,229,255,0.18);
  border-radius: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,229,255,0.18);
}

.review-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

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

.payment-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  white-space: nowrap;
}

.payment-table th {
  background: rgba(255,216,77,0.1);
  color: var(--gold);
  padding: 0.75em 1.1em;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,216,77,0.25);
}

.payment-table td {
  padding: 0.7em 1.1em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--text-main);
}

.payment-table tr:hover td {
  background: rgba(255,216,77,0.03);
}

@media (max-width: 640px) {
  .btn-primary, .btn-secondary {
    padding: 0.75em 1.3em;
    font-size: 0.95rem;
  }
}
