:root {
  --bg: #eaf7e6;
  --bg-soft: #f6fff1;
  --green-950: #06180f;
  --green-900: #0b2418;
  --green-800: #103522;
  --green-700: #176239;
  --green-600: #1f8b48;
  --green-500: #32b95b;
  --green-400: #7ee091;
  --gold: #f2b636;
  --gold-strong: #ffcc47;
  --orange: #ff8a1f;
  --text: #112017;
  --muted: #58705f;
  --line: rgba(19, 87, 48, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(9, 47, 25, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(126, 224, 145, 0.5), transparent 38%),
    radial-gradient(circle at 90% 8%, rgba(242, 182, 54, 0.26), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, #f3ffed 34%, #e4f5dc 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 76, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 76, 39, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 72%);
  z-index: -1;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 255, 241, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.topline {
  background: var(--green-950);
  color: #c8f5d0;
  font-size: 13px;
}

.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topline span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 18px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--gold);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand img {
  width: 220px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #244131;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a,
.link-login {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after,
.link-login::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green-600);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.link-login:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;
  border: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn--small {
  padding: 12px 18px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-strong), #ffe47a);
  box-shadow: 0 10px 28px rgba(242, 182, 54, 0.28);
}

.btn--primary {
  padding: 15px 24px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-strong), #ffe47a 52%, #ff9f24);
  box-shadow: 0 16px 38px rgba(242, 182, 54, 0.34);
}

.btn--ghost {
  padding: 14px 22px;
  color: var(--green-900);
  border: 1px solid rgba(23, 98, 57, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.btn--ghost-light {
  padding: 14px 22px;
  color: #ecffee;
  border: 1px solid rgba(236, 255, 238, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn--secondary {
  padding: 14px 22px;
  color: #eaffee;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  box-shadow: 0 14px 34px rgba(23, 98, 57, 0.24);
}

.section-glow {
  position: relative;
  overflow: hidden;
}

.section-glow::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 185, 91, 0.26), transparent 66%);
  pointer-events: none;
}

.hero {
  padding: 52px 0 30px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.93fr);
  align-items: center;
  gap: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  color: var(--green-950);
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #254230;
  font-size: clamp(18px, 2vw, 22px);
}

.hero__lead strong { color: var(--green-800); }

.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__ticks span {
  padding: 9px 12px;
  border: 1px solid rgba(23, 98, 57, 0.16);
  border-radius: 999px;
  color: #21452e;
  background: rgba(255, 255, 255, 0.64);
  font-weight: 800;
  font-size: 14px;
}

.hero__media {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)),
    var(--green-950);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 2;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 484px;
  object-fit: cover;
  border-radius: 30px;
  filter: saturate(1.16) contrast(1.05);
}

.bonus-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 4;
  padding: 22px;
  border-radius: 28px;
  color: var(--white);
  background: rgba(6, 24, 15, 0.76);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
}

.bonus-card__tag {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 10px;
  color: var(--green-950);
  background: var(--gold-strong);
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bonus-card strong {
  display: block;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.bonus-card > span:not(.bonus-card__tag) {
  display: block;
  color: #d9ffe0;
  font-weight: 900;
  font-size: 22px;
}

.bonus-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-strong);
  font-weight: 950;
}

.quick-panel {
  padding: 26px 0 40px;
}

.quick-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-card {
  padding: 22px;
  min-height: 190px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23, 98, 57, 0.14);
  box-shadow: 0 18px 40px rgba(9, 47, 25, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 139, 72, 0.32);
  box-shadow: 0 24px 54px rgba(9, 47, 25, 0.14);
}

.quick-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding-inline: 10px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--green-950);
  background: linear-gradient(135deg, #c8ffd0, #ffde68);
  font-weight: 950;
  font-size: 13px;
}

.quick-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 19px;
  line-height: 1.12;
}

.quick-card span:last-child {
  display: block;
  color: var(--muted);
  font-weight: 650;
  font-size: 15px;
}

.section {
  padding: 74px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 30px;
}

