/* ==========================================================================
   20Bet Germany - additions on top of the lobby shell
   (base.css, layout.css and components.css are shared with the ES build)
   ========================================================================== */

/* anchor targets clear the fixed header */
.tb-prose h2,
.tb-prose h3 { scroll-margin-top: calc(var(--tb-head-h) + 16px); }

/* an element that sets display must not beat the hidden attribute */
[hidden] { display: none !important; }

/* ---------- tables with 6+ columns carry prose in most cells (up to 108
   characters) under headers like "Mindestauszahlung". As a grid in a 700px
   column they were rows 260px tall that scrolled sideways, so they take the
   card form at every width: each row a card, its first cell the title, the
   other cells labelled fields in a grid. A narrower table takes the same form
   from main.js (.is-fit-cards) only when it would scroll in its column: the
   5-column welcome table on the bonuses page did, by 27-57px at tablet widths. */
@media (min-width: 621px) {
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards),
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) tbody { display: block; min-width: 0; }
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) thead { display: none; }
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) tbody tr {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    border-bottom: 1px solid var(--tb-line-light);
  }
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) tbody tr:last-child { border-bottom: 0; }
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) td { min-width: 0; padding: 11px 16px 13px; border: 0; overflow-wrap: break-word; }
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) td::before {
    content: attr(data-l);
    display: block;
    margin-bottom: 3px;
    color: var(--tb-ink-dim);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) td:first-child {
    grid-column: 1 / -1;
    padding: 12px 16px;
    background: var(--tb-canvas);
    font-size: 15px;
    font-weight: 800;
  }
  :is(.tb-tbl--wide, .tb-tbl.is-fit-cards) td:first-child::before { display: none; }
}

/* phones: every table is cards. The table box itself stops being a table -
   as display:table it sized to the widest card's min-content and clipped the
   values past the card edge ("Bis zu 24 Stunde"). */
@media (max-width: 620px) {
  .tb-tbl--cards,
  .tb-tbl--cards tbody { display: block; width: 100%; min-width: 0; }
  .tb-tbl--cards td {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    column-gap: 12px;
    overflow-wrap: break-word;
  }
  .tb-tbl--cards td:first-child { display: block; }
  .tb-tbl--cards td::before { font-size: 11.5px; letter-spacing: 0; text-transform: none; }
}
/* German compounds outgrow a 42% label column on the narrowest phones:
   the label goes above its value */
@media (max-width: 420px) {
  .tb-tbl--cards td { grid-template-columns: minmax(0, 1fr); row-gap: 1px; }
}

/* ---------- subpage hero artwork */
.tb-phero__art { display: grid; place-items: center; }
.tb-phero__art img {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .45));
}
@media (max-width: 900px) { .tb-phero__art img { max-height: 240px; } }

/* ---------- promo grid on the bonuses page */
.tb-combos--promo { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }

/* ---------- pros / cons: the box title keeps its heading level */
.tb-prose .tb-pc__h { margin: 0 0 14px; font-size: 14px; line-height: 1.3; color: inherit; }
.tb-prose .tb-pc__h::after { display: none; }
.tb-pc__box--pro .tb-pc__h { color: var(--tb-green-d); }
.tb-pc__box--con .tb-pc__h { color: var(--tb-red); }
.tb-prose .tb-pc__p { margin: 0 0 12px; font-size: 14px; line-height: 1.6; }

/* ---------- FAQ: the question is a heading wrapping the toggle */
.tb-prose .tb-faq__h { margin: 0; font-size: inherit; font-weight: inherit; }
.tb-prose .tb-faq__h::after { display: none; }
.tb-faq__a p { margin: 0 0 10px; }
.tb-faq__a p:last-child { margin-bottom: 0; }

/* ---------- player comments */
.tb-rev__id--de b,
.tb-rev__id--de i { display: inline; }
.tb-rev__id--de .tb-rev__sep { margin: 0 4px; color: var(--tb-line-light); }
.tb-rev__id--de .tb-rev__score { font-weight: 800; color: var(--tb-ink); white-space: nowrap; }
.tb-rev__st .is-off { opacity: .22; }

