@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #07110f;
  --ink-soft: #13211f;
  --ice: #eef2f5;
  --paper: #ffffff;
  --muted: #59666c;
  --line: #d9e0e4;
  --mint: #00e7a3;
  --mint-bright: #00ffad;
  --magenta: #b700ff;
  --red: #d72e4a;
  --blue: #3c8ca6;
  --radius: 6px;
  --shadow: 0 2px 7px rgba(7, 17, 15, 0.12);
  --content-width: 1020px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 49.85%, rgba(60, 140, 166, 0.04) 49.85% 50.15%, transparent 50.15%),
    var(--ice);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: #000;
  background: var(--mint-bright);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 75px;
  color: #fff;
  background: #000;
  border-bottom: 1px solid rgba(0, 255, 173, 0.22);
}

.header-shell,
.page-shell,
.footer-shell {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: 30px;
}

.header-shell {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 135px;
  height: 34px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 70px;
}

.nav-link,
.footer-link,
.article-link {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-link::after,
.footer-link::after,
.article-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background:
    linear-gradient(90deg, var(--blue) 0 44%, var(--red) 44% 48%, var(--mint) 48%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.footer-link:hover::after,
.footer-link:focus-visible::after,
.article-link:hover::after,
.article-link:focus-visible::after,
.article-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.geo-switcher {
  position: relative;
  flex: 0 0 auto;
}

.geo-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 58px;
  height: 44px;
  padding: 6px 8px;
  border: 1px solid rgba(0, 231, 163, 0.85);
  border-radius: var(--radius);
  color: var(--mint);
  background: #111519;
  cursor: pointer;
}

.geo-toggle:hover,
.geo-toggle:focus-visible,
.geo-toggle[aria-expanded="true"] {
  border-color: var(--mint-bright);
  background: #18201e;
  outline: none;
}

.geo-flag {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: #fff;
}

.geo-arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(2px) rotate(45deg);
  transition: transform 160ms ease;
}

.geo-toggle[aria-expanded="true"] .geo-arrow {
  transform: translateY(-2px) rotate(225deg);
}

.geo-menu {
  position: fixed;
  top: 83px;
  left: 50vw;
  z-index: 120;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(720px, calc(100vw - 32px));
  padding: 14px;
  color: #fff;
  background: #14181c;
  border: 1px solid #3c434a;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.52);
  transform: translateX(-50%);
}

.geo-link {
  display: flex;
  align-items: center;
  min-width: 0;
  color: #fff;
  background: #34383e;
  border: 1px solid #444a51;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.geo-link:hover,
.geo-link:focus-visible {
  color: #04110d;
  background: #8af2d1;
  border-color: var(--mint);
  outline: none;
}

.geo-link.is-current {
  color: #03110c;
  background: var(--mint);
  border-color: var(--mint);
}

.geo-link--header {
  gap: 10px;
  min-height: 46px;
  padding: 7px 10px;
  background: #171b1f;
}

.geo-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.geo-code {
  display: none;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: #06100e;
  background: var(--mint);
  box-shadow: 0 4px 0 rgba(0, 109, 77, 0.65);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  clip-path: none;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.cta--bonus {
  color: #fff;
  background: var(--magenta);
  box-shadow: 0 4px 0 rgba(80, 0, 112, 0.72);
}

.cta--accent {
  color: #fff;
  background: var(--magenta);
  box-shadow: 0 4px 0 rgba(80, 0, 112, 0.72);
}

.cta--soft {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0, 231, 163, 0.72);
  box-shadow: 0 4px 0 rgba(0, 109, 77, 0.32);
}

.cta:hover,
.cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.cta:active,
.cta.is-pressed {
  box-shadow: 0 1px 0 rgba(0, 80, 57, 0.72);
  transform: translateY(3px) scale(0.985);
}

.cta::after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: rotate(45deg) scale(0.2);
  pointer-events: none;
}

.cta.is-pressed::after {
  animation: maple-notch-ping 220ms ease-out;
}