.section-head--center {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.section h2,
.final-cta h2 {
  font-size: clamp(34px, 4.1vw, 56px);
}

.section-head p:not(.eyebrow),
.promo-section .section-head p,
.final-cta p,
.text-panel p,
.payments-section p,
.live-card--copy p,
.bonus-strip__copy p {
  color: #45614d;
  font-size: 18px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.game-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--green-950);
  box-shadow: 0 18px 46px rgba(6, 24, 15, 0.18);
  isolation: isolate;
}

.game-card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 526px;
}

.game-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.game-card:hover img { transform: scale(1.08); }

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 24, 15, 0.9) 100%);
  z-index: 1;
}

.game-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 18px;
  color: var(--white);
}

.game-card__body span {
  display: inline-flex;
  padding: 5px 8px;
  margin-bottom: 8px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.game-card__body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.game-card--large .game-card__body h3 {
  font-size: 36px;
}

.game-card__body p {
  margin: 12px 0 0;
  color: #d9ffe0;
  font-weight: 650;
}

.game-card__body a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-strong);
  font-weight: 950;
}

.bonus-strip {
  padding: 76px 0;
}

.bonus-strip__grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: 46px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 204, 71, 0.25), transparent 32%),
    linear-gradient(135deg, var(--green-950), #113d25 62%, #195c35);
  color: var(--white);
  box-shadow: 0 26px 90px rgba(6, 24, 15, 0.34);
  overflow: hidden;
}

.bonus-strip__media {
  display: grid;
  place-items: center;
}

.bonus-strip__media img {
  width: min(100%, 420px);
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.35));
}

.bonus-strip h2,
.live-card h2,
.final-cta h2,
.bonus-strip .eyebrow { color: var(--white); }

.bonus-strip__copy p { color: #d6f7dc; }

.bonus-strip__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.bonus-strip__numbers div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.bonus-strip__numbers strong {
  display: block;
  color: var(--gold-strong);
  font-size: 28px;
  line-height: 1;
}

.bonus-strip__numbers span {
  display: block;
  margin-top: 8px;
  color: #d8f9de;
  font-weight: 800;
  font-size: 13px;
}

.live-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 18px;
}

.live-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
  box-shadow: 0 22px 62px rgba(6, 24, 15, 0.22);
}

.live-card--image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.live-card--copy {
  padding: 46px;
  background:
    radial-gradient(circle at 95% 10%, rgba(50, 185, 91, 0.3), transparent 36%),
    linear-gradient(145deg, var(--green-950), #134128);
}

.live-card--copy p { color: #dbfae0; }

.live-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.live-list span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #effff0;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 850;
}

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

.promo-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(23, 98, 57, 0.14);
  box-shadow: 0 18px 46px rgba(9, 47, 25, 0.1);
}

.promo-card img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

.promo-card div { padding: 24px; }

.promo-card span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.promo-card h3 {
  margin: 8px 0;
  color: var(--green-950);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.promo-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-700);
  font-weight: 950;
}

.promo-card--dark {
  background: var(--green-950);
}

.promo-card--dark h3,
.promo-card--dark p { color: var(--white); }

.split-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
  align-items: stretch;
}

.text-panel,
.image-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(9, 47, 25, 0.1);
}

.text-panel {
  padding: 44px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(23, 98, 57, 0.14);
}

.text-panel .btn { margin-top: 16px; }

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

.step-card {
  padding: 28px;
  min-height: 240px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-950), #15472b);
  box-shadow: 0 18px 46px rgba(6, 24, 15, 0.16);
}

.step-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 16px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-weight: 950;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 0;
  color: #d9ffe0;
  font-weight: 650;
}

.payments-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23, 98, 57, 0.14);
}

.payment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.payment-list span {
  padding: 18px;
  border-radius: 18px;
  color: var(--green-950);
  background: linear-gradient(135deg, rgba(126, 224, 145, 0.36), rgba(255, 204, 71, 0.32));
  border: 1px solid rgba(23, 98, 57, 0.12);
  font-weight: 950;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23, 98, 57, 0.14);
  box-shadow: 0 12px 32px rgba(9, 47, 25, 0.07);
  overflow: hidden;
}

