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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    #0d2b1e 0%,
    #1B4332 30%,
    #1a3a5c 65%,
    #0d2b1e 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,162,39,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,119,182,.15) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  animation: float linear infinite;
}

@keyframes float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  50%       { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.hero-btn { font-size: 1.05rem; padding: 16px 36px; }

.hero-btn-outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
  font-size: 1rem;
  padding: 14px 28px;
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

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

.stat-item { text-align: left; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  letter-spacing: .04em;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollHint 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── GAMES SECTION ───────────────────────────────────── */
.games-section {
  padding: 96px 0;
  background: var(--stone-50);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--green-800);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--stone-600);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.game-card-featured {
  min-height: 460px;
}

.game-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-card-bg { transform: scale(1.05); }

.game-bg-slots {
  background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 50%, #8B4513 100%);
}

.game-bg-blackjack {
  background: linear-gradient(160deg, #0a2a15 0%, #1a4d30 40%, #0d3d1a 100%);
}

.game-bg-roulette {
  background: linear-gradient(160deg, #0a1f3d 0%, #1a3a5c 50%, #0d2b4a 100%);
}

.game-card-inner {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 100%);
}

.game-badge {
  display: inline-block;
  background: rgba(201,162,39,.9);
  color: var(--stone-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}

.game-badge-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); }
.game-badge-blue { background: rgba(0,150,199,.9); color: var(--white); }

.game-icon-wrap {
  font-size: 3.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}

.game-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.game-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.game-tag {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .06em;
}

.game-players {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
}

.game-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--stone-900);
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  width: fit-content;
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover .game-cta {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(201,162,39,.5);
}

/* ─── HOW IT WORKS TEASER ─────────────────────────────── */
.how-teaser {
  padding: 96px 0;
  background: var(--cream);
}

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

.how-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-800);
  margin-bottom: 16px;
  line-height: 1.25;
}

.how-text p {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.7;
}

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

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-300);
  line-height: 1;
  min-width: 56px;
}

.how-step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 6px;
}

.how-step p {
  font-size: .88rem;
  color: var(--stone-600);
  line-height: 1.6;
}

/* ─── BENEFITS ────────────────────────────────────────── */
.benefits-section {
  padding: 96px 0;
  background: var(--white);
}

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

.benefit-card {
  padding: 32px 28px;
  background: var(--stone-50);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-800);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: .88rem;
  color: var(--stone-600);
  line-height: 1.65;
}

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials-section {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
}

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

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: .8;
  color: var(--gold-400);
  opacity: .6;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--stone-900);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: .88rem;
}

.testimonial-author span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ─── RESPONSIBLE BANNER ──────────────────────────────── */
.responsible-banner {
  padding: 48px 0;
  background: var(--stone-100);
}

.responsible-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.responsible-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 8px;
}

.responsible-text p {
  font-size: .88rem;
  color: var(--stone-600);
  line-height: 1.65;
  max-width: 700px;
}

.responsible-btn {
  color: var(--green-700);
  border-color: var(--green-600);
  white-space: nowrap;
  flex-shrink: 0;
}

.responsible-btn:hover {
  background: var(--green-700);
  color: var(--white);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .how-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 700px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}
