/* ============================================================
   ANDAR BAHAR LIVE — styles.css
   Color palette: Warm green + golden yellow + cream/white
   Fonts: Sora (headings), Mukta (body — Indian-friendly)
   ============================================================ */

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --green-dark:   #1a4d2e;
  --green-mid:    #2d7a4f;
  --green-light:  #3fa66b;
  --green-pale:   #e8f5ee;
  --gold:         #f5a623;
  --gold-light:   #ffd166;
  --gold-dark:    #c47d0e;
  --cream:        #fdf9f0;
  --white:        #ffffff;
  --red-accent:   #e84444;
  --text-dark:    #1a1f1a;
  --text-mid:     #3d4a3e;
  --text-muted:   #6b7a6c;
  --border:       #d4e8da;
  --shadow-sm:    0 2px 8px rgba(26,77,46,0.08);
  --shadow-md:    0 6px 24px rgba(26,77,46,0.12);
  --shadow-lg:    0 16px 48px rgba(26,77,46,0.16);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   0.22s ease;
  --max-width:    1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Mukta', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  color: var(--green-dark);
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { margin-bottom: 0.9rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
a  { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white);
  border-color: var(--green-mid);
  box-shadow: 0 4px 14px rgba(45,122,79,0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45,122,79,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn--outline:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
.btn--lg  { padding: 13px 30px; font-size: 1.05rem; }
.btn--xl  { padding: 16px 40px; font-size: 1.15rem; }
.btn--sm  { padding: 7px 16px; font-size: 0.85rem; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon { font-size: 1.5rem; }
.logo__accent { color: var(--gold-dark); }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav__link:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, #2a5e3f 50%, #1a4d2e 100%);
  padding: 70px 0 60px;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,166,35,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,209,102,0.06) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 31px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.5);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero__title {
  color: var(--white);
  margin-bottom: 18px;
}
.hero__title .accent { color: var(--gold-light); }
.hero__desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__btns .btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.hero__btns .btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.5);
}
.hero__btns .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero__btns .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__stat {
  text-align: center;
}
.hero__stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(245,166,35,0.4);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.06);
  width: 100%;
  max-width: 360px;
}
.hero__img { width: 100%; height: auto; object-fit: cover; }
.hero__img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,77,46,0.55);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity var(--transition);
  line-height: 1.4;
}
.hero__img-wrap:hover .hero__img-label { opacity: 1; }
.hero__card {
  position: absolute;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 8px;
  border: 2px solid;
}
.hero__card--andar {
  bottom: 20px;
  left: -10px;
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-light);
  transform: rotate(-4deg);
  box-shadow: var(--shadow-sm);
}
.hero__card--bahar {
  top: 20px;
  right: -10px;
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold-dark);
  transform: rotate(4deg);
  box-shadow: var(--shadow-sm);
}

/* ---- TOC BAR ---- */
.toc-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.toc-bar__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-mid);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 0;
  cursor: pointer;
  width: 100%;
  transition: color var(--transition);
}
.toc-bar__toggle:hover { color: var(--green-mid); }
.toc-bar__toggle svg { transition: transform var(--transition); margin-left: auto; }
.toc-bar__toggle--open svg { transform: rotate(180deg); }
.toc-bar__list {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 12px;
}
.toc-bar__list--open { display: flex; }
.toc-bar__list a {
  font-size: 0.83rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 20px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.toc-bar__list a:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

/* ---- SECTIONS ---- */
.section { padding: 64px 0; }
.section--alt { background: var(--white); }
.section__title {
  text-align: center;
  margin-bottom: 12px;
}
.section__desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

/* ---- CASINO LIST ---- */
.casino-list { display: flex; flex-direction: column; gap: 22px; }

.casino-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 170px 140px;
  gap: 16px;
  align-items: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.casino-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.casino-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf4, #fff);
  box-shadow: 0 4px 20px rgba(245,166,35,0.15);
}
.casino-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(245,166,35,0.4);
}
.casino-card__badge--blue  { background: linear-gradient(135deg, #4a90d9, #2c6fad); color: #fff; }
.casino-card__badge--green { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); color: #fff; }
.casino-card__badge--yellow { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-dark); }

.casino-card__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  padding-right: 20px;
}

.casino-card__logo {
  width: 200px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.casino-card__logo-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,77,46,0.7);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--transition);
  line-height: 1.4;
  pointer-events: none;
}
.casino-card:hover .casino-card__logo-label { opacity: 1; }

.casino-card__info { flex: 1; }
.casino-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green-dark);
}
.casino-card__desc {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.5;
}
.casino-card__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 6px;
}

.casino-card__name {
  margin-bottom: 0;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 4px 10px;
  border: 1px dashed rgba(26, 77, 46, 0.35);
  background: #f7fbf8;
  border-radius: 10px;
  line-height: 1;
}

