/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  bottom: -50px;
  right: -100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,41,59,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,41,59,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-cta { font-size: 18px; padding: 16px 32px; }
.btn-arrow { transition: transform var(--transition); display: inline-block; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.stat-value {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-cards-float {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.float-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow);
  animation: floatCard 3s ease-in-out infinite;
}

.float-card.fc-2 { animation-delay: 0.5s; color: var(--color-gold); }
.float-card.fc-3 { animation-delay: 1s; color: var(--color-secondary); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--border-light);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(249,115,22,0.12);
}

.game-featured {
  border-color: rgba(249,115,22,0.4);
  background: linear-gradient(180deg, rgba(249,115,22,0.04) 0%, var(--bg-card) 100%);
}

.game-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.game-card-bg {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.gc-slots {
  background: linear-gradient(135deg, #1a0f00 0%, #2d1a00 50%, #3d2200 100%);
}

.gc-slots::after {
  content: '&#127920; &#127920; &#127920;';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  opacity: 0.15;
  letter-spacing: 8px;
}

.gc-blackjack {
  background: linear-gradient(135deg, #001a0f 0%, #002d1a 50%, #003d22 100%);
}

.gc-roulette {
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0f2d 50%, #221040 100%);
}

.game-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.15) 0%, transparent 70%);
}

.gc-blackjack::before {
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.15) 0%, transparent 70%);
}

.gc-roulette::before {
  background: radial-gradient(ellipse at center, rgba(56,189,248,0.15) 0%, transparent 70%);
}

.game-bg-symbol {
  position: absolute;
  font-size: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.game-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.game-icon { font-size: 28px; }

.game-genre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.game-title { font-size: 24px; margin-bottom: 12px; }

.game-desc { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 20px; flex: 1; }

.game-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.game-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-play-btn { width: 100%; justify-content: center; }

/* HOW IT WORKS TEASER */
.how-teaser {
  background: linear-gradient(180deg, transparent, rgba(14,19,32,0.8), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.how-steps { display: flex; flex-direction: column; gap: 8px; }

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.how-step:hover { background: var(--bg-card); }

.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.6;
  line-height: 1;
  min-width: 48px;
}

.how-step h4 { font-size: 18px; margin-bottom: 6px; }
.how-step p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.benefit-card h3 { font-size: 20px; margin-bottom: 12px; }
.benefit-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.75; }

/* CTA SECTION */
.cta-section { padding: 80px 0; }

.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(245,158,11,0.05) 100%);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.cta-box p { color: var(--text-secondary); font-size: 17px; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.cta-btn { font-size: 18px; padding: 18px 36px; }
.cta-note { margin-top: 20px; font-size: 12px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .game-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .hero-cards-float { display: none; }
}

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .games-grid { grid-template-columns: 1fr; }
  .game-card:last-child { max-width: 100%; grid-column: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-box { padding: 40px 24px; }
}