.faq-list summary {
  padding: 20px 24px;
  cursor: pointer;
  color: var(--green-950);
  font-weight: 950;
  font-size: 18px;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-weight: 650;
}

.final-cta {
  padding: 40px 0 76px;
}

.final-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 24, 15, 0.9), rgba(6, 24, 15, 0.62)),
    url('../img/hero-reels.jpg') center / cover;
  box-shadow: 0 26px 90px rgba(6, 24, 15, 0.34);
}

.final-cta p { color: #d9ffe0; max-width: 700px; }

.site-footer {
  padding: 52px 0 24px;
  color: #d9ffe0;
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 26px;
}

.footer-logo {
  width: 240px;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
}

.footer-grid p {
  max-width: 360px;
  color: #b9d8c0;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: #c9edcf;
  font-weight: 750;
}

.footer-grid a:hover { color: var(--gold-strong); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #9fc7a9;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .main-nav { display: none; }
  .hero__grid,
  .section-head--split,
  .bonus-strip__grid,
  .live-section__grid,
  .split-section__grid,
  .payments-section__grid {
    grid-template-columns: 1fr;
  }
  .quick-panel__grid,
  .promo-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .container { width: min(100% - 22px, var(--container)); }
  .topline__inner { justify-content: flex-start; gap: 8px 14px; padding: 8px 0; }
  .topline span:not(:last-child)::after { display: none; }
  .nav-wrap { min-height: 68px; gap: 12px; }
  .brand img { width: 164px; }
  .link-login { display: none; }
  .btn--small { padding: 10px 13px; font-size: 13px; }
  .hero { padding-top: 34px; }
  .hero__grid { gap: 24px; }
  .hero__media { min-height: 420px; padding: 12px; border-radius: 30px; }
  .hero__media::before { inset: 12px; border-radius: 22px; }
  .hero__image { min-height: 396px; border-radius: 22px; }
  .bonus-card { left: 24px; right: 24px; bottom: 24px; border-radius: 22px; }
  .quick-panel__grid,
  .promo-grid,
  .steps-grid,
  .footer-grid,
  .bonus-strip__numbers,
  .payment-list {
    grid-template-columns: 1fr;
  }
  .quick-card { min-height: auto; }
  .section { padding: 48px 0; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .game-card { min-height: 220px; border-radius: 18px; }
  .game-card--large { grid-column: 1 / -1; min-height: 420px; }
  .game-card__body { padding: 14px; }
  .game-card__body h3 { font-size: 18px; }
  .bonus-strip__grid,
  .live-card--copy,
  .text-panel,
  .payments-section__grid,
  .final-cta__box { padding: 26px; border-radius: 26px; }
  .final-cta__box { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .game-grid { grid-template-columns: 1fr; }
  .game-card--large { min-height: 380px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* Added commercial blocks: casino overview, app, payments table, security */
.casino-table-section {
  padding-top: 46px;
}

.casino-table__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.casino-table__copy {
  padding: 38px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 204, 71, 0.28), transparent 34%),
    linear-gradient(145deg, var(--green-950), #164d2e);
  box-shadow: 0 22px 62px rgba(6, 24, 15, 0.2);
}

.casino-table__copy h2 { color: var(--white); }

.casino-table__copy p:not(.eyebrow) {
  color: #d9ffe0;
  font-size: 18px;
}

.casino-table__copy .btn { margin-top: 14px; }

.casino-table-wrap,
.payment-table-wrap {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 98, 57, 0.14);
  box-shadow: 0 18px 48px rgba(9, 47, 25, 0.09);
}

.casino-table,
.payment-table {
  width: 100%;
  border-collapse: collapse;
}

.casino-table th,
.casino-table td,
.payment-table th,
.payment-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(23, 98, 57, 0.12);
}

.casino-table tr:last-child th,
.casino-table tr:last-child td,
.payment-table tbody tr:last-child td { border-bottom: 0; }

.casino-table th {
  width: 28%;
  color: var(--green-950);
  font-size: 15px;
  line-height: 1.15;
  background: rgba(126, 224, 145, 0.17);
}

.casino-table td,
.payment-table td {
  color: #45614d;
  font-weight: 650;
}

.casino-table td strong,
.payment-table td strong { color: var(--green-950); }

.app-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 30px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 204, 71, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(234,247,230,0.72));
  border: 1px solid rgba(23, 98, 57, 0.14);
  box-shadow: 0 20px 58px rgba(9, 47, 25, 0.1);
}