@keyframes maple-notch-ping {
  0% {
    opacity: 0.65;
    transform: rotate(45deg) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) scale(1.45);
  }
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, width 180ms ease, background 180ms ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 55%;
  background: var(--mint);
  transform: translateX(7px);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-scrim {
  position: fixed;
  inset: 75px 0 0;
  z-index: 89;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-scrim.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 75px;
  right: 0;
  left: 0;
  z-index: 90;
  display: grid;
  width: 100vw;
  max-height: calc(100dvh - 75px);
  padding: 18px 30px 22px;
  overflow-y: auto;
  visibility: hidden;
  color: #fff;
  background: #07110f;
  border: 1px solid rgba(0, 255, 173, 0.32);
  border-right: 0;
  border-left: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .nav-link {
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .cta {
  width: 100%;
  margin-top: 12px;
}

.page-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, var(--content-width)) 240px;
  gap: 20px;
  align-items: start;
  padding-block: 20px 40px;
}

.left-rail,
.right-rail {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 20px;
  min-width: 0;
}

.rail-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(7, 17, 15, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rail-title {
  margin: 0;
  padding: 13px 16px;
  color: #fff;
  background: #000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rail-links {
  display: grid;
  padding: 8px;
}

.rail-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 9px;
  align-items: center;
  min-height: 40px;
  padding: 7px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: background 160ms ease, transform 160ms ease;
}

.rail-row:hover,
.rail-row:focus-visible {
  background: rgba(0, 231, 163, 0.1);
  transform: translateX(2px);
}

.rail-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.rail-count {
  min-width: 28px;
  padding: 2px 5px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 10px;
  text-align: center;
}

.article-nav {
  max-height: min(48vh, 470px);
  overflow-y: auto;
}

.article-link {
  display: block;
  padding: 9px 8px 11px;
  color: #344247;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.article-link::after {
  bottom: 4px;
  height: 1px;
}

.visual-links {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.visual-link {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  border-radius: 4px;
}

.visual-link img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.visual-link span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 10px 9px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-link:hover img,
.visual-link:focus-visible img {
  transform: scale(1.035);
}

.content-column {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.hero {
  --hero-image: none;
  position: relative;
  display: flex;
  min-height: 381px;
  padding: 65px 30px;
  overflow: hidden;
  color: #fff;
  background-color: #07110f;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(7, 17, 15, 0.92) 48%, rgba(7, 17, 15, 0.22) 76%, rgba(7, 17, 15, 0.08) 100%),
    linear-gradient(0deg, transparent 48%, rgba(60, 140, 166, 0.16) 49%, rgba(60, 140, 166, 0.16) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(215, 46, 74, 0.16) 49%, rgba(215, 46, 74, 0.16) 51%, transparent 52%),
    var(--hero-image);
  background-position: center, center, center, center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 231, 163, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: -44%;
  right: -16%;
  width: 62%;
  aspect-ratio: 1;
  content: "";
  border: 2px solid rgba(0, 255, 173, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(0, 231, 163, 0.035),
    inset 0 0 0 1px rgba(215, 46, 74, 0.3);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 32px;
  bottom: 26px;
  width: 220px;
  height: 56px;
  content: "";
  background: url("../img/logo.svg") center / contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100%, 720px);
}

.hero h1 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--mint-bright);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero-lead {
  width: 100%;
  margin: 16px 0 0;
  color: #eef9f5;
  font-size: 15px;
  line-height: 23.25px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.content-section,
.service-block,
.not-found {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid rgba(7, 17, 15, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-section::before,
.service-block::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 72px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue) 0 38%, var(--red) 38% 44%, var(--mint) 44%);
}

.content-section::after {
  position: absolute;
  top: -1px;
  left: 20px;
  width: min(220px, calc(100% - 40px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--mint), var(--blue), var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.content-section.is-visible::after {
  animation: crossline-seam 620ms ease-out forwards;
}

@keyframes crossline-seam {
  to {
    transform: scaleX(1);
  }
}

.section-flow {
  display: flow-root;
  width: 100%;
}

.content-section h2,
.service-block h1,
.not-found h1 {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-wrap: wrap;
}

.content-section h3 {
  width: 100%;
  max-width: none;
  margin: 20px 0;
  padding: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.content-section p,
.content-section ul,
.content-section ol,
.content-section .table-wrap,
.service-block p,
.service-block ul,
.service-block ol {
  width: 100%;
  max-width: none;
}

.content-section p,
.service-block p {
  margin: 0 0 20px;
}

.content-section p:last-child,
.service-block p:last-child {
  margin-bottom: 0;
}

.content-section ul,
.content-section ol,
.service-block ul,
.service-block ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.content-section li,
.service-block li {
  padding-left: 4px;
}

.content-section li + li,
.service-block li + li {
  margin-top: 8px;
}

.content-section li::marker,
.service-block li::marker {
  color: var(--red);
  font-weight: 800;
}

.content-section ol li::marker,
.service-block ol li::marker {
  color: var(--blue);
}

#pros-and-cons-for-canadian-players::before {
  top: 18px;
  left: -1px;
  width: 3px;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, var(--mint) 0 48%, var(--blue) 68%, var(--magenta) 100%);
  border-radius: 0 3px 3px 0;
}

#pros-and-cons-for-canadian-players::after {
  display: none;
}

#pros-and-cons-for-canadian-players .section-flow {
  display: grid;
  grid-template-areas:
    "intro intro"
    "pros-title cons-title"
    "pros-list cons-list"
    "cta cta";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  width: 100%;
}

