:root {
  --ink: #17201f;
  --muted: #68736f;
  --paper: #fffaf0;
  --panel: #ffffff;
  --night: #07100e;
  --night-soft: #101c19;
  --line: #e3ded2;
  --green: #00b67a;
  --green-dark: #007d58;
  --cta-green: #00865f;
  --cta-green-hover: #009d70;
  --cta-green-deep: #005f46;
  --gold: #f1bd45;
  --gold-soft: #fff3d0;
  --red: #c7363f;
  --shadow: 0 22px 52px rgba(10, 14, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #0b1110;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
}

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

picture {
  display: block;
}

a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #005f45;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(241, 189, 69, 0.76);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(36px, 4.1vw, 58px);
  font-weight: 950;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 900;
}

p {
  margin-bottom: 20px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(7, 16, 14, 0.72);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(14px);
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #fffaf0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions a {
  color: #fffaf0;
  font-size: 14px;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 11px;
  color: #241705;
  background: var(--gold);
  border: 1px solid rgba(36, 23, 5, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  display: block;
  width: 100%;
  min-height: 720px;
  margin: 0 0 34px;
  overflow: hidden;
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.99) 0%, rgba(7, 16, 14, 0.94) 44%, rgba(7, 16, 14, 0.62) 61%, rgba(7, 16, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 16, 14, 0.98) 0%, rgba(7, 16, 14, 0.18) 45%),
    url("../images/hero-modern-casino.webp");
  background-position: center right;
  background-size: cover;
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  padding: 54px 0;
  background: transparent;
}

.hero-copy > * {
  max-width: 780px;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1,
.hero-copy .lede {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.72);
}

.lede {
  max-width: 690px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
}

.hero-offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 520px);
  margin: 10px 0 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.hero-offer div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-offer span,
.hero-offer strong {
  display: block;
}

.hero-offer span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer strong {
  color: var(--gold);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 950;
}

.action-row,
.cta-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  color: #fffaf0;
  background: linear-gradient(180deg, var(--cta-green-hover) 0%, var(--cta-green) 52%, var(--cta-green-deep) 100%);
  border-color: rgba(255, 250, 240, 0.1);
  box-shadow: 0 18px 34px rgba(0, 134, 95, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
}

