.hero-section {
  padding: 5rem 0 6rem !important;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 43, 214, 0.4), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 5%; left: 0;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(107, 47, 255, 0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 43, 214, 0.12);
  border: 1px solid rgba(255, 43, 214, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c3);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c3);
  box-shadow: 0 0 12px var(--c3);
  animation: pulse 1.5s ease-in-out infinite;
}

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

.hero-section h1 {
  margin-bottom: 1.5rem;
}

.hero-section h1 .accent {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  transition: all .3s;
}

.btn-ghost:hover {
  background: rgba(255, 43, 214, 0.1);
  border-color: var(--c3);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(22, 8, 46, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}

.countdown {
  display: flex;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  flex-wrap: wrap;
}

.countdown-item {
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.15), rgba(107, 47, 255, 0.15));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  text-align: center;
  min-width: 70px;
}

.countdown-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c5);
  line-height: 1;
}

.countdown-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.offer-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.12), rgba(107, 47, 255, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--rad);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.offer-card::before {
  content: 'EXCLUSIVE';
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  background: var(--c5);
  color: var(--c1);
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.offer-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.licensing {
  padding: 5rem 0 !important;
}

.licensing .container {
  max-width: 900px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-badge {
  padding: 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.trust-badge:hover {
  transform: translateY(-4px);
  border-color: var(--c3);
}

.trust-icon {
  width: 44px; height: 44px;
  margin: 0 auto 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.trust-badge-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.trust-badge-text {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.welcome-bonus {
  background: linear-gradient(180deg, transparent, rgba(255, 43, 214, 0.05), transparent);
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.games .info-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  margin-bottom: 1.2rem;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}

.games .info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s;
}

.games .info-card:hover {
  transform: translateY(-6px);
  border-color: var(--c3);
  box-shadow: 0 20px 50px rgba(255, 43, 214, 0.2);
}

.games .info-card:hover::before { transform: scaleY(1); }

.games .info-card h3 {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.providers dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.providers dl > div {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  transition: transform .3s, border-color .3s;
}

.providers dl > div:hover {
  transform: translateY(-4px);
  border-color: var(--c4);
}

.providers dt {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.providers dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.login-mobile .container > .row-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.banking {
  background: linear-gradient(180deg, transparent, rgba(107, 47, 255, 0.06), transparent);
}

.banking-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.banking-method {
  padding: 1.2rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .3s;
}

.banking-method:hover {
  border-color: var(--c3);
  background: rgba(255, 43, 214, 0.08);
  transform: translateY(-3px);
}

.banking-method .method-time {
  display: block;
  font-size: 0.75rem;
  color: var(--c3);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color .3s;
}

.accordion-item.active {
  border-color: var(--c3);
  box-shadow: 0 10px 30px rgba(255, 43, 214, 0.15);
}

.accordion-header {
  padding: 1.3rem 3.5rem 1.3rem 1.5rem;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-size: 1.05rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--fg);
  transition: color .3s;
}

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

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform .3s;
}

.accordion-item.active .accordion-header::after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-body {
  max-height: 400px;
  padding: 0 1.5rem 1.3rem;
}

.accordion-body p { margin: 0; }

@media (max-width: 991px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .login-mobile .container > .row-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .games-grid { grid-template-columns: 1fr; }
  .offer-amount { font-size: 2.3rem; }
}

@media (max-width: 600px) {
  main section { padding: 3rem 0; }
  .hero-section { padding: 3rem 0 4rem !important; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 1rem; }
  .stat-item { border-right: none; padding: 0.5rem; }
  .stat-value { font-size: 1.3rem; }
  .offer-card { padding: 1.5rem; }
  .offer-amount { font-size: 2rem; }
  .accordion-header { padding-right: 3rem; font-size: 0.98rem; }
}