:root {
  --font-inter: Arial, Helvetica, sans-serif;
  --font-condensed: "Arial Narrow", Arial, sans-serif;
  --ink: #14363b;
  --muted: #60777b;
  --teal-950: #043f45;
  --teal-900: #07535a;
  --teal-800: #09676d;
  --teal-600: #1ea3a8;
  --teal-100: #ddf1f1;
  --green: #29b85c;
  --green-dark: #168f43;
  --coral: #f44f49;
  --sand: #f4f7f7;
  --line: #d7e4e5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-inter), Arial, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--teal-950);
  color: white;
  box-shadow: 0 6px 24px rgba(2, 42, 46, 0.18);
}
.header-shell {
  width: min(1440px, calc(100% - 28px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  font:
    900 28px/1 var(--font-condensed),
    sans-serif;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.brand-mark {
  color: var(--teal-600);
  font-size: 36px;
  transform: skew(-8deg);
  margin-right: 2px;
}
.brand small {
  grid-column: 1 / 3;
  font:
    500 8px/1.2 var(--font-inter),
    sans-serif;
  letter-spacing: 0.08em;
  color: #73a4a8;
  padding-left: 4px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font:
    800 11px/1 var(--font-condensed),
    sans-serif;
  letter-spacing: 0.03em;
  transition: 0.2s ease;
  cursor: pointer;
  border: none;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.button-ghost {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color:#fff;
}
.button-green {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 18px rgba(41, 184, 92, 0.2);
}
.button-coral {
  background: var(--coral);
  color: white;
  padding-inline: 28px;
  box-shadow: 0 12px 26px rgba(244, 79, 73, 0.25);
}
.button-wide {
  width: 100%;
}
.locale {
  font-size: 11px;
  margin-left: 6px;
  opacity: 0.9;
}
section.hero {
  padding: unset;
}
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(
      circle at 82% 32%,
      rgba(31, 163, 168, 0.3),
      transparent 31%
    ),
    linear-gradient(116deg, #05454b 0%, #09686f 58%, #064e54 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: 4%;
  top: -270px;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.02),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}
.hero::after {
  content: "22";
  position: absolute;
  right: -36px;
  bottom: -170px;
  font:
    900 520px/1 var(--font-condensed),
    sans-serif;
  color: rgba(255, 255, 255, 0.025);
  transform: skew(-7deg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 72px;
  align-items: center;
  min-height: 570px;
  padding-block: 74px 82px;
}
.eyebrow,
.section-kicker {
  font:
    800 11px/1.2 var(--font-condensed),
    sans-serif;
  letter-spacing: 0.16em;
  color: var(--teal-600);
}
.eyebrow {
  color: #8ce0e2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 24px;
  height: 3px;
  background: var(--coral);
}
h1,
h2,
h3 {
  font-family: var(--font-condensed), sans-serif;
  line-height: 1.06;
  margin: 0;
}
h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(46px, 5.4vw, 74px);
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: #d8eeee;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}
.hero-badges span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #bbdfe1;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 52, 57, 0.73);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transform: rotate(1deg);
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font:
    800 12px/1 var(--font-condensed),
    sans-serif;
}
.panel-heading strong {
  color: #91e3e5;
  font-size: 38px;
}
.panel-heading small {
  font-size: 15px;
  color: #8bb0b2;
}
.score-line {
  height: 5px;
  margin: 14px 0 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.score-line i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #7ee49f);
}
.hero-panel dl {
  margin: 0 0 22px;
}
.hero-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 11px 0;
}
.hero-panel dt {
  color: #9cc2c5;
  font-size: 12px;
}
.hero-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
  font-size: 12px;
}
.hero-panel > p {
  margin: 13px 0 0;
  color: #8fb7ba;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}
.hero-stripe {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--coral) 0 25%,
    var(--green) 25% 58%,
    #31aab0 58% 100%
  );
}
section.fact-strip {
  padding: unset;
}
.fact-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(8, 72, 78, 0.06);
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}
.fact:first-child {
  border-left: 1px solid var(--line);
}
.fact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-800);
  font-weight: 900;
}
.fact small,
.fact strong {
  display: block;
}
.fact small {
  color: #789094;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fact strong {
  font-family: var(--font-condensed);
  font-size: 18px;
  margin-top: 2px;
}
.section {
  padding-block: 94px;
}
.section-kicker {
  margin-bottom: 22px;
}
.section-kicker.light {
  color: #7dd8db;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}
.section-heading h2,
.app-copy h2,
.trust-grid h2,
.faq-intro h2 {
  font-size: clamp(35px, 4vw, 54px);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.section-heading > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: end;
}
.split-heading p {
  margin: 0;
}
.overview-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
}
.data-card,
.verdict-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 45px rgba(8, 72, 78, 0.07);
}
.data-card-title {
  background: var(--teal-900);
  color: white;
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  font: 800 13px/1 var(--font-condensed);
}
.data-card-title span {
  color: #91dadd;
  font-weight: 600;
  font-size: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.facts-table th,
.facts-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #e7eeee;
  text-align: left;
  font-size: 12px;
}
.facts-table th {
  width: 43%;
  color: #6d8387;
  font-weight: 600;
}
.facts-table td {
  font-weight: 800;
}
.verdict-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(145deg, #f1fafa, #fff);
}
.verdict-card::after {
  content: "✓";
  position: absolute;
  right: 22px;
  top: 18px;
  font: 900 76px/1 var(--font-condensed);
  color: rgba(30, 163, 168, 0.08);
}
.verdict-label {
  color: var(--coral);
  font: 800 10px/1 var(--font-condensed);
  letter-spacing: 0.13em;
}
.verdict-card h3 {
  margin-top: 14px;
  font-size: 28px;
}
.verdict-card p {
  color: var(--muted);
  font-size: 13px;
}
.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.check-list li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 12px;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}
.section-tint {
  background: var(--sand);
  border-block: 1px solid var(--line);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  padding: 32px 28px;
  min-height: 390px;
  box-shadow: 0 15px 35px rgba(9, 76, 81, 0.05);
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent);
}
.accent-coral {
  --accent: var(--coral);
}
.accent-teal {
  --accent: var(--teal-600);
}
.accent-green {
  --accent: var(--green);
}
.step-number {
  color: var(--accent);
  font: 900 12px/1 var(--font-condensed);
}
.step-card h3 {
  font-size: 27px;
  margin: 20px 0;
}
.step-card p,
.step-card li {
  font-size: 12px;
  color: var(--muted);
}
.step-card ol,
.step-card ul {
  padding-left: 19px;
}
.step-card li {
  margin: 9px 0;
}
.mini-login {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.mini-login span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 11px;
  color: #829598;
  font-size: 10px;
}
.mini-login b {
  text-align: center;
  background: var(--green);
  color: white;
  padding: 11px;
  border-radius: 4px;
  font: 800 10px/1 var(--font-condensed);
  display: block;
}
.bonus-feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(4, 73, 79, 0.12);
}
.bonus-main {
  padding: 32px;
  background: linear-gradient(110deg, var(--teal-900), var(--teal-600));
}
.bonus-main span {
  font: 800 10px/1 var(--font-condensed);
  letter-spacing: 0.12em;
}
.bonus-main strong {
  display: block;
  font: 900 46px/1 var(--font-condensed);
  margin-top: 14px;
}
.bonus-main strong small {
  font-size: 17px;
  font-weight: 600;
}
.bonus-main p {
  margin: 12px 0 0;
  color: #c9ebec;
  font-size: 12px;
}
.bonus-rules {
  padding: 28px 30px;
  background: var(--teal-950);
}
.bonus-rules h3 {
  font-size: 21px;
}
.bonus-rules ul {
  padding-left: 17px;
  margin-bottom: 0;
}
.bonus-rules li {
  color: #b9d9db;
  font-size: 11px;
  margin: 8px 0;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.bonus-grid article {
  border: 1px solid var(--line);
  padding: 23px;
  min-height: 210px;
  border-radius: 6px;
  background: #fff;
}
.tag {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #e6f8ec;
  font: 800 9px/1 var(--font-condensed);
}
.bonus-grid h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}
.bonus-grid strong {
  display: block;
  color: var(--teal-800);
  font: 900 18px/1.2 var(--font-condensed);
}
.bonus-grid p {
  color: var(--muted);
  font-size: 11px;
}