/* ---------- overall score */
.tb-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  padding: 18px 22px;
  border-radius: var(--tb-r);
  background: linear-gradient(135deg, var(--tb-chrome-800), var(--tb-chrome-700));
  color: #f0feff;
  box-shadow: var(--tb-sh-2);
}
.tb-score__num {
  flex: none;
  font-family: var(--tb-font-cond);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--tb-gold);
}
.tb-score__num small { margin-left: 2px; font-size: 18px; color: var(--tb-on-dark-2); }
.tb-score__b { min-width: 0; }
.tb-score__st { display: flex; gap: 3px; margin-bottom: 6px; color: var(--tb-gold); }
.tb-score__st svg { width: 18px; height: 18px; }
.tb-score__st .is-part { opacity: .55; }
.tb-score__st .is-off { opacity: .2; }
.tb-prose .tb-score__lb { margin: 0; font-size: 17px; line-height: 1.35; color: #f0feff; }
.tb-prose .tb-score__lb strong { color: #f0feff; }

/* ---------- expert verdict and byline */
/* The head of this card is a dark gradient. byline_html writes the name as a
   <b>, which components.css paints white; expert_html writes it as an <h3>,
   which had no colour of its own and so inherited the prose ink meant for a
   light card - #003155 on #003b63, a contrast of 1.11:1. */
.tb-prose .tb-expert__n { margin: 0 0 2px; font-size: 15.5px; line-height: 1.35; color: #f0feff; }
.tb-prose .tb-expert__n::after { display: none; }
.tb-expert__body { padding: 16px 18px 18px; color: var(--tb-ink-2); }
.tb-prose .tb-expert__body p { margin: 0 0 10px; }
.tb-prose .tb-expert__body p:last-child { margin-bottom: 0; }
.tb-expert__method { font-size: 13.5px; color: var(--tb-ink-dim); }

/* ---------- app download buttons: the owner's label over two lines */
.tb-dl__t i { text-transform: none; letter-spacing: 0; font-size: 12px; }
.tb-band .tb-dls { margin: 0; }
/* the dark iOS button disappeared into the dark hero: store-badge white instead */
.tb-dl:not(.tb-dl--green) { background: #f0feff; color: var(--tb-ink); }
.tb-dl:not(.tb-dl--green) .tb-dl__t i { color: var(--tb-ink-dim); }

/* ---------- right rail: panels keep their height and the rail scrolls;
   shrinking them clipped the bet slip's footer (ANMELDEN) */
.tb-rail-r > * { flex-shrink: 0; }

/* ---------- hero bonus picker: the owner's banner text must never be
   ellipsised, so the picker grows and its two lines may wrap */
.tb-hero__pick--wide { max-width: 360px; height: auto; min-height: 46px; padding-top: 6px; padding-bottom: 6px; }
.tb-hero__pick-2 i,
.tb-hero__pick-2 b { white-space: normal; overflow: visible; text-overflow: clip; }

/* ==========================================================================
   Glücksrad - rail card, corner launcher and popup
   ========================================================================== */
button.tb-wheel-card {
  width: 100%;
  border: 0;
  font: inherit;
  color: #f0feff;
  text-align: left;
  cursor: pointer;
}
.tb-drawer .tb-wheel-card { margin: 0 0 14px; }

.tb-fw__tab {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 105;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px 0 5px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--tb-r-pill);
  background: linear-gradient(120deg, #004187, #005fd7 55%, #004cb4);
  color: #f0feff;
  font: 800 12px/1.1 var(--tb-font);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--tb-sh-dark);
  transition: transform .22s var(--tb-ease-out), opacity .2s var(--tb-ease), visibility .2s;
}
.tb-fw__tab:hover { transform: translateY(-2px); }
.tb-fw__tab .tb-wheel { width: 40px; height: 40px; }
.tb-fw.is-open .tb-fw__tab { opacity: 0; visibility: hidden; }
/* while the left rail is on screen its GLÜCKSRAD card is the trigger; the
   corner launcher would only sit on top of the rail's own links */
@media (min-width: 961px) { .tb-fw__tab { display: none; } }
/* phones: sit above the sticky offer bar */
@media (max-width: 960px) { .tb-fw__tab { bottom: 84px; } }
@media (max-width: 560px) {
  .tb-fw__tab { width: 52px; padding: 0; justify-content: center; }
  .tb-fw__lbl { display: none; }
}

.tb-fw__veil {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: none;
  background: rgba(6, 11, 20, .66);
}
.tb-fw.is-open .tb-fw__veil { display: block; }
@media (min-width: 700px) { .tb-fw__veil { display: none !important; } }

/* one fixed box: the result replaces space inside it, never grows it */
.tb-fw__pop {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 125;
  width: min(370px, calc(100vw - 36px));
  height: min(624px, calc(100vh - var(--tb-head-h) - 28px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px 18px 18px;
  border-radius: var(--tb-r-lg);
  background: var(--tb-card);
  color: var(--tb-ink);
  box-shadow: 0 20px 60px rgba(6, 11, 20, .5);
  animation: tb-fw-in .28s var(--tb-ease-out) backwards;
}
@keyframes tb-fw-in { from { opacity: 0; transform: translateY(14px) scale(.97); } }
@media (prefers-reduced-motion: reduce) { .tb-fw__pop { animation: none; } }
@media (max-width: 699px) {
  /* on a phone it is a sheet over the veil and may cover the header */
  .tb-fw__pop {
    left: 50%;
    bottom: 12px;
    z-index: 146;
    width: calc(100vw - 24px);
    height: min(624px, calc(100vh - 24px));
    transform: translateX(-50%);
    animation-name: tb-fw-in-sheet;
  }
  @keyframes tb-fw-in-sheet { from { opacity: 0; transform: translate(-50%, 14px); } }
}

.tb-fw__head { position: relative; flex: 0 0 auto; padding-right: 40px; }
.tb-fw__body {
  flex: 1 1 auto;
  min-height: 0;
  /* the disc is a square that rotates: its corners sweep past the edge,
     but only the inscribed circle is drawn, so clipping across is safe */
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.tb-fw__x {
  position: absolute;
  right: -4px;
  top: -6px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--tb-line-light);
  border-radius: 50%;
  background: var(--tb-canvas);
  color: var(--tb-ink-2);
  cursor: pointer;
}
.tb-fw__x:hover { background: var(--tb-canvas-2); color: var(--tb-ink); }
.tb-fw__x svg { width: 13px; height: 13px; }
.tb-fw__k { margin: 0 0 6px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--tb-orange); }
.tb-fw__t { margin: 0 0 8px; font-size: 19px; font-weight: 800; line-height: 1.25; }
.tb-fw__s { margin: 0 0 14px; font-size: 13px; line-height: 1.55; color: var(--tb-ink-2); }

.tb-fw__stage {
  position: relative;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.tb-fw.is-done .tb-fw__stage { max-width: 208px; }
.tb-fw.is-done .tb-fw__s { display: none; }
.tb-fw__disc { position: absolute; inset: 0; will-change: transform; }
.tb-fw__disc svg { display: block; width: 100%; height: 100%; }

.tb-fw__rim,
.tb-fw__ring { fill: none; stroke: rgba(22, 35, 58, .14); stroke-width: 1.6; }
.tb-fw__w { stroke: #f0feff; stroke-width: 1.6; }
.tb-fw__w--0 { fill: #f2622a; }
.tb-fw__w--1 { fill: #003155; }
.tb-fw__w--2 { fill: #f0feff; }
.tb-fw__w--3 { fill: #407900; }
.tb-fw__w--4 { fill: #e7f2d4; }
.tb-fw__w--5 { fill: #0060ff; }
.tb-fw__w--6 { fill: #f0feff; }
.tb-fw__w--7 { fill: #153d00; }
.tb-fw__l { font: 800 13.5px/1 var(--tb-font); fill: #f0feff; }
.tb-fw__l--0,
.tb-fw__l--2,
.tb-fw__l--4,
.tb-fw__l--6 { fill: #003155; }
/* the landing: the prize is emphasised, nothing is dimmed (dimming a wedge
   but not its label wrecks the label's contrast) */
.tb-fw.is-done .tb-fw__w.is-prize { stroke: #f0feff; stroke-width: 3.6; }
.tb-fw.is-done .tb-fw__disc { filter: drop-shadow(0 0 10px rgba(242, 98, 42, .55)); }

.tb-fw__pin {
  position: absolute;
  left: 50%;
  top: -2px;
  z-index: 3;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 20px solid var(--tb-orange);
  filter: drop-shadow(0 2px 3px rgba(12, 20, 37, .3));
}
.tb-fw__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 52%;
  height: 52%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 50%;
  background: var(--tb-card);
  text-align: center;
}
.tb-fw__go {
  max-width: 100%;
  padding: 11px 14px;
  border: 0;
  border-radius: var(--tb-r-pill);
  background: linear-gradient(180deg, var(--tb-orange-l), var(--tb-orange));
  color: #f0feff;
  font: 800 13px/1.2 var(--tb-font);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(242, 98, 42, .4);
}
.tb-fw__go[disabled] { opacity: .55; cursor: default; }

.tb-fw__out { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--tb-line-light); }
.tb-fw__out:not(.is-on) { display: none; }
.tb-fw__won { margin: 0 0 4px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--tb-green-d); }
.tb-fw__prize { margin: 0 0 6px; font-size: 18px; font-weight: 800; line-height: 1.25; }
.tb-fw__desc { margin: 0 0 12px; font-size: 13px; color: var(--tb-ink-2); }
.tb-fw__acts { display: flex; flex-wrap: wrap; gap: 8px; }
.tb-fw__acts .tb-btn { flex: 1 1 auto; }
.tb-fw__note { margin: 12px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--tb-ink-dim); }

/* ==========================================================================
   In-article banners: the owner's four offers between the sections
   .tb-bnr--art    a photo in its own 16:10 frame (never cropped), faded into a
                   ground read off the photo's edge strips (--bnr-a/b/c)
   .tb-bnr--wheel  the same with the prize wheel; opens the Glücksrad popup
   .tb-bnr--cut    a transparent cut-out on the light-waves texture
   .tb-bnr--type   no picture: the owner's figures set large on brand green
   .tb-duo         two offers side by side
   ========================================================================== */
/* a figure group of an owner headline ("120 EUR") never breaks across lines */
.tb-nw { white-space: nowrap; }

.tb-bnr {
  --bnr-a: #004d90;
  --bnr-b: #002e54;
  --bnr-c: #00233f;
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 44%);
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: var(--tb-r-lg);
  overflow: hidden;
  background: linear-gradient(100deg, var(--bnr-a) 0%, var(--bnr-b) 50%, var(--bnr-c) 100%);
  color: #f0feff;
  font: inherit;
  text-align: left;
  box-shadow: var(--tb-sh-2);
}
a.tb-bnr,
button.tb-bnr {
  cursor: pointer;
  transition: transform .28s var(--tb-ease), box-shadow .28s var(--tb-ease);
}
a.tb-bnr:hover,
button.tb-bnr:hover { transform: translateY(-3px); box-shadow: var(--tb-sh-3); }
a.tb-bnr:hover .tb-btn::after,
button.tb-bnr:hover .tb-btn::after { animation: tb-sheen .7s var(--tb-ease); }
a.tb-bnr:focus-visible,
button.tb-bnr:focus-visible { outline: 3px solid var(--tb-green-bright); outline-offset: 3px; }

.tb-bnr__b {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  padding: 26px 8px 26px 28px;
}
.tb-bnr__k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 5px 12px 5px 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--tb-r-pill);
  background: rgba(255, 255, 255, .08);
  color: var(--tb-green-bright);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tb-bnr__k svg { width: 14px; height: 14px; }
.tb-bnr__k .tb-wheel { width: 18px; height: 18px; box-shadow: 0 0 0 1.5px #f0feff; }
.tb-bnr__h {
  display: block;
  margin: 0 0 6px;
  font-size: clamp(20px, 4cqi, 27px);
  font-weight: 800;
  line-height: 1.18;
  text-wrap: balance;
}
.tb-bnr__s {
  display: block;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.45;
}
.tb-bnr__cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* the photo: its box IS 16:10, so cover crops nothing; it reaches under the
   copy, where the radial fade has already let the ground through */
.tb-bnr__pic {
  position: relative;
  display: block;
  align-self: center;
  margin-left: -26%;
  aspect-ratio: 16 / 10;
}
.tb-bnr__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 64% 62% at 60% 50%, #000000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 64% 62% at 60% 50%, #000000 55%, transparent 100%);
  transition: transform .5s var(--tb-ease);
}
a.tb-bnr:hover .tb-bnr__pic img,
button.tb-bnr:hover .tb-bnr__pic img { transform: scale(1.04); }

/* grounds measured on each photo: a = tint behind the copy, b = the photo's
   left edge, c = its right edge */
.tb-bnr--art.tb-bnr--casino1 { --bnr-a: #073b18; --bnr-b: #02230f; --bnr-c: #00200f; }
.tb-bnr--art.tb-bnr--casino2 { --bnr-a: #0000b5; --bnr-b: #00005a; --bnr-c: #000053; }
.tb-bnr--art.tb-bnr--reload { --bnr-a: #004163; --bnr-b: #001c30; --bnr-c: #001c30; }
.tb-bnr--art.tb-bnr--sport1 { --bnr-a: #4a1f07; --bnr-b: #ae5920; --bnr-c: #b45920; }
.tb-bnr--wheel { --bnr-a: #0000c8; --bnr-b: #000069; --bnr-c: #0b00cf; }
.tb-bnr--art.tb-bnr--sport1 .tb-bnr__k { color: #ffe2bf; }
.tb-bnr--art.tb-bnr--sport1 .tb-bnr__h,
.tb-bnr--art.tb-bnr--sport1 .tb-bnr__s { text-shadow: 0 2px 10px rgba(40, 14, 0, .45); }
/* an orange button disappears into the orange stadium: brand green instead */
.tb-bnr--art.tb-bnr--sport1 .tb-btn { --btn-bg: var(--tb-green-l); --btn-bg2: var(--tb-green-d); }
.tb-bnr--wheel .tb-bnr__k { color: var(--tb-gold); }

/* cut-outs on the light waves */
.tb-bnr--cut {
  grid-template-columns: minmax(0, 1fr) minmax(0, 36%);
  background: #001c32;
}
.tb-bnr--cut::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 24, .94) 0%, rgba(5, 11, 24, .72) 46%, rgba(5, 11, 24, .18) 100%),
    url("../img/band/wellen.webp") 70% 50% / cover no-repeat;
}
.tb-bnr--cut::after {
  content: "";
  position: absolute;
  right: 3%;
  top: 50%;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 169, 41, .34), transparent 66%);
  transform: translateY(-50%);
}
.tb-bnr--cut.tb-bnr--sport1::after { background: radial-gradient(circle, rgba(242, 98, 42, .38), transparent 66%); }
.tb-bnr--cut.tb-bnr--sport1 .tb-bnr__k { color: var(--tb-orange-l); }
.tb-bnr__obj {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 18px 24px 18px 0;
}
.tb-bnr__obj img {
  width: 100%;
  max-width: 240px;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .5));
  transition: transform .5s var(--tb-ease);
}
a.tb-bnr:hover .tb-bnr__obj img { transform: translateY(-4px) rotate(-4deg); }

/* the figures set large */
.tb-bnr--type {
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  background: linear-gradient(115deg, #3e7900 0%, #61a800 52%, #427e00 100%);
}
.tb-bnr--type::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 120% at 88% 0%, rgba(255, 255, 255, .22), transparent 60%),
    radial-gradient(50% 90% at 0% 100%, rgba(12, 20, 37, .3), transparent 70%);
}
.tb-bnr--type .tb-bnr__k { color: #f0feff; border-color: rgba(255, 255, 255, .24); background: rgba(12, 20, 37, .22); }
.tb-bnr__big {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin: 0 0 10px;
  line-height: 1;
}
.tb-bnr__n {
  font-family: var(--tb-font-cond);
  font-size: clamp(38px, 8cqi, 58px);
  font-weight: 700;
  letter-spacing: -.01em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .3);
}
.tb-bnr__m { font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; opacity: .92; }
.tb-bnr__x { flex-basis: 100%; font-size: clamp(18px, 3.6cqi, 25px); font-weight: 800; }
.tb-bnr--type .tb-bnr__s { margin: 0; color: rgba(255, 255, 255, .9); font-weight: 600; }
.tb-bnr--type .tb-bnr__cta { flex-direction: column; align-items: stretch; padding: 26px 28px 26px 0; }

/* two offers side by side */
.tb-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 12px;
  margin: 0 0 16px;
}
.tb-duo__i {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 20px;
  border-radius: var(--tb-r-lg);
  overflow: hidden;
  background: linear-gradient(150deg, #004d8b, #002a48);
  color: #f0feff;
  box-shadow: var(--tb-sh-2);
  transition: transform .28s var(--tb-ease), box-shadow .28s var(--tb-ease);
}
.tb-duo__i::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 219, 59, .3), transparent 68%);
  transition: transform .4s var(--tb-ease);
}
.tb-duo__i:hover { transform: translateY(-3px); box-shadow: var(--tb-sh-3); }
.tb-duo__i:hover::after { transform: scale(1.3); }
.tb-duo__i:focus-visible { outline: 3px solid var(--tb-green-bright); outline-offset: 3px; }
.tb-duo__i--sport { background: linear-gradient(150deg, #384f00, #182400); }
.tb-duo__i--sport::after { background: radial-gradient(circle, rgba(242, 98, 42, .36), transparent 68%); }
.tb-duo__ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--tb-green-l), var(--tb-green-d));
  box-shadow: 0 6px 16px rgba(76, 169, 41, .4);
}
.tb-duo__i--sport .tb-duo__ico { background: linear-gradient(150deg, #ff8f5c, #d94d18); box-shadow: 0 6px 16px rgba(217, 77, 24, .4); }
.tb-duo__ico svg { width: 24px; height: 24px; }
.tb-duo__b { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tb-duo__k { color: var(--tb-green-bright); font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tb-duo__i--sport .tb-duo__k { color: var(--tb-orange-l); }
.tb-duo__v { font-size: 19px; font-weight: 800; line-height: 1.25; }
.tb-duo__d { color: rgba(255, 255, 255, .74); font-size: 13px; line-height: 1.45; }
.tb-duo__go {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--tb-r-sm);
  background: linear-gradient(180deg, var(--tb-orange), #d94d18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tb-duo__go svg { width: 14px; height: 14px; transition: transform .25s var(--tb-ease); }
.tb-duo__i:hover .tb-duo__go svg { transform: translateX(4px); }

/* phones: the picture goes on top and fades down into the ground */
@media (max-width: 600px) {
  .tb-bnr,
  .tb-bnr--cut,
  .tb-bnr--type { grid-template-columns: minmax(0, 1fr); }
  .tb-bnr--art { background: linear-gradient(180deg, var(--bnr-b) 0%, var(--bnr-b) 40%, var(--bnr-a) 100%); }
  .tb-bnr__b { padding: 18px 18px 20px; }
  .tb-bnr__pic { order: -1; margin: 0; }
  .tb-bnr__pic img {
    -webkit-mask-image: linear-gradient(180deg, #000000 58%, transparent 100%);
            mask-image: linear-gradient(180deg, #000000 58%, transparent 100%);
  }
  .tb-bnr__obj { order: -1; padding: 20px 18px 0; }
  .tb-bnr__obj img { max-width: 170px; max-height: 150px; }
  .tb-bnr--cut::before {
    background:
      linear-gradient(180deg, rgba(5, 11, 24, .3) 0%, rgba(5, 11, 24, .82) 48%, rgba(5, 11, 24, .95) 100%),
      url("../img/band/wellen.webp") 70% 50% / cover no-repeat;
  }
  .tb-bnr--cut::after { right: auto; left: 50%; top: 96px; width: 62%; transform: translate(-50%, -50%); }
  .tb-bnr--type .tb-bnr__cta { padding: 0 18px 20px; }
  .tb-bnr__cta .tb-btn { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  a.tb-bnr,
  button.tb-bnr,
  .tb-duo__i,
  .tb-bnr__pic img,
  .tb-bnr__obj img { transition: none; }
}

/* ==========================================================================
   Flags: one sprite per page (kept at zero size, not display:none, or the
   <use> references stop rendering), referenced by the header chip, the hero
   picker, the switcher, the drawer and the footer strip
   ========================================================================== */
.tb-flags { position: absolute; width: 0; height: 0; overflow: hidden; }
.tb-flag { display: block; width: 100%; height: 100%; }
.tb-geo__flag .tb-flag { width: 22px; height: 15px; }
.tb-rail-i__ico .tb-flag { width: 19px; height: 13px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .15); }

/* ==========================================================================
   Country switcher (header): the flag and code of this site; the panel lists
   the fifteen, each pointing at the same page there. Below 760px the chip
   stays in the header beside the buttons as a flag-only square (the owner's
   PlanBet example); the drawer carries the list as well.
   ========================================================================== */
.tb-geo { position: relative; }
.tb-geo__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 9px 0 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--tb-r-sm);
  background: rgba(255, 255, 255, .05);
  color: var(--tb-on-dark-2);
  font: 700 12px/1 var(--tb-font);
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s var(--tb-ease), color .2s var(--tb-ease);
}
.tb-geo__btn:hover,
.tb-geo__btn[aria-expanded="true"] { background: var(--tb-chrome-600); color: #f0feff; }
.tb-geo__btn > svg { width: 12px; height: 12px; opacity: .8; transition: transform .2s var(--tb-ease); }
.tb-geo__btn[aria-expanded="true"] > svg { transform: rotate(180deg); }
.tb-geo__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 150;
  width: 530px;
  max-width: calc(100vw - 24px);
  padding: 12px;
  border: 1px solid var(--tb-line-dark);
  border-radius: var(--tb-r);
  background: var(--tb-chrome-800);
  box-shadow: var(--tb-sh-dark);
}
.tb-geo__h {
  margin: 0 4px 8px;
  color: var(--tb-on-dark-dim);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tb-geo__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3px; }
.tb-geo__i {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 9px;
  border-radius: var(--tb-r-sm);
  color: var(--tb-on-dark-2);
  line-height: 1.2;
  transition: background .15s var(--tb-ease), color .15s var(--tb-ease);
}
.tb-geo__i .tb-flag { width: 22px; height: 15px; flex: none; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .15); }
.tb-geo__i b { color: #f0feff; font-size: 12px; letter-spacing: .06em; }
.tb-geo__i span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--tb-on-dark-dim); font-size: 11.5px; }
.tb-geo__i:hover { background: var(--tb-chrome-600); color: #f0feff; }
.tb-geo__i:hover span { color: var(--tb-on-dark-2); }
.tb-geo__i.is-on { background: color-mix(in srgb, var(--tb-green) 22%, transparent); }
.tb-geo__i.is-on b { color: var(--tb-green-bright); }
@media (max-width: 1080px) { .tb-geo__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } .tb-geo__panel { width: 320px; } }
/* Phones: the code and the chevron go, the flag stays in a 40px square. The
   panel is anchored to the header ROW (the header is the positioned ancestor
   once .tb-geo is static), not to the chip: the chip sits mid-row behind two
   buttons of locale-dependent width, and a right:0 panel hung on it ran off
   the left edge. The panel owns the height cap, so a landscape phone scrolls
   the list instead of losing its tail under the fold. */
@media (max-width: 760px) {
  .tb-geo { position: static; }
  .tb-geo__btn { width: 40px; padding: 0; gap: 0; justify-content: center; }
  .tb-geo__cc,
  .tb-geo__btn > svg { display: none; }
  .tb-geo__panel {
    left: 8px;
    right: 8px;
    top: calc(100% + 6px);
    width: auto;
    max-width: none;
    max-height: calc(100vh - var(--tb-head-h) - 16px);
    max-height: calc(100dvh - var(--tb-head-h) - 16px);
    overflow: auto;
    overscroll-behavior: contain;
  }
}
/* 320px: two columns of 138px - the padding and gaps give the name the room
   "Magyarország" needs (measured by shots_geo.py: three names ellipsised) */
@media (max-width: 360px) {
  .tb-geo__btn { width: 36px; }
  .tb-geo__panel { padding: 10px; }
  .tb-geo__i { padding: 7px 6px; gap: 6px; }
  .tb-geo__i span { font-size: 11px; }
}
/* 320px: "Magyarország" still ran 3px over its 74px - the panel, the cell
   and the flag each yield 2px and the name a half point */
@media (max-width: 340px) {
  .tb-geo__panel { padding: 10px 8px; }
  .tb-geo__i { padding: 7px 5px; }
  .tb-geo__i .tb-flag { width: 20px; height: 14px; }
  .tb-geo__i span { font-size: 10.5px; }
}

/* ==========================================================================
   Footer: the rules column makes five, and the strip that links the other
   fourteen sites sits above the copyright line. Every rule is scoped under
   .tb-foot so the footer's own element rules cannot outrank it.
   ========================================================================== */
.tb-foot__cols { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; }
.tb-foot .tb-net {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--tb-line-light);
}
.tb-foot .tb-net__h {
  margin: 0 0 12px;
  color: var(--tb-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: center;
}
.tb-foot .tb-net__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tb-foot .tb-net__i {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px 0 8px;
  border: 1px solid var(--tb-line-light);
  border-radius: var(--tb-r-pill);
  background: var(--tb-canvas);
  color: var(--tb-ink-2);
  font-size: 12px;
  font-weight: 700;
  transition: border-color .2s var(--tb-ease), color .2s var(--tb-ease), transform .2s var(--tb-ease);
}
.tb-foot .tb-net__i .tb-flag { width: 20px; height: 13px; flex: none; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); }
.tb-foot .tb-net__i:hover { border-color: var(--tb-green); color: var(--tb-green); transform: translateY(-2px); }
@media (max-width: 960px) { .tb-foot__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .tb-foot__cols { grid-template-columns: 1fr; } }

/* ==========================================================================
   Player reviews: <blockquote> brings a 40px side margin from the browser's
   own stylesheet, which shrank every card inside its grid cell
   ========================================================================== */
.tb-rev { margin: 0; }

/* ==========================================================================
   Phones: tighter gutters and card padding throughout (the owner's note of
   2026-09-18). Three nested boxes - shell, card, list item - each gave up a
   few pixels, so a bullet's text now starts ~34px from the screen edge
   instead of ~52px.
   ========================================================================== */
@media (max-width: 960px) {
  .tb-shell,
  .tb-shell--wide { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 600px) {
  .tb-prose { padding: 18px 14px; }
  .tb-prose h2 { padding-left: 12px; font-size: 22px; }
  .tb-prose h3 { font-size: 17.5px; }
  .tb-bul { gap: 8px; }
  .tb-bul li { padding: 9px 11px; gap: 9px; }
  .tb-steps { gap: 9px; }
  .tb-steps li { padding: 11px 12px; gap: 11px; }
  .tb-pc__box { padding: 14px; }
  .tb-faq__q { padding: 13px 14px; font-size: 15px; }
  .tb-faq__a > div { padding: 0 14px 14px; }
  .tb-revs { gap: 10px; }
  .tb-rev { padding: 16px 14px 14px; }
  .tb-rev::before { left: 10px; }
  .tb-rev__t { padding-left: 18px; }
  .tb-agg { padding: 12px 14px; }
  .tb-score { padding: 14px 16px; gap: 14px; }
  .tb-expert__head { padding: 14px; }
  .tb-expert__body { padding: 14px 14px 16px; }
  .tb-tbl-wrap .tb-tbl--cards td { padding: 6px 12px; }
  .tb-anchors { padding: 12px 14px; gap: 6px; }
  .tb-anchor { padding: 7px 12px; }
  .tb-panel { padding: 14px; }
  .tb-band { padding: 14px; }
  .tb-strip { gap: 8px; }
  .tb-soffer { padding: 14px; }
  .tb-bnr__b { padding: 16px 14px 18px; }
  .tb-bnr__obj { padding: 18px 14px 0; }
  .tb-bnr--type .tb-bnr__cta { padding: 0 14px 18px; }
  .tb-duo { gap: 10px; }
  .tb-duo__i { padding: 16px; }
  .tb-phero__grid { padding: 22px 14px; }
  .tb-hero__left { padding: 20px 14px; }
  .tb-hero__right { padding: 18px 14px; }
  .tb-foot__wrap { padding: 22px 12px 20px; }
}
@media (max-width: 480px) {
  .tb-shell,
  .tb-shell--wide { padding-left: 8px; padding-right: 8px; }
}