#pros-and-cons-for-canadian-players .section-flow > p:first-child {
  grid-area: intro;
  margin-bottom: 20px;
}

#pros-and-cons-for-canadian-players .section-flow > h3 {
  margin: 0;
  padding: 18px 18px 10px;
  background: #f6f8f8;
  border: 1px solid #d1dcd8;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  font-size: 18px;
  line-height: 28px;
}

#pros-and-cons-for-canadian-players .section-flow > h3:first-of-type {
  grid-area: pros-title;
  border-top: 2px solid var(--mint);
}

#pros-and-cons-for-canadian-players .section-flow > h3:last-of-type {
  grid-area: cons-title;
  border-top: 2px solid var(--red);
}

#pros-and-cons-for-canadian-players .section-flow > ul {
  min-height: 100%;
  margin: 0;
  padding: 8px 22px 22px 44px;
  background: #f6f8f8;
  border: 1px solid #d1dcd8;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

#pros-and-cons-for-canadian-players .section-flow > ul:first-of-type {
  grid-area: pros-list;
}

#pros-and-cons-for-canadian-players .section-flow > ul:last-of-type {
  grid-area: cons-list;
}

#pros-and-cons-for-canadian-players .section-flow > ul li::marker {
  color: var(--mint);
}

#pros-and-cons-for-canadian-players .section-flow > .section-cta {
  grid-area: cta;
  justify-self: start;
  margin-top: 20px;
}

.bonus-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 20px 0;
}

.bonus-offer-card {
  min-width: 0;
  padding: 18px;
  background: #f6f8f8;
  border: 1px solid #d1dcd8;
  border-top: 2px solid var(--mint);
  border-radius: 6px;
}

.bonus-offer-card:nth-child(2) {
  border-top-color: var(--magenta);
}

.bonus-offer-card:nth-child(3) {
  border-top-color: var(--blue);
}

.bonus-offer-card:nth-child(4) {
  border-top-color: var(--red);
}

.bonus-offer-card--wide {
  grid-column: 1 / -1;
}

.content-section .bonus-offer-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.4;
}

.bonus-offer-copy p:last-child,
.bonus-offer-copy ul:last-child,
.bonus-offer-copy ol:last-child {
  margin-bottom: 0;
}

.player-review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 20px;
  padding: 14px 16px;
  color: #eafff8;
  background: #06110d;
  border: 1px solid #173a2f;
  border-radius: 6px;
}