/* Styl pro promo kódy */
.promo-codes-wrapper {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(9, 76, 81, 0.05);
}
.promo-codes-wrapper h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--teal-950);
}
.promo-codes-wrapper p.subtitle {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 20px 0;
}
.promo-codes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.promo-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.promo-card-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.promo-tag {
  font: 800 9px/1 var(--font-condensed);
  text-transform: uppercase;
  color: var(--green-dark);
  background: #e6f8ec;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}
.promo-card h4 {
  margin: 4px 0 0;
  font-size: 17px;
  color: var(--teal-900);
  font-family: var(--font-condensed);
}
.promo-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.promo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px dashed var(--teal-600);
  border-radius: 6px;
  padding: 6px 6px 6px 14px;
}
.promo-code-val {
  font-family: monospace;
  font-weight: 800;
  font-size: 16px;
  color: var(--teal-950);
  letter-spacing: 1px;
}
.copy-btn {
  border: none;
  font-size: 10px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s ease;
}

.product-zone {
  color: white;
  background:
    radial-gradient(circle at 50% 0, #14787e, transparent 40%), var(--teal-950);
}
.light-heading p {
  color: #b4d5d7;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.game-grid article {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
}
.game-grid article::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -75px;
  bottom: -75px;
  background: rgba(30, 163, 168, 0.13);
}
.game-symbol {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font: 900 17px/1 var(--font-condensed);
}
.game-grid h3 {
  font-size: 25px;
  margin: 26px 0 12px;
}
.game-grid p {
  color: #b6d4d6;
  font-size: 12px;
  min-height: 68px;
}
.game-link {
  color: #76dade;
  font: 800 9px/1 var(--font-condensed);
  letter-spacing: 0.08em;
  display: inline-block;
}
.casino-copy {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  gap: 30px;
  align-items: center;
  margin-top: 34px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.casino-copy h3 {
  font-size: 24px;
}
.casino-copy p {
  color: #b6d4d6;
  font-size: 12px;
  margin-bottom: 0;
}
.metric {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.metric strong,
.metric span {
  display: block;
}
.metric strong {
  color: #8be3e5;
  font: 900 37px/1 var(--font-condensed);
}
.metric span {
  color: #9bbdc0;
  font-size: 9px;
  text-transform: uppercase;
  margin-top: 8px;
}
.sport-board {
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(7, 75, 80, 0.07);
}
.sport-tabs {
  display: flex;
  gap: 4px;
  background: var(--teal-900);
  padding: 0 18px;
  color: white;
}
.sport-tabs span {
  padding: 16px 20px;
  font: 800 10px/1 var(--font-condensed);
  opacity: 0.62;
}
.sport-tabs .active {
  opacity: 1;
  border-bottom: 4px solid var(--green);
}
.sport-table th,
.sport-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.sport-table thead {
  background: #edf4f5;
  color: #6e8588;
  text-transform: uppercase;
}
.sport-table thead th {
  font: 800 9px/1 var(--font-condensed);
  letter-spacing: 0.08em;
}
.sport-table tbody th {
  font-family: var(--font-condensed);
  font-size: 14px;
}
.status-dot,
.online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 7px;
  box-shadow: 0 0 0 4px rgba(41, 184, 92, 0.12);
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.feature-row div {
  padding: 18px 20px;
  background: var(--sand);
  border-left: 3px solid var(--teal-600);
}
.feature-row b,
.feature-row span {
  display: block;
}
.feature-row b {
  font-family: var(--font-condensed);
}
.feature-row span {
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}
.payment-table {
  min-width: 760px;
}
.payment-table th,
.payment-table td {
  padding: 17px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.payment-table thead {
  background: var(--teal-900);
  color: white;
}
.payment-table thead th {
  font: 800 10px/1 var(--font-condensed);
  letter-spacing: 0.05em;
}
.payment-table tbody th {
  font: 800 13px/1 var(--font-condensed);
  color: var(--teal-800);
}
.payment-table tbody tr:hover {
  background: #f3fafa;
}
.payment-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.payment-notes p {
  margin: 0;
  padding: 17px;
  background: white;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}
.app-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.phone-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, var(--teal-100), transparent 64%);
}
.phone-art::before,
.phone-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid #c8e3e4;
}
.phone-art::before {
  width: 380px;
  height: 380px;
}
.phone-art::after {
  width: 280px;
  height: 280px;
}
.phone-screen {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 440px;
  padding: 25px 18px;
  color: white;
  background: linear-gradient(165deg, #064c52, #0a747a);
  border: 8px solid #163c40;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(3, 67, 72, 0.27);
  transform: rotate(-4deg);
}
.phone-screen > span {
  font: 900 20px/1 var(--font-condensed);
}
.phone-card {
  margin-top: 35px;
  padding: 22px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--coral), #ff7a5f);
  font: 800 11px/1.5 var(--font-condensed);
}
.phone-card b {
  font-size: 31px;
}
.phone-lines {
  height: 46px;
  margin-top: 16px;
  border-radius: 7px;
  background: repeating-linear-gradient(#d8f2f3 0 6px, transparent 6px 13px);
  opacity: 0.5;
}
.phone-lines.short {
  width: 70%;
}
.phone-screen .button {
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  font: 800 10px/1 var(--font-condensed);
}
.app-copy > p {
  color: var(--muted);
  font-size: 14px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.platform-grid div {
  padding: 20px;
  border: 1px solid var(--line);
}
.platform-grid span,
.platform-grid b {
  display: block;
}
.platform-grid span {
  color: var(--teal-600);
  font: 800 9px/1 var(--font-condensed);
  letter-spacing: 0.1em;
}
.platform-grid b {
  margin-top: 10px;
  font-family: var(--font-condensed);
}
.platform-grid p {
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 0;
}
.app-copy h3 {
  font-size: 24px;
  margin-top: 30px;
}
.trust-zone {
  color: white;
  background: linear-gradient(110deg, #063f45 0 54%, #07555b 54%);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trust-grid p {
  color: #b4d1d3;
  font-size: 13px;
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.trust-cards article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}
.trust-cards span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--green);
  font: 900 12px/1 var(--font-condensed);
}
.trust-cards h3 {
  margin: 17px 0 7px;
  font-size: 18px;
}
.trust-cards p {
  margin: 0;
  font-size: 10px;
}
.contact-bar {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr repeat(4, auto);
  align-items: center;
  gap: 22px;
  padding: 27px 30px;
  color: white;
  background: var(--teal-800);
  border-left: 8px solid var(--green);
}
.contact-bar div {
  font: 800 9px/1 var(--font-condensed);
  letter-spacing: 0.08em;
}
.contact-bar h2 {
  font-size: 22px;
}
.contact-bar a,
.contact-bar > span {
  color: #c6e6e7;
  font-size: 9px;
}
.faq-section {
  background: #f5f8f8;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
}
.faq-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}
.faq-intro p {
  color: var(--muted);
  font-size: 13px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  background: white;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font: 800 17px/1.25 var(--font-condensed);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--teal-600);
  font-size: 22px;
  transition: 0.2s ease;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: 0;
  padding: 0 24px 23px;
  color: var(--muted);
  font-size: 12px;
}
.footer {
  border-top: 8px solid var(--teal-800);
  background: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 70px;
  padding-block: 55px;
}
.dark-brand {
  display: inline-grid;
  color: var(--ink);
}
.footer-brand p {
  max-width: 320px;
  color: #7c9093;
  font-size: 11px;
}
.footer-top h3 {
  position: relative;
  padding-bottom: 13px;
  margin-bottom: 14px;
  font: 800 13px/1 var(--font-condensed);
}
.footer-top h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  background: var(--teal-800);
}
.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-top > div:not(.footer-brand) a {
  color: #7c9093;
  font-size: 10px;
}
.footer-top a:hover {
  color: var(--teal-800);
}
.footer-bottom {
  border-top: 1px solid var(--line);
}
.footer-bottom .page-shell {
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-bottom p {
  max-width: 700px;
  color: #758b8e;
  font-size: 9px;
}
.footer-bottom p b {
  color: var(--coral);
  font-size: 14px;
  margin-right: 8px;
}
.footer-bottom span {
  color: #829598;
  font-size: 9px;
}
@media (max-width: 1100px) {
  .header-shell {
    justify-content: space-between;
  }
  .header-actions {
    justify-self: end;
  }
  .hero-grid {
    gap: 35px;
  }
  .contact-bar {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact-bar h2 {
    grid-row: span 2;
  }
}
@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 28px, 680px);
  }
  .site-header {
    position: relative;
  }
  .header-shell {
    min-height: 66px;
    gap: 12px;
  }
  .header-actions .button-ghost,
  .locale {
    display: none;
  }
  .header-actions .button {
    min-height: 36px;
    padding: 0 14px;
  }
  .hero-grid,
  .split-heading,
  .overview-layout,
  .app-layout,
  .trust-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-block: 58px;
    min-height: auto;
  }
  .hero-panel {
    transform: none;
  }
  .fact-grid,
  .journey-grid,
  .bonus-grid,
  .game-grid,
  .promo-codes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact:nth-child(2) {
    border-right: 0;
  }
  .split-heading {
    gap: 18px;
  }
  .section {
    padding-block: 68px;
  }
  .bonus-feature {
    grid-template-columns: 1fr;
  }
  .casino-copy {
    grid-template-columns: 1fr 1fr;
  }
  .casino-copy > div:first-child {
    grid-column: 1 / 3;
  }
  .metric:first-of-type {
    border-left: 0;
  }
  .payment-notes,
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .phone-art {
    min-height: 450px;
  }
  .faq-layout {
    gap: 30px;
  }
  .faq-intro {
    position: static;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .brand {
    font-size: 22px;
  }
  .brand-mark {
    font-size: 29px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-badges {
    flex-wrap: wrap;
  }
  .fact-grid,
  .journey-grid,
  .bonus-grid,
  .game-grid,
  .feature-row,
  .trust-cards,
  .footer-top,
  .promo-codes-grid {
    grid-template-columns: 1fr;
  }
  .fact {
    min-height: 82px;
    border-right: 0;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .step-card {
    min-height: auto;
  }
  .sport-board {
    overflow-x: auto;
  }
  .sport-table {
    min-width: 620px;
  }
  .casino-copy {
    grid-template-columns: 1fr;
  }
  .casino-copy > div:first-child {
    grid-column: auto;
  }
  .metric {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
  }
  .contact-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-bar h2 {
    grid-row: auto;
  }
  .footer-bottom .page-shell {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
.logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

body > section.section {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

header {
  width: 100%;
}

body > section.section {
  margin-top: 28px;
  margin-bottom: 28px;
}

body > section.section[data-layout~="hero"] {
  width: 100%;
  margin-top: 0;
  color: white;
  background:
    radial-gradient(
      circle at 82% 32%,
      rgba(31, 163, 168, 0.3),
      transparent 31%
    ),
    linear-gradient(116deg, #05454b 0%, #09686f 58%, #064e54 100%);
}

body > section.section[data-layout~="fact-strip"] {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

body > section.section[data-layout~="section-tint"],
body > section.section[data-layout~="faq-section"] {
  width: 100%;
  background: var(--sand);
  border-block: 1px solid var(--line);
}

body > section.section[data-layout~="product-zone"] {
  width: 100%;
  color: white;
  background:
    radial-gradient(circle at 50% 0, #14787e, transparent 40%), var(--teal-950);
}

body > section.section[data-layout~="trust-zone"] {
  width: 100%;
  color: white;
  background: linear-gradient(110deg, #063f45 0 54%, #07555b 54%);
}

@media (max-width: 820px) {
  body > header,
  body > section.section,
  body > footer {
    width: min(100% - 28px, 1180px);
  }

  body > section.section[data-layout~="hero"],
  body > section.section[data-layout~="fact-strip"],
  body > section.section[data-layout~="section-tint"],
  body > section.section[data-layout~="product-zone"],
  body > section.section[data-layout~="trust-zone"],
  body > section.section[data-layout~="faq-section"] {
    width: 100%;
  }
}
