@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --red-hot: #e8230a;
  --orange-blaze: #ff6a00;
  --neon-orange: #ff8c00;
  --dark-bg: #0a0a0a;
  --dark-card: #141414;
  --dark-border: #2a2a2a;
  --text-primary: #f5f5f5;
  --text-muted: #a0a0a0;
  --gold: #ffc107;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px var(--red-hot), 0 0 20px rgba(232,35,10,0.4); }
  50% { box-shadow: 0 0 20px var(--orange-blaze), 0 0 50px rgba(255,106,0,0.6); }
}

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

@keyframes neonFlicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.7; }
  97% { opacity: 1; }
  98% { opacity: 0.6; }
}

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

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.site-header {
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--red-hot);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--red-hot), var(--orange-blaze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonFlicker 5s infinite;
}

.nav-link {
  color: var(--text-primary);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--orange-blaze);
  background: rgba(255,106,0,0.1);
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--red-hot), var(--orange-blaze));
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  animation: pulseGlow 2.5s infinite;
  transition: transform 0.2s;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--orange-blaze);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid var(--orange-blaze);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover { background: var(--orange-blaze); color: #fff; }

.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  overflow: hidden;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title span {
  background: linear-gradient(135deg, var(--red-hot), var(--orange-blaze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marquee-wrapper { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.hero-section {
  min-height: 90vh;
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 100%);
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem 1rem; }

.bonus-badge {
  background: linear-gradient(135deg, rgba(232,35,10,0.2), rgba(255,106,0,0.2));
  border: 2px solid var(--orange-blaze);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: inline-block;
  margin: 1.5rem auto;
  animation: pulseGlow 2.5s infinite;
}

.bonus-amount {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  background: linear-gradient(135deg, var(--gold), var(--orange-blaze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.game-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  overflow: hidden;
  min-width: 180px;
  max-width: 200px;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover { transform: translateY(-4px); border-color: var(--orange-blaze); }
.game-card img { width: 100%; height: 130px; object-fit: cover; display: block; }

.step-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--red-hot), var(--orange-blaze));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  margin: 0 auto 1rem;
}

.payment-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.payment-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.payment-table th {
  background: linear-gradient(135deg, var(--red-hot), var(--orange-blaze));
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
}
.payment-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--dark-border);
  color: var(--text-primary);
}
.payment-table tr:hover td { background: rgba(255,106,0,0.05); }

.provider-cloud { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.provider-tag {
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.3);
  color: var(--orange-blaze);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Exo 2', sans-serif;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.25rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,106,0,0.05);
}

.faq-answer {
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--dark-border);
}

.promo-card {
  background: linear-gradient(145deg, var(--dark-card), rgba(232,35,10,0.08));
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.promo-card:hover { border-color: var(--orange-blaze); transform: translateY(-4px); }

.site-footer {
  background: #050505;
  border-top: 2px solid var(--red-hot);
  padding: 3rem 1rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.prose { color: var(--text-primary); max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--orange-blaze); margin: 2rem 0 0.75rem; }
.prose h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--text-primary); margin: 1.5rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; color: #d0d0d0; }
.prose a { color: var(--orange-blaze); text-decoration: underline; }
.prose ul, .prose ol { margin: 0.75rem 0 1rem 1.5rem; color: #d0d0d0; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote { border-left: 4px solid var(--orange-blaze); padding: 0.75rem 1rem; background: rgba(255,106,0,0.07); margin: 1rem 0; border-radius: 0 6px 6px 0; }
.prose img { max-width: 100%; height: auto; border-radius: 8px; 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;
  margin: 1.5rem 0;
}
.prose th { background: linear-gradient(135deg, var(--red-hot), var(--orange-blaze)); color: #fff; padding: 0.7rem 1rem; text-align: left; }
.prose td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--dark-border); color: #d0d0d0; }
.prose tr:hover td { background: rgba(255,106,0,0.05); }

.container { max-width: 1440px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.mobile-menu {
  display: none;
  background: #0d0d0d;
  border-top: 1px solid var(--dark-border);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 0.75rem 1rem; border-bottom: 1px solid var(--dark-border); }

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--red-hot);
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  font-family: 'Exo 2', sans-serif;
}

.review-block {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 1.75rem;
}

.section-pad { padding: 4rem 0; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; font-size: 0.95rem; }