.button-primary:hover,
.button-primary:focus {
  color: #ffffff;
  background: linear-gradient(180deg, #12ad7c 0%, #008f66 52%, #00654a 100%);
  border-color: rgba(255, 250, 240, 0.22);
  box-shadow: 0 22px 42px rgba(0, 134, 95, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-secondary {
  width: 100%;
  color: #fffaf0;
  background: linear-gradient(180deg, var(--cta-green-hover) 0%, var(--cta-green) 52%, var(--cta-green-deep) 100%);
  border-color: rgba(7, 16, 14, 0.14);
  box-shadow: 0 14px 28px rgba(0, 134, 95, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
}

.button-secondary:hover,
.button-secondary:focus {
  color: #ffffff;
  background: linear-gradient(180deg, #12ad7c 0%, #008f66 52%, #00654a 100%);
  border-color: rgba(7, 16, 14, 0.18);
  box-shadow: 0 18px 34px rgba(0, 134, 95, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.terms-note {
  color: rgba(255, 250, 240, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.trustpilot-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: #111f1d;
  border: 1px solid rgba(0, 182, 122, 0.34);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.trustpilot-rating img {
  width: 250px;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: -16px auto 36px;
  align-items: start;
}

.article,
.offer-card,
.testimonial-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(10, 14, 13, 0.1);
}

.article {
  padding: 42px;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.dropcap {
  float: left;
  margin: 9px 8px 0 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  line-height: 0.75;
}

.quote-block {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  margin: 30px 0;
  padding: 22px;
  color: #fffaf0;
  background: var(--night-soft);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.quote-block img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 8px;
}

.quote-block p {
  color: rgba(255, 250, 240, 0.86);
  font-size: 18px;
}

.feature-image {
  display: block;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-image img {
  width: 100%;
}

blockquote {
  margin: 30px 0;
  padding: 24px;
  color: #2a210f;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 21px;
  font-weight: 850;
}

.cta-panel {
  justify-content: space-between;
  margin: 30px 0;
  padding: 24px;
  color: #fffaf0;
  background: var(--night);
  border-radius: 8px;
}

.cta-panel strong,
.cta-panel span {
  display: block;
}

.cta-panel strong {
  font-size: 22px;
  font-weight: 950;
}

.cta-panel span {
  color: rgba(255, 250, 240, 0.72);
}

.jackpot-showcase {
  position: relative;
  display: block;
  min-height: 520px;
  margin: 30px 0 0;
  scroll-margin-top: 110px;
  overflow: hidden;
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.04) 0%, rgba(7, 16, 14, 0.4) 42%, rgba(7, 16, 14, 0.96) 72%, rgba(7, 16, 14, 0.99) 100%),
    url("../images/jackpot-wheel-promo.webp");
  background-position: left center;
  background-size: cover;
  border: 1px solid rgba(241, 189, 69, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(7, 16, 14, 0.2);
}

.jackpot-art {
  display: none;
}

.jackpot-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  width: min(100%, 430px);
  min-height: 520px;
  margin-left: auto;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.66), rgba(7, 16, 14, 0.94) 24%),
    var(--night);
  border-left: 1px solid rgba(241, 189, 69, 0.2);
}

.final-offer-eyebrow {
  width: fit-content;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.jackpot-content h2 {
  margin-bottom: 0;
  color: #fffaf0;
  font-size: clamp(28px, 3.5vw, 42px);
}

.jackpot-prize {
  padding: 16px;
  background: linear-gradient(135deg, rgba(241, 189, 69, 0.18), rgba(0, 182, 122, 0.08));
  border: 1px solid rgba(241, 189, 69, 0.32);
  border-radius: 8px;
}

.jackpot-prize span,
.jackpot-prize strong {
  display: block;
}

.jackpot-prize span {
  color: rgba(255, 250, 240, 0.74);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.jackpot-prize strong {
  color: var(--gold);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 950;
}

.jackpot-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jackpot-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 250, 240, 0.82);
  font-weight: 750;
}

.jackpot-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 182, 122, 0.68);
}

.jackpot-list .promo-date {
  color: #fffaf0;
  font-weight: 950;
}

.winner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.winner-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.trust-panel div {
  min-height: 130px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-panel strong,
.trust-panel span {
  display: block;
}

.trust-panel strong {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 950;
}

.trust-panel span {
  color: var(--muted);
  font-size: 14px;
}

.responsible-note,
.update-box {
  padding: 18px;
  border-radius: 8px;
}

.responsible-note {
  color: #45320e;
  background: #fff5d8;
  border: 1px solid rgba(241, 189, 69, 0.48);
}

.responsible-note h2 {
  margin-bottom: 12px;
  color: #1c1710;
  font-size: 26px;
}

.responsible-note p {
  margin-bottom: 12px;
}

.responsible-note p:last-child {
  margin-bottom: 0;
}

.update-box {
  margin: 28px 0;
  color: #46191d;
  background: #fff0f1;
  border: 1px solid rgba(199, 54, 63, 0.24);
}

.update-box strong {
  color: var(--red);
}

.update-box a {
  color: #46191d;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 22px;
}

.offer-card,
.testimonial-list {
  padding: 22px;
}

.offer-card .eyebrow {
  margin-bottom: 12px;
}

.offer-card h2,
.testimonial-list h2 {
  font-size: 24px;
}

.offer-card > a img {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trustpilot-rating-card {
  justify-content: center;
  width: 100%;
  margin: -4px 0 18px;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 750;
}

.offer-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.promo-date {
  color: #07100e;
  font-weight: 950;
}

.testimonial-list {
  display: grid;
  gap: 18px;
}

.testimonial-list figure {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-list h2 + figure {
  padding-top: 0;
  border-top: 0;
}

.testimonial-list img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-list blockquote {
  margin: 0 0 8px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 750;
}

.testimonial-list strong {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  color: rgba(255, 250, 240, 0.72);
  background: #07100e;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  font-size: 12px;
}

.footer-inner p {
  margin-bottom: 12px;
}

.footer-inner strong,
.footer-inner a {
  color: #fffaf0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 16px 0;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 14px;
  color: #06110d;
  background: var(--paper);
  border: 1px solid rgba(0, 182, 122, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sticky-cta span {
  font-size: 13px;
  font-weight: 950;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #fffaf0;
  background: linear-gradient(180deg, var(--cta-green-hover) 0%, var(--cta-green) 54%, var(--cta-green-deep) 100%);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 950;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.42);
}

.sticky-cta a:hover,
.sticky-cta a:focus {
  color: #ffffff;
}

.legal-page {
  background: #efe9dd;
}

.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 36px auto;
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.legal-shell h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-shell p,
.legal-shell li {
  color: #4f5a53;
}

.legal-shell a {
  color: var(--green-dark);
}

@media (max-width: 980px) {
  .content-shell {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 660px;
    background-position: 64% center;
  }

  .sidebar {
    position: static;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .jackpot-showcase {
    min-height: 0;
    background:
      linear-gradient(0deg, rgba(7, 16, 14, 0.99) 0%, rgba(7, 16, 14, 0.92) 54%, rgba(7, 16, 14, 0.22) 100%),
      url("../images/jackpot-wheel-promo.webp");
    background-position: left top;
    background-size: cover;
  }

  .jackpot-content {
    width: 100%;
    min-height: 560px;
    margin-left: 0;
    padding: 28px;
    justify-content: flex-end;
    background: transparent;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
    font-size: 15px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  .site-header {
    min-height: 58px;
    padding: 10px 12px;
  }

  .brand-text {
    gap: 5px;
    font-size: 14px;
  }

  .header-actions a {
    display: none;
  }

  .hero-section {
    min-height: 710px;
    margin-top: 0;
    background:
      linear-gradient(0deg, rgba(7, 16, 14, 0.99) 0%, rgba(7, 16, 14, 0.94) 64%, rgba(7, 16, 14, 0.48) 100%),
      url("../images/hero-modern-casino.webp");
    background-position: 76% top;
    background-size: cover;
  }

  .hero-copy {
    width: min(100% - 24px, 1180px);
    min-height: 710px;
    padding: 24px 0 82px;
  }

  .article,
  .offer-card,
  .testimonial-list,
  .legal-shell {
    padding: 22px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .lede {
    font-size: 16px;
  }

  .hero-offer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-row .button,
  .cta-panel .button,
  .button-secondary {
    width: 100%;
  }

  .trustpilot-rating {
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    padding: 8px 10px;
  }

  .trustpilot-rating span {
    display: none;
  }

  .content-shell {
    width: min(100% - 24px, 1180px);
  }

  .quote-block,
  .testimonial-list figure {
    grid-template-columns: 1fr;
  }

  .winner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel {
    align-items: stretch;
  }

  .jackpot-showcase {
    min-height: 0;
  }

  .jackpot-content {
    min-height: 620px;
    padding: 22px;
  }

  .jackpot-content .button {
    width: 100%;
  }

  .sticky-cta {
    display: flex;
  }

  .footer-inner {
    padding-bottom: 92px;
  }
}
