/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background: var(--primary);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: 0;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-card);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-section h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #b0d8ff 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px;
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  min-width: 120px;
}

.hero-stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  max-width: fit-content;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
}

/* Bonus highlight in hero */
.hero-bonus-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(0,229,255,0.12) 0%, rgba(0,102,255,0.08) 100%);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  margin-top: 8px;
}

.hero-bonus-icon {
  font-size: 28px;
}

.hero-bonus-text strong {
  display: block;
  font-size: 18px;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
}

.hero-bonus-text span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Licence */
.licence-info { padding: 70px 0; }

/* Registration */
.registration { padding: 70px 0; }

/* Providers */
.providers { padding: 70px 0; }

/* Game library */
.game-library { padding: 70px 0; }

.game-library dl.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 24px 28px;
}

.game-library dl.feature-list dt {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
  margin-top: 14px;
}

.game-library dl.feature-list dd {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
  margin-top: 14px;
  border-left: none;
  padding-left: 0;
  color: var(--text-secondary);
}

/* Bonuses */
.bonuses { padding: 70px 0; }

/* Payments */
.payments { padding: 70px 0; }

.table-wrapper {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 24px 0;
}

/* Mobile */
.mobile-access { padding: 70px 0; }

/* Withdrawals */
.withdrawals { padding: 70px 0; }

/* FAQ */
.faq { padding: 70px 0; }

.accordion { }

.accordion-item {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover { border-color: rgba(0, 229, 255, 0.3); }

.accordion-header { margin: 0; }

.accordion-header button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}

.accordion-header button:hover { color: var(--accent); }

.accordion-header button::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-card);
  border-radius: 6px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
  transition: var(--transition);
}

.accordion-header button[aria-expanded="true"]::after {
  content: '−';
  background: rgba(0, 229, 255, 0.18);
  border-color: var(--accent);
}

.accordion-body {
  display: none;
  padding: 0 24px 20px;
}

.accordion-body.is-open { display: block; }

.accordion-body p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 0;
}

/* Responsive page */
@media (max-width: 767px) {
  section { padding: 50px 0; }

  .hero-section { padding: 60px 0 50px; }

  .hero-stats { gap: 12px; }

  .hero-stat { min-width: 100px; padding: 12px 16px; }

  .hero-stat-value { font-size: 22px; }

  .hero-cta-group { flex-direction: column; }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { width: 100%; justify-content: center; }

  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }

  .hero-trust-divider { display: none; }

  .hero-bonus-card { flex-direction: column; text-align: center; }

  .cards-grid-3 { grid-template-columns: 1fr 1fr; }

  .game-library dl.feature-list { grid-template-columns: 1fr; }

  .comparison-table th,
  .comparison-table td { padding: 12px 14px; font-size: 14px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero-section { padding: 100px 0 90px; }
  .hero-stats { gap: 24px; }
  .cards-grid-3 { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1440px) {
  .container { max-width: 1280px; }
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fade-up 0.5s ease both; }
.hero-section h1 { animation: fade-up 0.6s 0.1s ease both; }
.hero-subtitle { animation: fade-up 0.6s 0.2s ease both; }
.hero-stats { animation: fade-up 0.6s 0.3s ease both; }
.hero-cta-group { animation: fade-up 0.6s 0.4s ease both; }
.hero-trust { animation: fade-up 0.6s 0.5s ease both; }