.app-copy p:not(.eyebrow) {
  color: #45614d;
  font-size: 18px;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.app-features span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 98, 57, 0.14);
  font-weight: 900;
}

.phone-mockup {
  max-width: 370px;
  margin-left: auto;
  padding: 18px;
  border: 10px solid var(--green-950);
  border-radius: 42px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6,24,15,0.2), rgba(6,24,15,0.95)),
    url('../img/hero-reels.jpg') center / cover;
  box-shadow: 0 28px 80px rgba(6, 24, 15, 0.32);
}

.phone-mockup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.phone-mockup__top span {
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
}

.phone-mockup__top strong { font-size: 18px; }

.phone-mockup__top em {
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.phone-mockup__bonus {
  padding: 18px;
  border-radius: 24px;
  background: rgba(6, 24, 15, 0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
}

.phone-mockup__bonus small {
  display: block;
  color: #b9f5c0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-mockup__bonus strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--gold-strong);
  font-size: 29px;
  line-height: 1;
}

.phone-mockup__bonus a {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-strong), #ffe47a);
  font-weight: 950;
}

.phone-mockup__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.phone-mockup__tabs span {
  padding: 9px 8px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255,255,255,0.12);
  font-weight: 900;
  font-size: 13px;
}

.phone-mockup__games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.phone-mockup__games div {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
}

.phone-mockup__games img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.phone-mockup__games strong {
  display: block;
  padding: 10px;
  font-size: 13px;
  line-height: 1.1;
}

.payments-shell {
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(126, 224, 145, 0.28), transparent 38%),
    rgba(255,255,255,0.72);
  border: 1px solid rgba(23, 98, 57, 0.14);
  box-shadow: 0 20px 58px rgba(9, 47, 25, 0.1);
}

.payments-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.payments-head p:not(.eyebrow) {
  color: #45614d;
  font-size: 18px;
}

.payment-table thead th {
  color: var(--green-950);
  background: linear-gradient(135deg, rgba(126, 224, 145, 0.35), rgba(255, 204, 71, 0.32));
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-table tbody tr:nth-child(even) td { background: rgba(126, 224, 145, 0.08); }

.payments-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.payments-notes div {
  padding: 18px;
  border-radius: 20px;
  color: var(--green-950);
  background: linear-gradient(135deg, rgba(126,224,145,0.3), rgba(255,204,71,0.2));
  border: 1px solid rgba(23, 98, 57, 0.12);
}

.payments-notes strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.payments-notes span {
  color: #45614d;
  font-weight: 650;
}

.security-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 204, 71, 0.24), transparent 34%),
    linear-gradient(145deg, var(--green-950), #103522 58%, #176239);
  box-shadow: 0 26px 90px rgba(6, 24, 15, 0.3);
}

.security-copy h2,
.security-copy .eyebrow { color: var(--white); }

.security-copy p:not(.eyebrow) {
  color: #d9ffe0;
  font-size: 18px;
}

.security-copy .btn { margin-top: 16px; }

.security-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.security-cards article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
}

.security-cards span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-strong);
  font-weight: 950;
}

.security-cards h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.security-cards p {
  margin: 0;
  color: #d9ffe0;
  font-weight: 650;
}