.player-review-summary > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-review-summary strong {
  color: var(--mint-bright);
  font-size: 22px;
  line-height: 1;
}

.player-review-summary span {
  font-size: 13px;
  line-height: 1.4;
}

.player-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0;
}

.player-review-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: #f6f8f8;
  border: 1px solid #d1dcd8;
  border-top: 2px solid var(--mint);
  border-radius: 6px;
}

.player-review-card:nth-child(2) {
  border-top-color: var(--magenta);
}

.player-review-card:nth-child(3) {
  border-top-color: var(--blue);
}

.player-review-card:nth-child(4) {
  border-top-color: var(--red);
}

.player-review-card--wide {
  grid-column: 1 / -1;
}

.player-review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #53605b;
  font-size: 12px;
  line-height: 1.4;
}

.player-review-item {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 9px;
  color: #052219;
  background: #dff8f0;
  border: 1px solid #a8e4d1;
  border-radius: 999px;
  font-weight: 700;
}

.content-section .player-review-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
  text-transform: none;
}

.content-section .player-review-author {
  margin: 0 0 10px;
  color: #27332f;
  font-size: 13px;
  font-weight: 700;
}

.player-review-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.player-review-rating span {
  color: var(--magenta);
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
}

.player-review-rating strong {
  color: #26332f;
  font-size: 12px;
}

.content-section .player-review-quote {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.content-section .player-review-body {
  margin: 0;
  color: #35413d;
  font-size: 14px;
  line-height: 1.55;
}

#expert-summary .expert-meta-line,
#verdict .expert-meta-line {
  margin-bottom: 10px;
  color: #34413c;
}

#expert-summary .expert-meta-line strong,
#verdict .expert-meta-line strong {
  color: #07543f;
  font-weight: 750;
}

#expert-summary .expert-meta-line:last-child,
#verdict .expert-meta-line:last-child {
  margin-bottom: 0;
}

.content-section blockquote {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: #f2f7f6;
  border-left: 3px solid var(--mint);
}

.table-wrap {
  margin: 0 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #f7f9f8;
  border: 1px solid #c6d8d2;
  border-radius: 6px;
  scrollbar-color: var(--mint) #dce8e4;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  line-height: 1.45;
}

th,
td {
  padding: 13px 14px;
  border-right: 1px solid #cdded8;
  border-bottom: 1px solid #cdded8;
  text-align: left;
  vertical-align: middle;
  transition: background 150ms ease;
}

thead th {
  color: #fff;
  background: #020706;
  font-weight: 700;
}

thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

tbody td,
tbody th {
  color: #15201c;
  background: #f7f9f8;
  font-weight: 400;
}

tbody tr:nth-child(even) td,
tbody tr:nth-child(even) th {
  background: #eef6f3;
}

thead th:first-child,
tbody th:first-child,
tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 25%;
  min-width: 190px;
  border-right: 3px solid #c3e8dc;
}

thead th:first-child {
  z-index: 2;
  background: #020706;
  border-right-color: rgba(255, 255, 255, 0.55);
}

tbody th:first-child,
tbody td:first-child {
  color: #0a1612;
  background: #dff8f0;
  font-weight: 700;
}

tbody tr:nth-child(even) th:first-child,
tbody tr:nth-child(even) td:first-child {
  background: #dff8f0;
}

tbody tr:hover td,
tbody tr:hover th {
  background: #e8f6f1;
}

tbody tr:hover th:first-child,
tbody tr:hover td:first-child {
  background: #d4f4e9;
}

tr:last-child td {
  border-bottom: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

.section-cta {
  display: flex;
  margin-top: 20px;
}

.section-cta--downloads {
  flex-wrap: wrap;
  gap: 12px;
}

.section-cta--downloads .cta--download {
  flex: 0 1 190px;
  gap: 9px;
  min-height: 56px;
  padding: 8px 16px;
}

.cta--download img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.download-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.download-label > span {
  font-size: 9px;
  font-weight: 700;
}

.download-label > strong {
  font-size: 14px;
  font-weight: 850;
}

.cta--download-ios {
  color: #fff;
  background: #07110f;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.42);
}

.promo-banner {
  position: relative;
  display: flex;
  min-height: 260px;
  padding: 28px 30px;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.promo-banner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.06) 72%);
}

