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

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

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

.hero-section h1 {
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-section h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section > .container > p {
  font-size: 1.15rem;
  max-width: 780px;
  margin-bottom: 2rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.hero-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-bonus-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, rgba(124,77,255,0.2) 0%, rgba(0,229,255,0.15) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
}

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

.hero-bonus-label {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero-bonus-amount {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.hero-bonus-sub {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.hero-timer {
  display: flex;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.hero-timer-unit {
  text-align: center;
  background: rgba(10,14,39,0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  min-width: 65px;
}

.hero-timer-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}

.registration, .kyc, .license, .games, .payments, .bonuses, .mobile-app, .support, .faq {
  padding: 4rem 0;
  position: relative;
}

.registration h2, .kyc h2, .license h2, .games h2, .payments h2, .bonuses h2, .mobile-app h2, .support h2, .faq h2 {
  margin-bottom: 1.5rem;
}

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

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-box {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.highlight-box:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-deep);
}

.highlight-box:hover::before { transform: scaleX(1); }

.highlight-box h3 {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.highlight-box h3::before {
  content: '';
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--accent-glow);
}

.highlight-box ul {
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.highlight-box ul li { margin-bottom: 0.6rem; }

.info-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.info-card .content-image {
  margin: -1.5rem -1.5rem 1.5rem;
  border-radius: 20px 20px 0 0;
}

.info-card .content-image img {
  max-height: 200px;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 50px rgba(0,229,255,0.15);
}

.info-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.info-card p {
  color: var(--text-secondary);
  margin: 0;
}

.license {
  background: linear-gradient(135deg, rgba(124,77,255,0.08), rgba(0,229,255,0.05));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.license .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.license-content h2 { margin-bottom: 1.5rem; }

.license-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.license-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
}

.license-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  color: #0a0e27;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.license-badge-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.license-badge-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.bonus-cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  margin: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.bonus-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, var(--accent-glow), transparent 60%);
  opacity: 0.3;
}

.bonus-cta-banner > * { position: relative; z-index: 1; }

.bonus-cta-banner h3 {
  color: var(--text-primary);
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.bonus-cta-banner p {
  color: var(--text-secondary);
  margin: 0;
}

.accordion-item {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.accordion-item:hover {
  border-color: var(--border-bright);
}

.accordion-header {
  padding: 1.3rem 1.8rem;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s;
}

.accordion-header::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.accordion-item.active .accordion-header { color: var(--accent); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
}

.accordion-body p {
  padding: 0 1.8rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
}

.support .highlight-box {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(255,196,0,0.08), rgba(124,77,255,0.05));
  border-color: rgba(255,196,0,0.3);
}

.support .highlight-box p { margin: 0; }

.mobile-app .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .mobile-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .hero-section { padding: 3rem 0 2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
  .license .container { grid-template-columns: 1fr; gap: 2rem; }
  .bonus-cta-banner { padding: 1.8rem; }
  .registration, .kyc, .license, .games, .payments, .bonuses, .mobile-app, .support, .faq {
    padding: 3rem 0;
  }
  .hero-bonus-card { padding: 1.5rem; }
  .hero-timer-unit { min-width: 55px; padding: 0.6rem 0.8rem; }
  .hero-timer-num { font-size: 1.2rem; }
}