.promo-chip__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.promo-chip__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.promo-chip__code {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
}

.promo-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.promo-chip__btn:hover .promo-chip__icon {
  background: var(--green-pale);
  border-color: var(--green-light);
  transform: translateY(-1px);
}

.promo-chip.is-copied {
  border-color: rgba(63, 166, 107, 0.55);
  background: #edf9f1;
}

.promo-chip.is-copied .promo-chip__code {
  color: var(--green-mid);
}

@media (max-width: 640px) {
  .casino-card__title-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
.casino-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.casino-card__features span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--border);
}

.casino-card__bonus-block {
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  min-width: 150px;
}
.casino-card__bonus-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.casino-card__bonus-amount {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.casino-card__bonus-amount span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.casino-card__bonus-value {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}

.casino-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}
.casino-card__actions .btn--primary {
  padding: 14px 24px;
  font-size: 1.05rem;
  width: 100%;
  justify-content: center;
}
.casino-card__rating {
  text-align: center;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: -1px;
}
.casino-card__rating span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- CRITERIA ---- */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.criteria-card {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
  grid-column: span 2;
}
.criteria-card:nth-child(4) { grid-column: 2 / span 2; }
.criteria-card:nth-child(5) { grid-column: 4 / span 2; }
.criteria-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.criteria-card__icon { font-size: 2rem; margin-bottom: 12px; }
.criteria-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.criteria-card p { font-size: 0.9rem; margin: 0; color: var(--text-muted); }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-mid), var(--green-pale));
}
.step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(45,122,79,0.3);
  position: relative;
  z-index: 1;
}
.step__content { padding-top: 8px; }
.step__content h3 { margin-bottom: 6px; }
.step__content p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.steps--compact .step { padding-bottom: 16px; gap: 14px; }
.steps--compact .step__num { width: 34px; height: 34px; font-size: 0.9rem; }
.steps--compact .step__content { padding-top: 6px; }
.steps--compact .step__content p { font-size: 0.88rem; color: var(--text-mid); }
.steps--compact .step:not(:last-child)::before { left: 16px; top: 38px; }
.step--sm { padding-bottom: 14px; }

/* ---- REVIEW CARDS ---- */
.review-list { display: flex; flex-direction: column; gap: 28px; }
.review-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--green-mid); }
.review-card__header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
}
.review-card__logo-wrap {
  position: relative;
  flex-shrink: 0;
}
.review-card__logo {
  width: 200px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  padding: 0;
}
.review-card__logo-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,77,46,0.7);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.review-card__logo-wrap:hover .review-card__logo-label { opacity: 1; }
.review-card__heading { display: flex; flex-direction: column; gap: 8px; }
.review-card__heading h3 { margin: 0; font-size: 1.4rem; }
.review-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.9rem;
}
.review-table th,
.review-table td {
  padding: 9px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.review-table th {
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
}
.review-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.review-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.review-table tr:nth-child(even) td { background: var(--green-pale); }
.review-table tr:hover td { background: #d4ead9; }
.review-table td:first-child { font-weight: 600; color: var(--green-dark); }

/* ---- APP SECTIONS ---- */
.app-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}
.app-section--reverse { direction: rtl; }
.app-section--reverse > * { direction: ltr; }
.app-section__visual {
  position: relative;
  text-align: center;
}
.app-section__img {
  border-radius: var(--radius-lg);
  border: 3px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  object-fit: cover;
}
.app-section__img--no-frame {
  border: none;
  box-shadow: none;
  background: transparent;
}
.app-section__img-label {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}
.app-section__content h2 { margin-bottom: 14px; }
.app-section__platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.android-badge { background: #e8f5e8; color: #2e7d32; border: 1px solid #a5d6a7; }
.ios-badge     { background: #f0f0f5; color: #3a3a6e; border: 1px solid #b0b0d0; }
.app-section__content .steps { margin: 20px 0; }
.app-section__content .btn { margin-top: 10px; }

/* ---- GAME INFO ---- */
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: all var(--transition);
}
.game-info-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-sm);
}
.game-info-card h3 { margin-bottom: 16px; font-size: 1.1rem; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li { font-size: 0.92rem; color: var(--text-mid); padding-left: 0; }
.feature-list li::before { content: none; }

/* Payout table */
.payout-table {
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.payout-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.payout-row:last-child { border-bottom: none; }
.payout-row--header {
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
}
.payout-row:nth-child(even):not(.payout-row--header) { background: var(--green-pale); }
.payout-green  { color: var(--green-mid); font-weight: 700; }
.payout-yellow { color: var(--gold-dark); font-weight: 700; }
.payout-note { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ---- DEMO BLOCK ---- */
.demo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
}
.demo-block__content h2 { color: var(--white); margin-bottom: 14px; }
.demo-block__content p { color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.demo-block__content .btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.demo-block__visual { text-align: center; }
.demo-block__img {
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,0.2);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.demo-block__img-label {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ---- GAMES GRID ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.game-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.game-card__img-wrap {
  position: relative;
  background: var(--green-pale);
  height: 200px;
  overflow: hidden;
}
.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card__img-label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(26,77,46,0.7);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}
.game-card__body { padding: 20px; }
.game-card__provider {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 6px;
}
.game-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.game-card__body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.game-card__body .btn {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ---- STRATEGIES ---- */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.strategy-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  transition: all var(--transition);
}
.strategy-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.strategy-card__num {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(45,122,79,0.1);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 20px;
}
.strategy-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.strategy-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.strategy-disclaimer {
  background: #fff8e8;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ---- LEGAL BLOCK ---- */
.legal-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}
.legal-block__icon { font-size: 3rem; flex-shrink: 0; margin-top: 4px; }
.legal-block__content h2 { margin-bottom: 14px; }

/* ---- RESPONSIBLE GAMBLING ---- */
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.responsible-tip {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
}
.responsible-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--green-mid); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--green-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background var(--transition);
}
.faq-item summary:hover { background: var(--green-pale); }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green-mid);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin: 0;
  padding-top: 14px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), #2a5e3f);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 28px; }