.promo-banner--focus-left {
  justify-content: flex-end;
}

.promo-banner--focus-left::before {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.06) 72%);
}

.promo-copy {
  align-self: center;
  width: min(52%, 470px);
}

.promo-copy h2 {
  width: 100%;
  margin: 0 0 10px;
  color: var(--mint-bright);
  font-size: 26px;
  line-height: 1.2;
  text-wrap: wrap;
}

.promo-copy p {
  width: 100%;
  margin: 0 0 16px;
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #d5dfe1;
  border-radius: 4px;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: var(--mint);
  box-shadow: 0 4px 0 rgba(0, 231, 163, 0.13);
  transform: translateX(2px);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 52px 12px 16px;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 16px;
  width: 13px;
  height: 13px;
  content: "";
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--mint);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translate(-3px, -1px);
}

.faq-answer {
  padding: 0 16px 16px;
  color: #354247;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

.site-footer {
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 231, 163, 0.03), rgba(0, 231, 163, 0.03)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(60, 140, 166, 0.08) 58px 59px),
    #000;
  border-top: 1px solid rgba(0, 255, 173, 0.25);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-block: 38px 18px;
}

.footer-brand img {
  width: 135px;
  height: 34px;
  margin-bottom: 14px;
}

.footer-brand p {
  width: 100%;
  margin: 0;
  color: #c4cfcb;
  font-size: 12px;
}

