/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy: #0d1255;
  --navy-dark: #080d3a;
  --navy-mid: #141c6e;
  --gold: #ffc914;
  --gold-dark: #e6b400;
  --red: #e52728;
  --bg: #f4f5f9;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e2e4eb;
  --card-bg: #ffffff;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(13,18,85,.10);
  --shadow-hover: 0 6px 24px rgba(13,18,85,.18);
  --transition: .2s ease;
  --font: 'Roboto', Arial, sans-serif;
  --container: 1220px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(255,201,20,.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
}
.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 28px;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.utility-bar__logos {
  display: flex;
  align-items: center;
  gap: 14px;
}
.utility-bar__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.utility-bar__sep {
  width: 1px;
  height: 22px;
  background: var(--border);
}
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.utility-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--navy);
}
.utility-bar__phone svg { width: 15px; height: 15px; }
.utility-bar__account {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 13px;
}
.utility-bar__account:hover { color: var(--gold-dark); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(8,13,58,.4);
  transition: box-shadow var(--transition);
}
.site-header.sticky { box-shadow: 0 4px 24px rgba(8,13,58,.55); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.nav-link.active {
  color: var(--gold);
}
.header-cta {
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.2); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 8px 0 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: 12px 20px;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 15px;
}
.mobile-nav .nav-link:last-child { border-bottom: none; }
.mobile-nav .btn {
  margin: 12px 20px 0;
  justify-content: center;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a237e 100%);
  color: var(--white);
  padding: 48px 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,201,20,.15);
  border: 1px solid rgba(255,201,20,.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__age {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
}
.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.hero__img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ============================================================
   PROMO BAND
   ============================================================ */
.promo-band {
  background: var(--red);
  color: var(--white);
  padding: 18px 0;
}
.promo-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.promo-band__text {
  display: flex;
  align-items: center;
  gap: 14px;
}
.promo-band__icon {
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.promo-band__title {
  font-size: 18px;
  font-weight: 800;
}
.promo-band__sub {
  font-size: 13px;
  opacity: .85;
}

/* ============================================================
   LOTTERY GAME GRID
   ============================================================ */
.lottery-grid {
  background: var(--white);
  padding: 48px 0;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
}
.lottery-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.lottery-tile {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.lottery-tile:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.lottery-tile__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.lottery-tile__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.lottery-tile__jackpot-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lottery-tile__jackpot {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.lottery-tile__jackpot small {
  font-size: 13px;
  font-weight: 700;
}
.lottery-tile__sub {
  font-size: 11px;
  color: var(--text-muted);
}
.lottery-tile__btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  transition: background var(--transition);
}
.lottery-tile__btn:hover { background: var(--gold-dark); }

/* game logo text fallback */
.game-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold) 0%, #ff9800 100%);
  border-radius: 6px;
  padding: 0 10px;
  white-space: nowrap;
}

/* ============================================================
   FEATURE CARDS (3-col)
   ============================================================ */
.feature-cards {
  background: var(--bg);
  padding: 48px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.feature-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature-card__body {
  padding: 20px;
}
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card__text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.feature-card__link:hover { color: var(--gold-dark); }
.feature-card__link::after { content: '→'; }

/* ============================================================
   RESULTS BAND
   ============================================================ */
.results-band {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0;
}
.results-band__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-band__title {
  font-size: 22px;
  font-weight: 800;
}
.results-band__link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,201,20,.4);
}
.results-band__link:hover { border-color: var(--gold); }
.results-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.result-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.result-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.result-card__name {
  font-size: 15px;
  font-weight: 700;
}
.result-card__date {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.result-balls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ball {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.ball--orange { background: radial-gradient(circle at 35% 35%, #ff9f43, #e17a20); }
.ball--yellow { background: radial-gradient(circle at 35% 35%, #ffc914, #e6a500); color: var(--navy-dark); }
.ball--blue   { background: radial-gradient(circle at 35% 35%, #4dabf7, #1c7ed6); }
.ball--green  { background: radial-gradient(circle at 35% 35%, #69db7c, #2f9e44); }
.ball--red    { background: radial-gradient(circle at 35% 35%, #ff6b6b, #c92a2a); }
.ball--pb     { background: radial-gradient(circle at 35% 35%, #da77f2, #9c36b5); }
.ball--plus   {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.6);
  font-size: 11px;
}

/* ============================================================
   SLOT TILES
   ============================================================ */
.slots-section {
  background: var(--bg);
  padding: 48px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.slot-tile {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.slot-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.slot-tile__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.slot-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,13,58,.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-tile:hover .slot-tile__overlay { opacity: 1; }
.slot-tile__name {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.slot-tile__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 16px;
  align-self: flex-start;
}
.slot-tile__footer {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slot-tile__provider {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.slot-tile__rtp {
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  background: rgba(255,201,20,.15);
  padding: 2px 8px;
  border-radius: 10px;
}

/* ============================================================
   BONUS HIGHLIGHTS BAR
   ============================================================ */
.bonus-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 24px 0;
}
.bonus-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bonus-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.bonus-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bonus-bar__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,201,20,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.bonus-bar__val {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.bonus-bar__lbl {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   STEPS / HOW-TO
   ============================================================ */
.steps-section {
  background: var(--white);
  padding: 48px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step-counter;
}
.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  counter-increment: step-counter;
}
.step-card__num {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}
.step-card__num::before { content: counter(step-counter); }
.step-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   PAYMENT ICONS
   ============================================================ */
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ============================================================
   BONUS HERO SPECIAL
   ============================================================ */
.bonus-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a237e 50%, #0d47a1 100%);
  color: var(--white);
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}
.bonus-hero__amount {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-hero__sub {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 16px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 2px dashed rgba(255,201,20,.5);
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 24px;
}
.promo-code-box__label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.promo-code-box__code {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ============================================================
   SEO TEXT BLOCK
   ============================================================ */
.seo-block {
  background: var(--white);
  padding: 56px 0;
}
.seo-block__inner {
  max-width: 860px;
}
.seo-block h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.seo-block h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  line-height: 1.25;
}
.seo-block h3 {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--navy-mid);
  margin: 28px 0 10px;
}
.seo-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}
.seo-block p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.seo-block strong { color: var(--navy); }
.seo-block ul,
.seo-block ol {
  margin: 12px 0 20px 20px;
  list-style: disc;
  display: block;
}
.seo-block ol { list-style: decimal; }
.seo-block li {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 28px;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.seo-block table {
  min-width: 540px;
  border-radius: var(--radius);
  overflow: hidden;
}
.seo-block th {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}
.seo-block td {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.seo-block tr:last-child td { border-bottom: none; }
.seo-block tr:nth-child(even) td { background: var(--bg); }
.seo-block tr:hover td { background: rgba(255,201,20,.06); }
.seo-block .seo-cta {
  margin: 32px 0;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.seo-block .seo-cta__text {
  font-size: 18px;
  font-weight: 700;
}
.seo-block .seo-cta__sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-brand__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-brand__desc {
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}
.footer-partners {
  margin-top: 20px;
}
.footer-partners__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
}
.footer-partners__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer-partners__img {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .6;
  transition: opacity var(--transition);
}
.footer-partners__img:hover { opacity: 1; }
.footer-nav-group {}
.footer-nav-group__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-group a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-nav-group a:hover { color: var(--gold); }
.footer-apps {}
.footer-apps__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 10px;
  transition: background var(--transition);
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.app-badge:hover { background: rgba(255,255,255,.14); color: var(--white); }
.app-badge__icon { font-size: 20px; }
.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 20px 0;
  margin-top: 0;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom__copy {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-bottom__badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge-18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.6);
}
.badge-resp {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px;
  border-radius: 6px;
}
.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-disclaimer p {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 900px;
}

/* ============================================================
   CARDS SECTION (benefits grid)
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.benefit-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, #ff9800 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.benefit-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.benefit-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   BONUS TIER TABLE (visual)
   ============================================================ */
.tier-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0;
}
.tier-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  transition: border-color var(--transition);
}
.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255,201,20,.06) 0%, rgba(255,201,20,.02) 100%);
}
.tier-card__deposit {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
}
.tier-card__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tier-card__bonus {
  text-align: center;
}
.tier-card__bonus-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
}
.tier-card__total {
  text-align: right;
}
.tier-card__total-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.tier-card__spins {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 4px;
  display: inline-block;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  margin-top: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question__icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition);
  color: var(--text-muted);
}
.faq-question.open .faq-question__icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.faq-answer {
  display: none;
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-answer.open { display: block; }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (min-width: 600px) {
  .lottery-tiles { grid-template-columns: repeat(3, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__img-wrap img { height: 340px; }
  .tier-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .site-nav { display: flex; }
  .mobile-nav { display: none !important; }

  .hero__inner { grid-template-columns: 1fr 1fr; }
  .hero__img-wrap img { height: 380px; }

  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .results-list { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .lottery-tiles { grid-template-columns: repeat(4, 1fr); }
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  .utility-bar__right { display: none; }
}

@media (min-width: 1024px) {
  .hero { padding: 72px 0; }
  .slots-grid { grid-template-columns: repeat(6, 1fr); }
  .tier-cards { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .results-list { grid-template-columns: repeat(3, 1fr); }
  .hero__img-wrap img { height: 420px; }
}