@media (max-width: 1060px) {
  .casino-table__grid,
  .app-section__grid,
  .payments-head,
  .security-section__grid {
    grid-template-columns: 1fr;
  }
  .phone-mockup {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .casino-table__copy,
  .app-section__grid,
  .payments-shell,
  .security-section__grid {
    padding: 26px;
    border-radius: 26px;
  }
  .casino-table-wrap,
  .payment-table-wrap {
    overflow-x: auto;
  }
  .casino-table,
  .payment-table {
    min-width: 650px;
  }
  .payments-notes,
  .security-cards {
    grid-template-columns: 1fr;
  }
  .phone-mockup {
    max-width: 100%;
    border-width: 7px;
    border-radius: 34px;
  }
}

/* v3 hardening: updated homepage blocks */
.casino-table-section,
.app-section,
.payments-section,
.security-section {
  position: relative;
  z-index: 1;
}

.casino-table-wrap table,
.payment-table-wrap table {
  table-layout: auto;
}

.casino-table-wrap,
.payment-table-wrap {
  width: 100%;
}

.phone-mockup__games img,
.game-card img,
.promo-card img,
.image-panel img,
.live-card--image img,
.hero__image {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .casino-table-wrap,
  .payment-table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .casino-table th,
  .casino-table td,
  .payment-table th,
  .payment-table td {
    padding: 14px 16px;
  }

  .payments-head p:not(.eyebrow),
  .app-copy p:not(.eyebrow),
  .security-copy p:not(.eyebrow),
  .casino-table__copy p:not(.eyebrow) {
    font-size: 16px;
  }
}

/* v6: reusable inner-page layouts */
.page-hero {
  padding: 52px 0 34px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 38px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  color: var(--green-950);
}

.page-hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #254230;
  font-size: clamp(18px, 1.9vw, 22px);
}

.slot-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.slot-category-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 98, 57, 0.14);
  box-shadow: 0 18px 46px rgba(9, 47, 25, 0.08);
}

.slot-category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 30px;
  padding-inline: 12px;
  border-radius: 16px;
  color: var(--green-950);
  background: linear-gradient(135deg, #c8ffd0, var(--gold-strong));
  font-weight: 950;
}

.slot-category-card h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.slot-category-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 1060px) {
  .page-hero__grid,
  .slot-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-hero { padding-top: 34px; }
  .page-hero__grid { gap: 24px; }
  .slot-category-card { min-height: auto; padding: 24px; border-radius: 22px; }
}

/* v8 image/layout repair for bonus, slot, casino-live and giochi pages */
.page-hero__grid > [class$="-hero-card"] {
  min-width: 0;
}

.bonus-hero-card,
.slot-hero-card,
.live-hero-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 204, 71, 0.28), transparent 34%),
    linear-gradient(145deg, var(--green-950), #164d2e 58%, #23653b);
  border: 1px solid rgba(23, 98, 57, 0.18);
  box-shadow: 0 28px 90px rgba(6, 24, 15, 0.28);
}

.bonus-hero-card::after,
.slot-hero-card::after,
.live-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 24, 15, 0.04), rgba(6, 24, 15, 0.84)),
    radial-gradient(circle at 78% 16%, rgba(255, 204, 71, 0.18), transparent 28%);
}

.bonus-hero-card > img,
.slot-hero-card__bg,
.live-hero-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.bonus-hero-card > img {
  width: 86%;
  height: 86%;
  left: 7%;
  top: 5%;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(0,0,0,0.36));
  opacity: 0.96;
}

.slot-hero-card__games {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(3, 82px);
  gap: 10px;
}

.slot-hero-card__games img {
  width: 82px;
  height: 108px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.42);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}

.bonus-hero-card__panel,
.slot-hero-card__panel,
.live-hero-card__panel {
  position: absolute;
  z-index: 3;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 24px;
  border-radius: 26px;
  color: var(--white);
  background: rgba(6, 24, 15, 0.78);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 22px 60px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
}