.footer-col h2 {
  margin: 0 0 13px;
  color: var(--mint);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-link {
  width: max-content;
  max-width: 100%;
  color: #e9efed;
  font-size: 12px;
}

.footer-link::after {
  bottom: -3px;
  height: 1px;
}

.footer-geos,
.trust-row,
.footer-bottom {
  grid-column: 1 / -1;
}

.footer-geos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.geo-link--footer {
  gap: 9px;
  min-height: 50px;
  padding: 8px 10px;
  font-size: 12px;
}

.geo-link--footer .geo-flag {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.age-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.trust-row p {
  margin: 0;
  color: #c4cfcb;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  color: #9eaaa6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.service-shell {
  display: block;
  max-width: 1080px;
}

.service-block {
  min-height: 500px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: #087a5b;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-pairs {
  display: grid;
  gap: 18px;
}

.service-pair h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 520px;
  text-align: center;
}

.not-found-inner {
  max-width: 620px;
}

.not-found-code {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.not-found p {
  margin: 0 0 20px;
}

@media (max-width: 1359px) {
  .page-shell {
    display: block;
    max-width: calc(var(--content-width) + 60px);
  }

  .left-rail,
  .right-rail {
    display: none;
  }

  .content-column {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .primary-nav,
  .header-actions > .cta {
    display: none;
  }

  .geo-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    width: min(430px, calc(100vw - 24px));
    padding: 12px;
  }

  .geo-link--header {
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 6px;
  }

  .geo-link--header .geo-name {
    display: none;
  }

  .geo-link--header .geo-code {
    display: inline;
    font-size: 12px;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-toggle {
    display: block;
  }

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

  .bonus-offer-card:nth-child(3),
  .bonus-offer-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    height: 60px;
  }

  .header-shell {
    gap: 20px;
  }

  .geo-menu {
    top: 68px;
  }

  .menu-scrim {
    inset: 60px 0 0;
  }

  .mobile-menu {
    top: 60px;
    max-height: calc(100dvh - 60px);
    padding-inline: 16px;
  }

  .header-shell,
  .page-shell,
  .footer-shell {
    padding-inline: 16px;
  }

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

  .page-shell {
    padding-block: 16px 28px;
  }

  .content-column {
    gap: 16px;
  }

  .hero {
    min-height: 340px;
    padding: 40px 20px;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(7, 17, 15, 0.62) 62%, rgba(7, 17, 15, 0.14) 100%),
      linear-gradient(0deg, transparent 48%, rgba(60, 140, 166, 0.14) 49%, rgba(60, 140, 166, 0.14) 51%, transparent 52%),
      linear-gradient(90deg, transparent 48%, rgba(215, 46, 74, 0.12) 49%, rgba(215, 46, 74, 0.12) 51%, transparent 52%),
      var(--hero-image);
    background-position: center, center, center, 86% center;
  }

  .hero h1,
  .hero-lead,
  .promo-copy h2,
  .promo-copy p {
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.9),
      0 4px 14px rgba(0, 0, 0, 0.52);
  }

  .hero::before {
    top: -18%;
    right: -60%;
    width: 120%;
  }

  .hero::after {
    right: 18px;
    bottom: 18px;
    width: 145px;
  }

  .hero h1 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.18;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.55;
  }

  .content-section,
  .service-block,
  .not-found {
    padding: 20px 16px;
  }

  .content-section::before,
  .service-block::before,
  .content-section::after {
    left: 16px;
  }

  .content-section h2,
  .service-block h1,
  .not-found h1 {
    font-size: 25px;
    line-height: 1.25;
  }

  .content-section h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  #pros-and-cons-for-canadian-players .section-flow {
    grid-template-areas:
      "intro"
      "pros-title"
      "pros-list"
      "cons-title"
      "cons-list"
      "cta";
    grid-template-columns: minmax(0, 1fr);
  }

  #pros-and-cons-for-canadian-players .section-flow > h3:last-of-type {
    margin-top: 16px;
  }

  .bonus-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bonus-offer-card--wide {
    grid-column: auto;
  }

  .bonus-offer-card:nth-child(3) {
    grid-column: auto;
  }

  .player-review-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .player-review-summary > div,
  .player-review-summary > span {
    width: 100%;
  }

  .player-review-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .player-review-card--wide {
    grid-column: auto;
  }

  .player-review-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .table-wrap {
    margin-right: 0;
    margin-left: 0;
  }

  table {
    min-width: 640px;
    font-size: 12px;
  }

  th,
  td {
    padding: 11px 12px;
  }

  .section-cta .cta {
    width: 100%;
  }

  .section-cta--downloads {
    flex-direction: column;
  }

  .promo-banner {
    min-height: 310px;
    padding: 24px 18px;
    background-position: 58% center;
  }

  .promo-banner::before,
  .promo-banner--focus-left::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.08) 100%);
  }

  .promo-banner--focus-left {
    justify-content: flex-start;
    background-position: 42% center;
  }

  .promo-copy {
    align-self: flex-end;
    width: min(88%, 520px);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo-copy h2 {
    font-size: 23px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 30px;
    text-align: left;
  }

  .trust-row,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-geos {
    grid-column: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    padding-block: 18px;
  }

  .geo-link--footer {
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 6px 4px;
  }

  .geo-link--footer .geo-name {
    display: none;
  }

  .geo-link--footer .geo-code {
    display: inline;
    font-size: 11px;
  }

  .geo-link--footer .geo-flag {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .trust-row {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-shell {
    gap: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .geo-toggle {
    width: 52px;
    height: 42px;
    gap: 6px;
    padding-inline: 6px;
  }

  .geo-toggle .geo-flag {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .geo-menu {
    gap: 6px;
    padding: 10px;
  }

  .geo-link--header {
    min-height: 42px;
  }

  .geo-link--header .geo-flag {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .hero-actions,
  .promo-copy .cta {
    width: 100%;
  }

  .hero-actions .cta,
  .promo-copy .cta {
    width: 100%;
  }

  .promo-copy {
    width: 100%;
  }

  table {
    min-width: 600px;
  }

  thead th:first-child,
  tbody th:first-child,
  tbody td:first-child {
    width: 160px;
    min-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .content-section::after {
    transform: scaleX(1);
  }
}
