/* Casino page styles - focused, non-duplicative, leveraging base variables where possible */
:root {
  --hb-gold: #d4af37;
  --hb-black: #0a0a0a;
  --hb-red: #8b0000;
  --hb-amber: #b58944;
  --hb-white: #f7f5f2;
}

.section {
  padding: clamp(48px, 6vw, 96px) 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0))
              , radial-gradient(1200px 300px at 50% -50%, rgba(212,175,55,0.08), transparent);
}
.section--cta {
  background: linear-gradient(180deg, rgba(181,137,68,0.08), rgba(0,0,0,0));
  border-top: 1px solid rgba(212,175,55,0.18);
}
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.container.narrow {
  width: min(880px, 92%);
}

/* Hero */
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}
.hero__text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.lead { color: #ddd; max-width: 60ch; }
.hero__media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}
.split__media img { width: 100%; height: auto; border-radius: 12px; }
.split__content .check-list { margin-top: 12px; }

/* Cards and grids */
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.card h3 { color: var(--hb-gold); font-size: 1.15rem; margin-bottom: 6px; }

/* Testimonials */
.testimonials { display: grid; gap: 18px; }
.testimonial { background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.16); padding: 16px 18px; border-radius: 12px; }
.testimonial blockquote { margin: 0 0 8px 0; font-style: italic; }
.testimonial .author { color: #cfcfcf; font-size: 0.95rem; }

/* Booking form */
.booking-form { margin-top: 16px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.form-field { display: grid; gap: 6px; }
.form-field label { font-weight: 600; }
.form-field input, .form-field select {
  background: #0f0f0f;
  color: #fff;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  padding: 12px 14px;
}
.form-note { font-size: 0.9rem; opacity: 0.9; margin-top: 10px; }

/* Utilities */
.mt-24 { margin-top: 24px; }
.center { text-align: center; }
.section-header { margin-bottom: 12px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Buttons - rely on base classes, add subtle lux accent */
.btn-primary { background: linear-gradient(135deg, var(--hb-red), var(--hb-gold)); border: 0; color: #fff; }
.btn-secondary { background: linear-gradient(135deg, #222, #111); color: #fff!important; border: 1px solid rgba(212,175,55,0.4); }
.btn-outline { background: transparent; border: 1px solid rgba(212,175,55,0.4); color: var(--hb-gold); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .games__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