.cta-banner .btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(245,166,35,0.5);
  font-size: 1.1rem;
  padding: 15px 36px;
}

/* ---- FOOTER ---- */
.footer { background: var(--green-dark); padding: 50px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .logo { margin-bottom: 14px; }
.footer__brand .logo__text { color: var(--white); }
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links h4 { color: var(--gold-light); margin-bottom: 6px; font-size: 0.9rem; letter-spacing: 0.05em; }
.footer__links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__compliance h4 { color: var(--gold-light); margin-bottom: 12px; font-size: 0.9rem; letter-spacing: 0.05em; }
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.footer__badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
}
.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}
.footer__bottom {
  background: rgba(0,0,0,0.2);
  padding: 14px 0;
  text-align: center;
}
.footer__bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .casino-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "logo info"
      "bonus actions";
    gap: 0 16px;
    align-items: center;
  }
  .casino-card__logo-wrap {
    grid-area: logo;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding-right: 16px;
    padding-bottom: 0;
    height: 100%;
  }
  .casino-card__info {
    grid-area: info;
    align-self: center;
  }
  .casino-card__bonus-block {
    grid-area: bonus;
    align-self: center;
    justify-self: center;
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
  .casino-card__actions {
    grid-area: actions;
    flex-direction: row;
    justify-content: flex-start;
    align-self: center;
    margin-top: 12px;
  }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-card { grid-column: span 1; }
  .criteria-card:nth-child(4) { grid-column: span 1; }
  .criteria-card:nth-child(5) { grid-column: span 1; }
  .game-info-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__compliance { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 12px 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav--open { display: flex; }
  .nav__link { padding: 10px 14px; }
  .burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; gap: 20px; }
  .hero__card--andar,
  .hero__card--bahar { display: none; }
  .casino-card {
    grid-template-columns: 1fr;
  }
  .casino-card__logo-wrap { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 16px; justify-content: flex-start; }
  .casino-card__bonus-block { min-width: auto; text-align: left; width: 100%; }
  .casino-card__actions { flex-direction: row; justify-content: space-between; width: 100%; }
  .casino-card__actions .btn--primary { flex: 1; }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-card, .criteria-card:nth-child(4), .criteria-card:nth-child(5) { grid-column: span 1; }
  .strategy-grid { grid-template-columns: 1fr; }
  .responsible-grid { grid-template-columns: 1fr; }
  .app-section { grid-template-columns: 1fr; }
  .app-section--reverse { direction: ltr; }
  .app-section__visual { display: none; }
  .demo-block { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .demo-block__visual { display: none; }
  .games-grid { grid-template-columns: 1fr; }
  .review-card__header { flex-direction: column; align-items: flex-start; }
  .legal-block { flex-direction: column; gap: 16px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__compliance { grid-column: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  .section { padding: 40px 0; }
  .hero { padding: 44px 0 36px; }
  .hero__stats { gap: 14px; }
  .hero__stat strong { font-size: 1.35rem; }
  .casino-card { padding: 18px 16px; }
  .casino-card__actions { flex-direction: column; }
}
/* ---- REVIEW CARD: Play Now button full-width & larger ---- */
.review-card__heading .btn {
  padding: 14px 24px;
  font-size: 1.05rem;
  width: 100%;
  justify-content: center;
}