.bonus-hero-card__panel span,
.slot-hero-card__panel span,
.live-hero-card__panel span,
.live-hero-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bonus-hero-card__panel strong,
.slot-hero-card__panel strong,
.live-hero-card__panel strong {
  display: block;
  max-width: 520px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.bonus-hero-card__panel em,
.slot-hero-card__panel em,
.live-hero-card__panel em {
  display: block;
  margin-top: 8px;
  color: #d9ffe0;
  font-style: normal;
  font-size: 18px;
  font-weight: 850;
}

.bonus-hero-card__panel a,
.slot-hero-card__panel a,
.live-hero-card__panel a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-strong);
  font-weight: 950;
}

.live-hero-card__badge {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  margin: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.bonus-play-section {
  position: relative;
}

.bonus-play__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 204, 71, 0.26), transparent 36%),
    linear-gradient(135deg, var(--green-950), #134128 62%, #1d6338);
  box-shadow: 0 26px 82px rgba(6, 24, 15, 0.26);
  overflow: hidden;
}

.bonus-play__media {
  display: grid;
  place-items: center;
  min-height: 280px;
}

.bonus-play__media img {
  width: min(100%, 430px);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 54px rgba(0,0,0,0.35));
}

.bonus-play__copy h2,
.bonus-play__copy .eyebrow { color: var(--white); }

.bonus-play__copy p:not(.eyebrow) {
  color: #d9ffe0;
  font-size: 18px;
}

.bonus-use-list,
.slot-badge-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 28px;
}

.bonus-use-list div,
.slot-badge-row span {
  padding: 16px;
  border-radius: 18px;
  color: #eaffee;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
}

.bonus-use-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-strong);
  font-size: 16px;
}

.bonus-use-list span {
  display: block;
  color: #d9ffe0;
  font-weight: 650;
  font-size: 14px;
}

.slot-badge-row span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  font-weight: 900;
  text-align: center;
}

.game-grid--compact {
  grid-template-columns: repeat(5, 1fr);
}

.game-grid--compact .game-card {
  min-height: 232px;
}

.live-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.live-game-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  background: var(--green-950);
  box-shadow: 0 18px 46px rgba(6, 24, 15, 0.18);
  isolation: isolate;
}

.live-game-card--big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 616px;
}

.live-game-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.live-game-card:hover img { transform: scale(1.08); }

.live-game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 18%, rgba(6, 24, 15, 0.92) 100%);
}

.live-game-card > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 18px;
}

.live-game-card span {
  display: inline-flex;
  padding: 5px 8px;
  margin-bottom: 8px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-game-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.live-game-card--big h3 { font-size: 38px; }

.live-game-card p {
  margin: 10px 0 0;
  color: #d9ffe0;
  font-weight: 650;
}

.live-game-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-strong);
  font-weight: 950;
}

@media (max-width: 1060px) {
  .bonus-hero-card,
  .slot-hero-card,
  .live-hero-card {
    min-height: 480px;
  }

  .bonus-play__grid,
  .bonus-use-list,
  .slot-badge-row,
  .live-game-grid,
  .game-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-play__grid {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .live-game-card--big {
    grid-column: span 2;
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .bonus-hero-card,
  .slot-hero-card,
  .live-hero-card {
    min-height: 430px;
    border-radius: 28px;
  }

  .bonus-hero-card__panel,
  .slot-hero-card__panel,
  .live-hero-card__panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  .slot-hero-card__games {
    top: 16px;
    right: 16px;
    grid-template-columns: repeat(3, 62px);
    gap: 8px;
  }

  .slot-hero-card__games img {
    width: 62px;
    height: 82px;
    border-radius: 12px;
  }

  .live-hero-card__badge {
    top: 16px;
    left: 16px;
  }

  .bonus-play__grid,
  .bonus-use-list,
  .slot-badge-row,
  .live-game-grid,
  .game-grid--compact {
    grid-template-columns: 1fr;
  }

  .bonus-play__grid {
    padding: 24px;
    border-radius: 26px;
  }

  .bonus-play__media {
    min-height: 220px;
  }

  .live-game-card,
  .game-grid--compact .game-card {
    min-height: 250px;
  }

  .live-game-card--big {
    grid-column: auto;
    min-height: 380px;
  }
}
