@charset "UTF-8";
/* Bizzo Casino Schweiz — switzerlandbizzocasino.com */
/* == BREAKPOINT MIXINS == */
/* ------------- TOKENS — Alpin palette (switzerlandbizzocasino.com) ------------- */
:root {
  /* Flächen — Graphit / Schiefer */
  --shade-base: #212734;
  --shade-deep: #171c26;
  --shade-core: #1c2130;
  --shade-slab: #2e3648;
  --shade-slab-alt: #28303f;
  /* Schrift */
  --ink-bright: #f8f9fc;
  --ink-body: #dee4ef;
  --ink-soft: #94a0b6;
  --ink-invert: #161a23;
  /* Akzente — Karmin / Firn */
  --tint-signal: #e8394a;
  --tint-ember: #9e1220;
  --tint-sun: #ffd15c;
  --tint-frost: #7fb2dc;
  --tint-flag: #f2913c;
  --tint-live: #ff6b6b;
  /* Verläufe */
  /* Fuellung dunkel genug, damit weisser Text ueberall >= 4.5:1 erreicht */
  --sweep-cta: linear-gradient(180deg, #d81f2f 0%, #8f0a17 100%);
  --sweep-cta-over: linear-gradient(180deg, #8f0a17 0%, #d81f2f 100%);
  --sweep-slab: linear-gradient(180deg, #2e3648 0%, #1e2431 100%);
  --sweep-sun: linear-gradient(180deg, #ffd15c 0%, #e08300 100%);
  --sweep-bar: linear-gradient(90deg, #ff5a63 0%, #8f0a17 100%);
  --sweep-snow: linear-gradient(180deg, #eef2f8 0%, #b9c4d6 100%);
  --sweep-frost: linear-gradient(180deg, #7fbde8 0%, #4a95d0 100%);
  /* Linien und Kanten */
  --edge: rgba(222, 228, 239, 0.13);
  --edge-lit: rgba(232, 57, 74, 0.42);
  /* Geometrie */
  --bend: 3px;
  --bend-lg: 8px;
  --bend-xl: 18px;
  /* Bewegung */
  --ease-base: 0.26s cubic-bezier(0.33, 1, 0.68, 1);
}

/* == RESET == */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
select {
  font: inherit;
}

/* == FONTS: self-hosted Poppins + Darumadrop One == */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Poppins-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Poppins-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Poppins-700-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Poppins-800-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Darumadrop One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DarumadropOne-400-latin.woff2") format("woff2");
}
/* --------------GLOBAL-------------- */
html {
  scroll-behavior: smooth;
  /* 64px header + 20px gap = top edge of the sidebar */
  scroll-padding-top: 84px;
}

body {
  background: radial-gradient(52% 38% at 12% 4%, rgba(127, 178, 220, 0.1) 0%, transparent 100%), radial-gradient(44% 32% at 90% 18%, rgba(232, 57, 74, 0.06) 0%, transparent 100%), linear-gradient(180deg, #262d3c 0%, var(--shade-base, #212734) 46%, #171c26 100%), var(--shade-core, #212734);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-bright);
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
  hyphens: none;
  overflow-wrap: break-word;
}

p {
  margin-top: 20px;
  width: 100%;
}
p:first-child {
  margin-top: 0;
}

.title + p {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

/* ----------------Content---------------- */
.panel,
.cover {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.panel {
  display: flex;
  padding: 20px;
  margin-top: 20px;
  border-radius: 20px;
  background: var(--sweep-slab, linear-gradient(180deg, #2e3648 0%, #1e2431 100%));
  border: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
}
@media (max-width: 850px) {
  .panel {
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .panel {
    padding: 10px;
  }
}

.content-bg > .backdrop + * {
  margin-top: 0;
}
.content-bg p {
  color: var(--ink-bright, #f8f9fc);
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1580px) {
  .cover {
    padding-left: calc(50% - 790px);
    padding-right: calc(50% - 790px);
  }
}

.panel > *,
.cover > * {
  display: block;
  position: relative;
}

.shell__buttons {
  display: none;
}
@media (max-width: 650px) {
  .shell__buttons {
    background: rgba(22, 26, 35, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .shell__buttons {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ----------------Main------------- */
.shell {
  position: relative;
  margin: 0 auto;
  display: flex;
}
.shell__wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  /* 64px — fixed header height */
  padding: 64px 10px 48px;
}
.shell__content {
  position: relative;
  flex: 1 1 calc(100% - 20px - 248px);
  min-width: 0;
  overflow: hidden;
  padding-bottom: 0;
}
@media (max-width: 1050px) {
  .shell__content {
    flex: 1 1 100%;
  }
}
@media (max-width: 650px) {
  .shell__buttons .button {
    width: calc(50% - 4px);
    padding-left: 12px;
    padding-right: 12px;
    margin: 0;
    min-width: 0;
  }
}

@media (max-width: 850px) {
  .shell,
  .topbar,
  .pagefoot {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ---------------------H2 H3--------------------- */
h2,
h3,
h4 {
  display: block;
  color: var(--tint-signal, #e8394a);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 100%;
  word-break: break-word;
}

p {
  color: var(--ink-body, #dee4ef);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

/* heading ornaments */
h2::before,
h2::after,
h3::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 17px;
  width: 83px;
}

h2 {
  align-self: center;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  padding: 6px 128px;
  width: auto;
  margin: 0 0 20px;
}
h2::before, h2::after {
  width: 116px;
  height: 39px;
}
h2::before {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='9' height='9' transform='matrix(1 0 0 -1 0 24)' fill='%23E8394A'/%3E%3Crect x='2.12132' width='23.9973' height='23.9973' transform='matrix(0.707107 0.707107 0.707107 -0.707107 78.0314 18)' stroke='%23E8394A' stroke-width='3'/%3E%3Crect x='0.707107' width='13.9977' height='13.9977' transform='matrix(0.707107 0.707107 0.707107 -0.707107 70.5471 19)' stroke='%23F8F9FC'/%3E%3Crect width='81' height='1' transform='matrix(1 0 0 -1 9 20)' fill='%23F8F9FC'/%3E%3C/svg%3E");
  left: 0;
}
h2::after {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='116' y='24' width='9' height='9' transform='rotate(180 116 24)' fill='%23E8394A'/%3E%3Crect x='36.4686' y='19.5' width='23.9973' height='23.9973' transform='rotate(135 36.4686 19.5)' stroke='%23E8394A' stroke-width='3'/%3E%3Crect x='44.9528' y='19.5' width='13.9977' height='13.9977' transform='rotate(135 44.9528 19.5)' stroke='%23F8F9FC'/%3E%3Crect x='107' y='20' width='81' height='1' transform='rotate(180 107 20)' fill='%23F8F9FC'/%3E%3C/svg%3E");
  right: 0;
}
@media (max-width: 850px) {
  h2 {
    font-size: 26px;
  }
}
@media (max-width: 650px) {
  h2 {
    font-size: 24px;
    padding: 0;
  }
  h2::before, h2::after {
    display: none;
  }
}
@media (max-width: 450px) {
  h2 {
    font-size: 22px;
  }
}

/* the element after a heading with margin-bottom must NOT add its own margin-top —
   otherwise the gap doubles */
.panel h2 + p,
.panel h2 + .split,
.panel h2 + .marks,
.panel h2 + .walk,
.panel h2 + .tablebox,
.panel h2 + div:has(> table),
.panel > h2 + .slotimg,
.panel h2 + .qa__list,
.panel h2 + .voices__carousel,
.panel h2 + .balance__cols,
.panel h2 + img,
.panel h3 + .split,
.panel h3 + .marks,
.panel h3 + .walk,
.panel h3 + .tablebox,
.panel h3 + div:has(> table),
.panel > h3 + .slotimg,
.panel h3 + img {
  margin-top: 0;
}

h2 + p {
  margin-top: 0;
}

h3 {
  font-weight: 800;
  font-size: 20px;
  padding: 2px 0 2px 79px;
  margin-top: 20px;
  margin-bottom: 20px;
}
h3:first-child {
  margin-top: 0;
}
h3::before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='19' viewBox='0 0 64 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-inside-1_3530_1427' fill='white'%3E%3Cpath d='M18 4.69238H38V13.6924H18V4.69238Z'/%3E%3C/mask%3E%3Cpath d='M18 4.69238V5.69238H38V4.69238V3.69238H18V4.69238ZM38 13.6924V12.6924H18V13.6924V14.6924H38V13.6924Z' fill='%23F8F9FC' mask='url(%23path-1-inside-1_3530_1427)'/%3E%3Crect x='46.0171' y='9.19238' width='12' height='12' transform='rotate(-45 46.0171 9.19238)' stroke='%23F8F9FC'/%3E%3Cmask id='path-4-inside-2_3530_1427' fill='white'%3E%3Cpath d='M38.24 9.19238L46.725 0.707381L55.21 9.19238L46.725 17.6774L38.24 9.19238Z'/%3E%3C/mask%3E%3Cpath d='M38.24 9.19238L37.5329 8.48528L36.8258 9.19238L37.5329 9.89949L38.24 9.19238ZM38.24 9.19238L38.9471 9.89949L47.4321 1.41449L46.725 0.707381L46.0179 0.000273895L37.5329 8.48528L38.24 9.19238ZM46.725 17.6774L47.4321 16.9703L38.9471 8.48528L38.24 9.19238L37.5329 9.89949L46.0179 18.3845L46.725 17.6774Z' fill='%23E8394A' mask='url(%23path-4-inside-2_3530_1427)'/%3E%3Crect y='8.69238' width='39' height='1' fill='%23E8394A'/%3E%3C/svg%3E%0A");
  left: 0;
  width: 64px;
  height: 19px;
}
@media (max-width: 650px) {
  h3 {
    padding-left: 60px;
  }
  h3::before {
    width: 50px;
    height: 15px;
  }
}
@media (max-width: 450px) {
  h3 {
    font-size: 18px;
    padding: 0;
  }
  h3::before {
    display: none;
  }
}

h3 + p {
  margin-top: 0;
}

h4 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--tint-signal, #e8394a);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 8px;
  text-transform: none;
}
@media (max-width: 450px) {
  h4 {
    font-size: 16px;
  }
}

h4 + p {
  margin-top: 0;
}

h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}

/* ---------------------SPECIAL--------------------- */
.image img,
.backdrop img {
  display: block;
  position: relative;
  margin: auto;
}

.backdrop {
  display: block !important;
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.backdrop img,
.backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/*
  Die FAQ-Antwort steht im Quelltext und bleibt ohne JavaScript sichtbar.
  Erst wenn das Inline-Snippet im <head> die Klasse `js` setzt, wird daraus
  ein Akkordeon — so ist der Inhalt auch ohne Skript lesbar.
*/
.js-qa-body {
  overflow: hidden;
}

.js .js-qa-body {
  display: none;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgb(248, 249, 252);
  line-height: 1;
}

use {
  fill: rgb(248, 249, 252);
  fill-rule: evenodd;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* == Shared content patterns == */
/* scroll-padding already gives 84px (sidebar level) — sections need no extra offset */
section[id] {
  scroll-margin-top: 0;
}

/* anchor on an h2 inside a card: +20px compensates the section padding
   so the card top lands exactly on the sidebar line */
.panel h2[id] {
  scroll-margin-top: 20px;
}

/* illustration inside a content section:
   `:where()` adds no specificity, so blocks can easily override this rule */
.panel img:not(:where(.icon, .brand-mark, .gflag, .pay)) {
  width: 100%;
  height: clamp(360px, 32vw, 480px);
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  display: block;
}
@media (max-width: 850px) {
  .panel img:not(:where(.icon, .brand-mark, .gflag, .pay)) {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .panel img:not(:where(.icon, .brand-mark, .gflag, .pay)) {
    height: 220px;
  }
}

/* media layers (section/banner backgrounds) fill the container and are exempt from the clamp */
.panel .backdrop img,
.panel .backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

/* ul list with an SVG diamond bullet */
.marks {
  margin-top: 20px;
  position: relative;
}
.marks:first-child, h3 + .marks, h2 + .marks, p + .marks {
  margin-top: 14px;
}
.marks > li {
  background: #2a3243;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  padding: 12px;
  position: relative;
  margin-left: 51px;
  width: calc(100% - 51px);
  /* bold lead label of an item — yellow for emphasis */
}
.marks > li b,
.marks > li strong {
  color: var(--tint-signal, #e8394a);
}
.marks > li + li {
  margin-top: 12px;
}
.marks > li::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='37.557' y='19.8389' width='25.0568' height='25.0568' transform='rotate(135 37.557 19.8389)' stroke='%23E8394A' stroke-width='3'/%3E%3Crect x='19.8392' y='13.5919' width='8.83412' height='8.83412' transform='rotate(45 19.8392 13.5919)' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% + 12px);
  margin: auto;
  height: 40px;
  width: 40px;
}
@media (max-width: 650px) {
  .marks > li {
    margin-left: 40px;
    width: calc(100% - 40px);
  }
  .marks > li::before {
    right: calc(100% + 9px);
    height: 30px;
    width: 30px;
  }
}

/* zweispaltiger Text-/Medien-Split */
.split {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  align-items: stretch;
}
.split > div {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 850px) {
  .split {
    flex-direction: column;
  }
}

/* phase-1 image placeholder: keeps the exact proportions of the future file
   (aspect-ratio modifiers) */
.slotimg {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: 1px dashed rgba(232, 57, 74, 0.35);
  background: repeating-linear-gradient(135deg, rgba(232, 57, 74, 0.06) 0 12px, transparent 12px 24px), rgba(22, 26, 35, 0.6);
  overflow: hidden;
}
.slotimg::after {
  content: attr(data-slot);
  display: block;
  padding: 10px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-soft, #94a0b6);
  word-break: break-all;
}
.slotimg--16x9 {
  aspect-ratio: 16/9;
}
.slotimg--21x9 {
  aspect-ratio: 21/9;
}
.slotimg--4x3 {
  aspect-ratio: 4/3;
}
.slotimg--3x1 {
  aspect-ratio: 3/1;
}
.slotimg--3x4 {
  aspect-ratio: 3/4;
}
.slotimg--1x1 {
  aspect-ratio: 1/1;
}
.slotimg--fill {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
}

/* spacing for media in the section flow (placeholder or real photo);
   no margin inside .split columns — otherwise the photo drops below the text */
.panel > .slotimg,
.panel > img:not(:where(.icon, .brand-mark, .gflag, .pay)) {
  margin-top: 20px;
}

/* split text column — content vertically centered */
.split > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* split photo column — media fills the full height of the text column */
.split > div:last-child {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 260px;
}
.split > div:last-child .slotimg,
.split > div:last-child img:not(:where(.icon, .brand-mark)) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  margin: 0;
}
@media (max-width: 850px) {
  .split > div:last-child {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .split > div:last-child {
    min-height: 220px;
  }
}

/* gespiegelter Split: Medien stehen im Markup zuerst, Text folgt.
   Die Spaltenrollen werden getauscht, die Lesereihenfolge bleibt. */
.split--flip > div:first-child {
  display: block;
}
.split--flip > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: static;
  overflow: visible;
  border-radius: 0;
  /* KEIN min-height: 0 — sonst kollabiert die Textspalte auf 0, sobald der
     Split bei @include tab zur Spalte wird, und der Inhalt läuft über das Foto */
  min-height: auto;
}
.split--flip > div:last-child .slotimg,
.split--flip > div:last-child img:not(:where(.icon, .brand-mark)) {
  position: static;
  inset: auto;
  height: clamp(360px, 32vw, 480px);
}
.split--flip > div:first-child:not(.backdrop) {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 260px;
}
.split--flip > div:first-child:not(.backdrop) .slotimg,
.split--flip > div:first-child:not(.backdrop) img:not(:where(.icon, .brand-mark)) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  margin: 0;
}
@media (max-width: 850px) {
  .split--flip > div:first-child:not(.backdrop) {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .split--flip > div:first-child:not(.backdrop) {
    min-height: 220px;
  }
}
@media (max-width: 850px) {
  .split--flip {
    flex-direction: column;
  }
}

/* Split mit Hintergrundfoto: die Textkarte liegt auf dem Bild */
.panel .split:has(> .backdrop) {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 20px;
  align-items: flex-start;
}
.panel .split:has(> .backdrop) > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  max-width: 680px;
  background: rgba(46, 54, 72, 0.72);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 8px);
  padding: 20px;
}
.panel .split:has(> .backdrop) {
  /* ab Tablet füllt die Karte die ganze Breite — sie soll nicht schmal
     an einer Kante kleben */
}
@media (max-width: 850px) {
  .panel .split:has(> .backdrop) {
    padding: 20px;
  }
  .panel .split:has(> .backdrop) > div:not(.backdrop) {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 650px) {
  .panel .split:has(> .backdrop) {
    padding: 15px;
  }
  .panel .split:has(> .backdrop) > div:not(.backdrop) {
    padding: 15px;
  }
}

/* Karte abwechselnd links und rechts, damit die Seite nicht monoton wirkt */
.payback .split:has(> .backdrop) > div:not(.backdrop),
.safeplay .split:has(> .backdrop) > div:not(.backdrop),
.welcome .split:has(> .backdrop):last-of-type > div:not(.backdrop) {
  margin-left: auto;
}

/*
  Blöcke, in denen das Foto die ganze Resthöhe des Textes trägt:
  die Medienspalte bleibt schmaler, der Text bekommt den Rest und startet oben.
*/
.club .split--flip > div:first-child,
.limited .split > div:last-child {
  flex: 0 0 min(36%, 440px);
}

.club .split--flip > div:last-child,
.limited .split > div:first-child {
  justify-content: flex-start;
}

@media (max-width: 850px) {
  .club .split--flip > div:first-child,
  .limited .split > div:last-child {
    flex: none;
  }
}
/* Bausteine */
/* == HEADER == */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, #2a3345 0%, #171c26 100%);
  border-bottom: 1px solid rgba(232, 57, 74, 0.35);
}
.topbar__wrap {
  display: flex;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 10px;
  min-height: 64px;
  gap: 20px;
}
.topbar__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 238px;
}
.topbar__logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 1050px) {
  .topbar__logo {
    width: auto;
  }
}
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.topbar__nav a {
  padding: 8px 12px;
  border-radius: var(--bend-lg, 10px);
  color: var(--ink-bright, #f8f9fc);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--ease-base), background var(--ease-base);
}
.topbar__nav a.is-active {
  color: var(--tint-signal, #e8394a);
}
@media (hover: hover) {
  .topbar__nav a:hover {
    color: var(--tint-signal, #e8394a);
    background: rgba(222, 228, 239, 0.06);
  }
}
.topbar__nav {
  /* diamond separator between menu items */
}
.topbar__nav a + a {
  position: relative;
  margin-left: 14px;
}
.topbar__nav a + a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(232, 57, 74, 0.5);
  border-radius: 1px;
}
@media (max-width: 900px) {
  .topbar__nav {
    display: none;
  }
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
}
.topbar__clock {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-body, #dee4ef);
  font-variant-numeric: tabular-nums;
}
.topbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-bright, #f8f9fc);
}
.topbar__lang .gflag {
  font-size: 22px;
  line-height: 1;
}
.topbar__lang img {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  object-fit: cover;
  display: block;
}
.topbar__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .topbar__buttons {
    display: none;
  }
}
.topbar {
  /* burger: yellow border, SVG bars morph into a cross */
}
.topbar__burger {
  display: none;
  border: 2px solid var(--tint-signal, #e8394a);
  padding: 10px;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}
.topbar__burger svg {
  display: block;
  margin: auto;
  width: 16px;
  height: 16px;
  fill: none;
}
.topbar__burger svg rect {
  transform-origin: 50% 50%;
  transition: all 0.5s;
  fill: var(--tint-signal, #e8394a);
}
.topbar__burger.is-open svg rect:nth-child(1) {
  x: -2px;
  y: 6px;
  width: 20px;
  transform: rotate(225deg);
}
.topbar__burger.is-open svg rect:nth-child(2) {
  transform: scale(0, 2);
}
.topbar__burger.is-open svg rect:nth-child(3) {
  x: -2px;
  y: 6px;
  width: 20px;
  transform: rotate(135deg);
}
@media (max-width: 900px) {
  .topbar__burger {
    display: block;
  }
}

/* scroll progress bar under the header */
.readbar {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 48;
  height: 3px;
  background: rgba(232, 57, 74, 0.12);
  pointer-events: none;
}
.readbar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #e8394a 0%, #9e1220 100%);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 8px rgba(232, 57, 74, 0.55);
  transition: width 0.12s linear;
}

/* mobile menu — dropdown panel under the header */
.dropnav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 49;
  background: #2a3243;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0 25px;
  transition: max-height 0.5s ease, visibility 0.5s ease, padding 0.5s ease;
}
.dropnav.is-open {
  max-height: calc(100vh - 64px);
  max-height: calc(100dvh - 64px);
  overflow: auto;
  visibility: visible;
  padding: 25px;
}
.dropnav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dropnav__links a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--ink-bright, #f8f9fc);
  transition: color var(--ease-base);
}
.dropnav__links a.is-active {
  font-weight: 700;
  color: var(--tint-signal, #e8394a);
}
.dropnav__links a:hover {
  color: var(--tint-signal, #e8394a);
}
.dropnav__links a {
  /* diamond separator below each item */
}
.dropnav__links a:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 37px;
}
.dropnav__links a:not(:last-child)::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='12' viewBox='0 0 30 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.4' y='6' width='8' height='1' fill='url(%23paint0_linear_3530_3408)'/%3E%3Crect opacity='0.4' x='22' y='6' width='8' height='1' fill='url(%23paint1_linear_3530_3408)'/%3E%3Crect x='15' y='0.707107' width='6.99997' height='7.00001' transform='rotate(45 15 0.707107)' stroke='%23E8394A'/%3E%3Crect x='15' y='4.24264' width='1.99998' height='2.00002' transform='rotate(45 15 4.24264)' fill='%23E8394A'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3530_3408' x1='0' y1='6.5' x2='8' y2='6.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23F8F9FC'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_3530_3408' x1='30' y1='6.5' x2='22' y2='6.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23F8F9FC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 12px;
  width: 30px;
}
.dropnav__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

body.no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

/* == BUTTONS == */
/* pulsierender Schein der Haupt-CTA */
@keyframes sbc-pulse-cta {
  0%, 100% {
    box-shadow: 0 0 10px rgba(192, 13, 30, 0.45), 0 6px 18px -6px rgba(192, 13, 30, 0.55);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 90, 99, 0.8), 0 6px 22px -6px rgba(192, 13, 30, 0.7);
  }
}
@keyframes sbc-pulse-snow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(222, 228, 239, 0.24), 0 8px 20px -8px rgba(22, 26, 35, 0.6);
  }
  50% {
    box-shadow: 0 0 22px rgba(222, 228, 239, 0.5), 0 8px 24px -8px rgba(22, 26, 35, 0.75);
  }
}
/* Kopf, Anmelden — Zweitbutton: transparent mit Karminkante */
.topbar__login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 41px;
  padding: 0 18px;
  border-radius: var(--bend-lg, 10px);
  border: 1px solid rgba(232, 57, 74, 0.6);
  background: transparent;
  color: var(--ink-bright, #f8f9fc);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--ease-base), border-color var(--ease-base), color var(--ease-base);
}
@media (hover: hover) {
  .topbar__login:hover {
    background: rgba(232, 57, 74, 0.12);
    border-color: var(--tint-signal, #e8394a);
    color: var(--tint-signal, #e8394a);
  }
}
.topbar__login:focus-visible {
  outline: 2px solid var(--tint-signal, #e8394a);
  outline-offset: 2px;
}

/* Kopf, Registrieren — Hauptbutton: Karminverlauf */
.topbar__signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 24px;
  border-radius: var(--bend-lg, 10px);
  background: var(--sweep-cta, linear-gradient(180deg, #d81f2f 0%, #8f0a17 100%));
  color: var(--ink-bright, #f8f9fc);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px -6px rgba(192, 13, 30, 0.55);
  animation: sbc-pulse-cta 2.8s ease-in-out infinite;
  transition: filter var(--ease-base), transform var(--ease-base);
}
@media (hover: hover) {
  .topbar__signup:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -8px rgba(192, 13, 30, 0.7);
  }
}
.topbar__signup:focus-visible {
  outline: 2px solid var(--tint-signal, #e8394a);
  outline-offset: 2px;
}

/* Inhalt, Haupt-CTA — Karminverlauf mit Glanzstreifen */
.act__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  margin-top: 20px;
  border-radius: var(--bend-lg, 10px);
  background: var(--sweep-cta, linear-gradient(180deg, #d81f2f 0%, #8f0a17 100%));
  color: var(--ink-bright, #f8f9fc);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0 10px 26px -10px rgba(192, 13, 30, 0.65);
  animation: sbc-pulse-cta 2.8s ease-in-out infinite;
  transition: filter var(--ease-base), transform var(--ease-base);
}
.act__button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: sbc-cta-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}
@media (hover: hover) {
  .act__button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(192, 13, 30, 0.8);
  }
}
.act__button:focus-visible {
  outline: 2px solid var(--tint-signal, #e8394a);
  outline-offset: 2px;
}

@keyframes sbc-cta-sheen {
  0%, 62% {
    left: -60%;
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  86%, 100% {
    left: 130%;
    opacity: 0;
  }
}
/* Inhalt, Download — Firn-Button für die Stores */
.get__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 268px;
  max-width: 100%;
  height: 56px;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: var(--bend-lg, 10px);
  background: var(--sweep-snow, linear-gradient(180deg, #eef2f8 0%, #b9c4d6 100%));
  color: var(--ink-invert, #161a23);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(22, 26, 35, 0.6);
  border: 1px solid rgba(232, 57, 74, 0.35);
  animation: sbc-pulse-snow 3.4s ease-in-out infinite;
  transition: filter var(--ease-base), transform var(--ease-base);
}
.get__button svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  fill: var(--ink-invert, #161a23);
}
@media (hover: hover) {
  .get__button:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
  }
}
.get__button:focus-visible {
  outline: 2px solid var(--ink-bright, #f8f9fc);
  outline-offset: 2px;
}

/* Buttons im Textfluss — linksbündig */
.panel > .act__button,
.panel > .get__button {
  align-self: flex-start;
}

/* Dasselbe in einer Split-Spalte: die Spalte ist ein Flex-Container, sonst
   würde der Button über die volle Spaltenbreite gestreckt */
.split > div > .act__button,
.split > div > .get__button {
  align-self: flex-start;
}

/* download button placed directly in a section: standard 268×56 size, not 100%
   (overrides the generic .panel > * { display: block }) */
.panel > .get__button {
  display: inline-flex;
  width: 268px;
}

/* row of download buttons: spacing via margins only, no gap */
.get__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.get__row .get__button {
  margin: 20px 14px 0 0;
}

/* == SIDEBAR == */
.railbar {
  flex: 0 0 248px;
  width: 248px;
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 12px;
  border-radius: var(--bend-xl, 14px);
  background: linear-gradient(180deg, #2b3346 0%, #1e2431 100%);
  border: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
}
.railbar::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1050px) {
  .railbar {
    display: none;
  }
}

/* zwei Aktionsbuttons: Glückrad + Missionen */
.railbar__promos {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.railbar__feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 52px;
  padding: 0 12px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0f131b;
  background: linear-gradient(180deg, #7fbde8 0%, #63a9dd 48%, #4a95d0 100%);
  border: 1px solid rgba(127, 189, 232, 0.5);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 7px 18px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  /* sheen highlight sweeping across the button on hover */
}
.railbar__feature::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: -55%;
  bottom: -55%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: skewX(-20deg);
  transition: left 0.42s ease;
}
@media (hover: hover) {
  .railbar__feature:hover {
    filter: brightness(1.1) saturate(1.08);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 15px rgba(99, 169, 221, 0.42);
  }
  .railbar__feature:hover::after {
    left: 125%;
  }
  .railbar__feature:hover .spin__wheel {
    animation-duration: 1.25s;
    filter: brightness(1.08) drop-shadow(0 2px 4px rgba(15, 19, 27, 0.5));
  }
  .railbar__feature:hover .crate {
    transform: translateY(-2px) scale(1.04);
  }
}
.railbar__feature:active {
  transform: translateY(1px) scale(0.99);
}

/* wheel: the disc spins continuously under a static frame */
.spin {
  position: relative;
  width: 58px;
  height: 52px;
  display: block;
  align-self: stretch;
  flex: 0 0 auto;
}
.spin img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
}
.spin__wheel {
  width: 44px;
  height: 44px;
  animation: sbc-wheel-spin 3.2s linear infinite;
  filter: drop-shadow(0 2px 3px rgba(15, 19, 27, 0.42));
}
.spin__frame {
  z-index: 2;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -49%);
  filter: drop-shadow(0 2px 3px rgba(18, 22, 30, 0.5));
}

@keyframes sbc-wheel-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Missions chest */
.crate {
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  margin: 0 0 0 5px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.railbar__menu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
  padding-top: 8px;
}
.railbar__menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--bend-lg, 10px);
  color: var(--ink-body, #dee4ef);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--ease-base), color var(--ease-base);
}
.railbar__menu li a svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--tint-signal, #e8394a);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) {
  .railbar__menu li a:hover {
    background: rgba(222, 228, 239, 0.08);
    color: var(--ink-bright, #f8f9fc);
  }
}
.railbar__menu .tag {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100%;
  background: var(--tint-flag, #f2913c);
  color: var(--ink-bright, #f8f9fc);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Application card: text + phone in the corner */
.railbar__app {
  display: block;
  background-color: #28303f;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  box-shadow: 1px 3px 0 0 #1a202b;
  position: relative;
  padding: 21px 75px 18px 12px;
  transition: color var(--ease-base);
}

.railbar-promo__text {
  font-size: 9px;
  color: var(--ink-soft, #94a0b6);
  line-height: 12px;
  transition: color var(--ease-base);
}
.railbar-promo__text span {
  font-weight: 900;
  font-size: 16px;
  color: var(--ink-bright, #fff);
  line-height: 100%;
  display: block;
  margin-bottom: 5px;
  transition: color var(--ease-base);
}

@media (hover: hover) {
  .railbar__app:hover .railbar-promo__text,
  .railbar__app:hover .railbar-promo__text span {
    color: var(--tint-signal, #e8394a);
  }
}
.railbar-promo__img {
  max-width: 75px;
  position: absolute;
  bottom: 0;
  right: 7px;
}
.railbar-promo__img img {
  display: block;
}

/* == Navigation (TOC) == */
.jumpto {
  border-top: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
  padding-top: 10px;
}
.jumpto__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 8px;
  border-radius: var(--bend-lg, 10px);
  color: var(--tint-signal, #e8394a);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--ease-base);
}
.jumpto__toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--tint-signal, #e8394a);
  border-bottom: 2px solid var(--tint-signal, #e8394a);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}
.jumpto__toggle.is-open::after {
  transform: rotate(-135deg);
}
@media (hover: hover) {
  .jumpto__toggle:hover {
    background: rgba(222, 228, 239, 0.06);
  }
}
.jumpto__list {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  scrollbar-width: none;
  transition: max-height 0.45s ease, visibility 0.45s ease, margin-top 0.45s ease;
}
.jumpto__list::-webkit-scrollbar {
  display: none;
}
.jumpto__list.is-open {
  max-height: 56vh;
  overflow-y: auto;
  visibility: visible;
  margin-top: 6px;
}
.jumpto__list a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink-body, #dee4ef);
  transition: background var(--ease-base), color var(--ease-base);
}
@media (hover: hover) {
  .jumpto__list a:hover {
    background: rgba(222, 228, 239, 0.07);
    color: var(--tint-signal, #e8394a);
  }
}

/* mobile TOC below the hero */
.jumpto--inline {
  display: none;
  border: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
  border-radius: var(--bend-lg, 10px);
  background: linear-gradient(180deg, #2b3346 0%, #1e2431 100%);
  padding: 8px 10px;
  margin-top: 20px;
}
@media (max-width: 1050px) {
  .jumpto--inline {
    display: block;
  }
}

/* == FOOTER == */
.pagefoot {
  padding: 40px 20px 26px;
  background: linear-gradient(180deg, #252c3b 0%, #1a1f2a 100%);
  border-top: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
}
.pagefoot__wrap {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.pagefoot {
  /* country chips */
}
.pagefoot__geo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.pagefoot__geo a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 7px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
  font-size: 12.5px;
  color: var(--ink-body, #dee4ef);
  transition: border-color var(--ease-base), background var(--ease-base), color var(--ease-base);
}
.pagefoot__geo a span.gflag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
}
@media (hover: hover) {
  .pagefoot__geo a:hover {
    border-color: rgba(232, 57, 74, 0.5);
    background: rgba(232, 57, 74, 0.08);
    color: var(--tint-signal, #e8394a);
  }
}
.pagefoot__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 57, 74, 0.45) 50%, transparent 100%);
}
.pagefoot__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.pagefoot__links a {
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-body, #dee4ef);
  transition: color var(--ease-base);
}
@media (hover: hover) {
  .pagefoot__links a:hover {
    color: var(--tint-signal, #e8394a);
  }
}
.pagefoot__links a + a {
  border-left: 1px solid rgba(232, 57, 74, 0.4);
}
.pagefoot {
  /* payment logos */
}
.pagefoot__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pagefoot__pay li {
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 122px;
}
.pagefoot__pay li img {
  display: block;
  max-height: 45px;
  width: auto;
}
.pagefoot__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
  padding-top: 20px;
}
@media (max-width: 650px) {
  .pagefoot__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.pagefoot__disclaimer {
  max-width: 860px;
  font-size: 12.5px;
  color: var(--ink-soft, #94a0b6);
}
.pagefoot__disclaimer b {
  display: block;
  color: var(--ink-body, #dee4ef);
  margin-top: 8px;
}
.pagefoot__age {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sweep-sun, linear-gradient(180deg, #ffd15c 0%, #e08300 100%));
  color: var(--ink-invert, #161a23);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(224, 131, 0, 0.45);
  animation: sbc-age-glow 4s ease-in-out infinite;
}

@keyframes sbc-age-glow {
  0%, 100% {
    box-shadow: 0 0 14px rgba(224, 131, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 26px rgba(224, 131, 0, 0.6);
  }
}
/* == SCROLL TO TOP == */
.gotop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sweep-cta, linear-gradient(180deg, #d81f2f 0%, #8f0a17 100%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow var(--ease-base);
  box-shadow: 0 8px 20px -8px rgba(192, 13, 30, 0.7);
}
.gotop svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--ink-bright, #f8f9fc);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gotop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) {
  .gotop:hover {
    box-shadow: 0 12px 26px -8px rgba(192, 13, 30, 0.9);
  }
}
@media (max-width: 650px) {
  .gotop {
    bottom: 78px;
  }
}

/* == COOKIE BANNER == */
.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: var(--bend-xl, 14px);
  border: 1px solid rgba(232, 57, 74, 0.4);
  background: rgba(22, 26, 35, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}
.consent.is-visible {
  display: flex;
}
.consent p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-body, #dee4ef);
}
.consent p a {
  color: var(--tint-signal, #e8394a);
  text-decoration: underline;
}
.consent__actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.consent__accept {
  padding: 9px 18px;
  border-radius: var(--bend-lg, 10px);
  background: var(--sweep-cta, linear-gradient(180deg, #d81f2f 0%, #8f0a17 100%));
  color: var(--ink-bright, #f8f9fc);
  font-weight: 700;
  font-size: 13px;
  transition: filter var(--ease-base);
}
@media (hover: hover) {
  .consent__accept:hover {
    filter: brightness(1.08);
  }
}
.consent__decline {
  padding: 9px 14px;
  border-radius: var(--bend-lg, 10px);
  border: 1px solid var(--edge, rgba(222, 228, 239, 0.25));
  color: var(--ink-soft, #94a0b6);
  font-weight: 600;
  font-size: 13px;
  transition: color var(--ease-base), border-color var(--ease-base);
}
@media (hover: hover) {
  .consent__decline:hover {
    color: var(--ink-bright, #f8f9fc);
    border-color: var(--ink-bright, #f8f9fc);
  }
}
@media (max-width: 650px) {
  .consent {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .consent__actions {
    justify-content: center;
  }
}

/* == WELCOME SPLASH (created by JS on top of the visible page) == */
.sbc-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 21, 28, 0.72) 0%, rgba(22, 26, 35, 0.85) 100%), var(--shade-base, #212734);
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.sbc-loader.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.sbc-loader__letters {
  position: relative;
  display: flex;
  gap: 0.06em;
  font-family: "Darumadrop One", "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(44px, 9vw, 110px);
  color: var(--tint-signal, #e8394a);
  text-shadow: 0 4px 0 rgba(120, 24, 34, 0.8), 0 10px 30px rgba(0, 0, 0, 0.6);
}
.sbc-loader span {
  display: inline-block;
  animation: sbc-letter-fly var(--fly-dur, 1.4s) cubic-bezier(0.22, 0.85, 0.3, 1) both;
  animation-delay: var(--fly-delay, 0s);
}
.sbc-loader {
  /* locale row: flag + country, fades in after the letters */
}
.sbc-loader__geo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-bright, #f8f9fc);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: sbc-geo-reveal 0.4s ease-out 1.3s forwards;
}
.sbc-loader__geo .gflag {
  font-size: 1.35em;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

@keyframes sbc-geo-reveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* == page-transition mini loader == */
.sbc-pt {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(46% 42% at 50% 50%, rgba(46, 54, 72, 0.9) 0%, rgba(22, 26, 35, 0.97) 100%), var(--shade-base, #212734);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.sbc-pt.is-on {
  opacity: 1;
  pointer-events: auto;
}
.sbc-pt.is-off {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.sbc-pt__wheel {
  position: relative;
  width: 92px;
  height: 96px;
  filter: drop-shadow(0 8px 26px rgba(232, 57, 74, 0.35));
}
.sbc-pt__wheel img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
}
.sbc-pt__wheel .sbc-pt__disc {
  width: 72px;
  height: 72px;
  animation: sbc-wheel-spin 1.1s linear infinite;
}
.sbc-pt__wheel .sbc-pt__frame {
  width: 88px;
  height: 92px;
  transform: translate(-50%, -49%);
}

@keyframes sbc-letter-fly {
  0% {
    transform: translate(var(--fly-x, 0), var(--fly-y, 0)) rotate(var(--fly-r, 0deg)) scale(1.6);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
/* == HERO (#prime) == */
.lead {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px 0 0;
  padding: 0;
  border-radius: 20px;
  background: #171c26;
  /* scrim over the background image */
}
.lead::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(91deg, rgba(18, 21, 28, 0.85) 0%, rgba(18, 21, 28, 0.45) 45%, transparent 72%);
  pointer-events: none;
}
.lead .backdrop {
  z-index: 0;
  /* the character stands on the right of the frame — stays in view as the viewport narrows */
}
.lead .backdrop img,
.lead .backdrop video,
.lead .backdrop .slotimg {
  object-position: 90% top;
}
@media (max-width: 767px) {
  .lead .backdrop img,
  .lead .backdrop video,
  .lead .backdrop .slotimg {
    object-position: 100% top;
  }
}
.lead__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 840px;
  width: 100%;
  margin-right: auto;
  padding: 34px 30px;
  border-radius: 10px;
}
@media (max-width: 850px) {
  .lead__wrap {
    background: rgba(22, 26, 35, 0.7);
    backdrop-filter: blur(2px);
    /* stretch respects margins — equal offsets on the left and right */
    width: auto;
    align-self: stretch;
    margin: 20px;
    padding: 24px 20px;
  }
}
@media (max-width: 650px) {
  .lead__wrap {
    align-items: center;
    text-align: center;
    margin: 15px;
  }
}
.lead__rating {
  font-size: 14px;
  color: var(--ink-soft, #94a0b6);
}
.lead__rating b {
  color: var(--tint-signal, #e8394a);
  font-size: 22px;
  font-weight: 800;
  margin-left: 6px;
}
.lead__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: auto;
  font-size: 13px;
  color: var(--ink-soft, #94a0b6);
}
.lead__breadcrumbs a {
  color: var(--tint-signal, #e8394a);
  transition: color var(--ease-base);
}
@media (hover: hover) {
  .lead__breadcrumbs a:hover {
    color: var(--ink-bright, #f8f9fc);
  }
}
.lead__breadcrumbs li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--ink-soft, #94a0b6);
}
.lead h1 {
  margin-top: 14px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ink-bright, #f8f9fc);
}
@media (max-width: 850px) {
  .lead h1 {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .lead h1 {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .lead h1 {
    font-size: 24px;
  }
}
.lead__text {
  margin-top: 12px;
  max-width: 620px;
  font-size: 14px;
  color: var(--ink-body, #dee4ef);
}
@media (max-width: 767px) {
  .lead {
    min-height: 420px;
  }
}

/* == BONUS BANNER: framed card over a background image == */
.offer {
  justify-content: center;
  align-items: flex-start;
  min-height: 425px;
  padding: 20px 20px 20px 6.2%;
  border: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
}
.offer__bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.offer__bg img,
.offer__bg .slotimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  margin: 0;
}
@media (max-width: 850px) {
  .offer__bg img,
  .offer__bg .slotimg {
    object-position: 100%;
  }
}
.offer__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid rgba(232, 57, 74, 0.6);
  border-radius: 12px;
  padding: 32px 20px;
  max-width: 653px;
  width: 100%;
}
.offer__title {
  display: block;
  color: var(--tint-signal, #e8394a);
  font-weight: 700;
  font-size: 31px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 850px) {
  .offer__title {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .offer__title {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .offer__title {
    font-size: 22px;
  }
}
.offer__text {
  position: relative;
  width: auto;
  margin-top: 20px;
  padding: 8px 131px;
  color: var(--ink-bright, #f8f9fc);
  font-weight: 900;
  font-size: 20px;
  line-height: 115%;
  text-transform: uppercase;
}
.offer__text::before, .offer__text::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 39px;
  width: 116px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.offer__text::before {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='9' height='9' transform='matrix(1 0 0 -1 0 24)' fill='%23E8394A'/%3E%3Crect x='2.12132' width='23.9973' height='23.9973' transform='matrix(0.707107 0.707107 0.707107 -0.707107 78.0313 18)' stroke='%23E8394A' stroke-width='3'/%3E%3Crect x='0.707107' width='13.9977' height='13.9977' transform='matrix(0.707107 0.707107 0.707107 -0.707107 70.5471 19)' stroke='%23F8F9FC'/%3E%3Crect width='81' height='1' transform='matrix(1 0 0 -1 9 20)' fill='%23F8F9FC'/%3E%3C/svg%3E%0A");
  left: 0;
}
.offer__text::after {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='116' y='24' width='9' height='9' transform='rotate(180 116 24)' fill='%23E8394A'/%3E%3Crect x='36.4686' y='19.5' width='23.9973' height='23.9973' transform='rotate(135 36.4686 19.5)' stroke='%23E8394A' stroke-width='3'/%3E%3Crect x='44.9529' y='19.5' width='13.9977' height='13.9977' transform='rotate(135 44.9529 19.5)' stroke='%23F8F9FC'/%3E%3Crect x='107' y='20' width='81' height='1' transform='rotate(180 107 20)' fill='%23F8F9FC'/%3E%3C/svg%3E%0A");
  right: 0;
}
@media (max-width: 650px) {
  .offer__text {
    font-size: 18px;
    padding: 8px 0;
  }
  .offer__text::before, .offer__text::after {
    display: none;
  }
}
.offer__button {
  min-width: 153px;
  margin-top: 20px;
}
@media (max-width: 850px) {
  .offer {
    min-height: 300px;
    padding: 20px;
    align-items: center;
  }
  .offer__wrap {
    background-color: rgba(38, 45, 60, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(232, 57, 74, 0.6);
    border-radius: 6px;
    padding: 15px;
  }
}

/* == TABELLEN: Flex-Zeilen, Karminkopf, horizontaler Scroll bleibt == */
.panel div:has(> table),
.panel .tablebox {
  width: 100%;
  margin-top: 20px;
  border-radius: var(--bend-lg, 8px);
  font-size: 15px;
  color: var(--ink-bright, #f8f9fc);
  overflow: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--tint-signal, #e8394a) rgba(222, 228, 239, 0.14);
}
.panel div:has(> table)::-webkit-scrollbar,
.panel .tablebox::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.panel div:has(> table)::-webkit-scrollbar-track,
.panel .tablebox::-webkit-scrollbar-track {
  background: rgba(222, 228, 239, 0.14);
  border-radius: 6px;
}
.panel div:has(> table)::-webkit-scrollbar-thumb,
.panel .tablebox::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ff5a63 0%, #9e1220 100%);
  border-radius: 6px;
}
.panel div:has(> table) > table,
.panel .tablebox > table {
  width: 100%;
  border-collapse: collapse;
}
.panel div:has(> table) > table tr,
.panel .tablebox > table tr {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 13px 18px;
}
.panel div:has(> table) > table tr + tr,
.panel .tablebox > table tr + tr {
  margin-top: 3px;
}
.panel div:has(> table) > table tr > *,
.panel .tablebox > table tr > * {
  flex: 1;
  padding: 0;
  text-align: left;
}
.panel div:has(> table) > table thead tr,
.panel .tablebox > table thead tr {
  background: linear-gradient(180deg, #d0192a 0%, #8e0f19 100%);
  line-height: 140%;
  color: var(--ink-bright, #f8f9fc);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.panel div:has(> table) > table th,
.panel .tablebox > table th {
  font-weight: 700;
}
.panel div:has(> table) > table tbody tr,
.panel .tablebox > table tbody tr {
  background: #2a3243;
  line-height: 22px;
  border-left: 3px solid transparent;
}
.panel div:has(> table) > table,
.panel .tablebox > table {
  /* Zebra: jede zweite Zeile etwas dunkler, Kante in Karmin */
}
.panel div:has(> table) > table tbody tr:nth-child(even),
.panel .tablebox > table tbody tr:nth-child(even) {
  background: #242b3a;
}
.panel div:has(> table) > table tbody tr:hover,
.panel .tablebox > table tbody tr:hover {
  border-left-color: var(--tint-signal, #e8394a);
}
.panel div:has(> table) > table td a,
.panel .tablebox > table td a {
  color: var(--tint-frost, #7fb2dc);
  text-decoration: underline;
}
.panel div:has(> table) > table,
.panel .tablebox > table {
  /* min-width statt width: passt die Tabelle in den Container, wenn Platz da
     ist, und erzwingt den horizontalen Scroll erst, wenn es zu eng wird */
}
@media (max-width: 850px) {
  .panel div:has(> table) > table,
  .panel .tablebox > table {
    min-width: 880px;
  }
}
.panel {
  /* Spec-Tabellen: erste Zeile wie ein Kopf, Rest normal */
}
.panel .tablebox--kv > table tbody tr:first-child {
  background: linear-gradient(180deg, #d0192a 0%, #8e0f19 100%);
}
.panel .tablebox--kv > table tbody tr:first-child th,
.panel .tablebox--kv > table tbody tr:first-child td {
  color: var(--ink-bright, #f8f9fc);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.panel {
  /* schmale Schlüssel-Wert-Tabellen dürfen auf dem Handy schrumpfen */
}
@media (max-width: 850px) {
  .panel .tablebox--kv > table {
    min-width: 640px;
  }
}
.panel .tablebox--kv > table tbody tr > *:first-child {
  flex: 0 0 210px;
  font-weight: 600;
  color: var(--ink-body, #dee4ef);
}
.panel .tablebox--kv > table tbody tr:first-child > *:first-child {
  color: var(--ink-bright, #f8f9fc);
}

/* == NUMBERED STEPS: ol, number in a diamond frame == */
.walk {
  margin-top: 14px;
  position: relative;
  counter-reset: sbc-step;
}
.walk > li {
  counter-increment: sbc-step;
  background: #2a3243;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  padding: 12px;
  position: relative;
  margin-left: 51px;
  width: calc(100% - 51px);
  /* bold step lead label — yellow */
}
.walk > li b,
.walk > li strong {
  color: var(--tint-signal, #e8394a);
}
.walk > li + li {
  margin-top: 12px;
}
.walk > li::before {
  content: counter(sbc-step);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='37.4489' y='19.7852' width='24.9804' height='24.9804' transform='rotate(135 37.4489 19.7852)' stroke='%23E8394A' stroke-width='3'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% + 12px);
  margin: auto;
  height: 40px;
  width: 40px;
  font-weight: 700;
  font-size: 15px;
  color: #e8394a;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 650px) {
  .walk > li {
    margin-left: 40px;
    width: calc(100% - 40px);
  }
  .walk > li::before {
    right: calc(100% + 9px);
    height: 30px;
    width: 30px;
    font-size: 13px;
  }
}

/* == PROS / CONS (#pros) == */
.balance__cols {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 14px;
}
.balance__cols > div {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px;
  border-radius: var(--bend-xl, 14px);
  border: 1px solid var(--edge, rgba(222, 228, 239, 0.12));
  background: rgba(22, 26, 35, 0.55);
}
.balance__cols > div h3 {
  margin-top: 0;
}
.balance__cols > div li {
  position: relative;
  padding: 8px 0 8px 26px;
}
.balance__cols > div li::before {
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: 800;
  font-size: 15px;
}
.balance__cols > div:first-child li::before {
  content: "+";
  color: #6fd39a;
}
.balance__cols > div:last-child li::before {
  content: "−";
  color: var(--tint-live, #ff6b6b);
}
@media (max-width: 850px) {
  .balance__cols {
    flex-direction: column;
  }
}

/* Farbverlauf-Trenner unter jedem Punkt — der letzte Punkt jeder Spalte
   bleibt ohne Linie */
.balance__cols li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 57, 74, 0.6) 0%, rgba(232, 57, 74, 0.16) 55%, transparent 100%);
}

/* == #reg — registration steps in a card over a background photo == */
.signup .split {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 40px;
}
.signup .split > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  max-width: 680px;
  margin-left: auto;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
@media (max-width: 850px) {
  .signup .split {
    padding: 24px 16px;
  }
  .signup .split > div:not(.backdrop) {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 650px) {
  .signup .split {
    padding: 14px 10px;
  }
  .signup .split > div:not(.backdrop) {
    padding: 15px;
  }
}

/* == #mobile == */
/* Der PWA-Screenshot soll mittig sitzen — je nach Variante steht die
   Medienspalte an erster (split--flip) oder letzter Stelle. */
.mobile .split > div:last-child .slotimg,
.mobile .split > div:last-child img:not(:where(.icon, .brand-mark)),
.mobile .split--flip > div:first-child .slotimg,
.mobile .split--flip > div:first-child img:not(:where(.icon, .brand-mark)) {
  object-position: center;
}

/* App-Seite: vollflächiges Hintergrundfoto, Textkarte daneben */
.is-app .mobile {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
}
.is-app .mobile > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.is-app .mobile > div:not(.backdrop) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .is-app .mobile {
    padding: 40px 20px;
  }
  .is-app .mobile > div:not(.backdrop) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .is-app .mobile {
    padding: 20px 12px;
  }
  .is-app .mobile > div:not(.backdrop) {
    padding: 15px;
  }
}

/* == APP PROMO BLOCK == */
.panel.getapp {
  height: 350px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 57, 74, 0.3);
}
@media (max-width: 850px) {
  .panel.getapp {
    height: auto;
    min-height: 280px;
    padding: 40px 20px;
  }
}
@media (max-width: 450px) {
  .panel.getapp {
    padding: 30px 10px;
  }
}

.getapp__bg {
  z-index: 0;
}
.getapp__bg img,
.getapp__bg .slotimg {
  object-position: center;
}
.getapp__bg {
  /* darkening only in the center — edges stay clear for the characters */
}
.getapp__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 72% at 50% 50%, rgba(22, 26, 35, 0.72) 0%, rgba(22, 26, 35, 0.38) 62%, rgba(22, 26, 35, 0) 100%);
}
.getapp__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 15vw, 320px);
  width: 100%;
}
@media (max-width: 850px) {
  .getapp__actions {
    flex-direction: column;
    gap: 18px;
  }
}
.getapp__button {
  white-space: normal;
  line-height: 1.2;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 268px;
  min-width: 0;
  max-width: 100%;
  height: 56px;
  min-height: 0;
  padding: 12px 24px;
  margin: 0;
}
.getapp__button svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

/* == #vip (home page) — full-bleed background photo, text in a framed card on top;
   on the bonus page the block keeps its standard look == */
.is-home .club {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
}
.is-home .club > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.is-home .club > div:not(.backdrop) > h2 {
  align-self: center;
}
.is-home .club > div:not(.backdrop) > .act__button {
  margin-top: 20px;
}
@media (max-width: 850px) {
  .is-home .club {
    padding: 40px 20px;
  }
  .is-home .club > div:not(.backdrop) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .is-home .club {
    padding: 20px 12px;
  }
  .is-home .club > div:not(.backdrop) {
    padding: 15px;
  }
}

/* == #table-games (uses shared .panel / .marks / .walk / table patterns) == */
/* the "Regeln" column is twice as wide as its neighbors so rows don't stretch */
.tables .tablebox > table tr > *:nth-child(2) {
  flex: 2;
}

/* == #live-games — full-bleed background photo, text in a framed card on top (like #vip) == */
.livedealer {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
}
.livedealer > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.livedealer > div:not(.backdrop) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .livedealer {
    padding: 40px 20px;
  }
  .livedealer > div:not(.backdrop) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .livedealer {
    padding: 20px 12px;
  }
  .livedealer > div:not(.backdrop) {
    padding: 15px;
  }
}

/* == #license — full-bleed background photo, text card on the left == */
.legalinfo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
}
.legalinfo > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.legalinfo > div:not(.backdrop) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .legalinfo {
    padding: 40px 20px;
  }
  .legalinfo > div:not(.backdrop) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .legalinfo {
    padding: 20px 12px;
  }
  .legalinfo > div:not(.backdrop) {
    padding: 15px;
  }
}

/* == FAQ ACCORDION == */
.qa__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.qa__item {
  border: 1px solid var(--tint-signal, #e8394a);
  border-radius: var(--bend-xl, 14px);
  overflow: hidden;
  background: var(--shade-slab, #2e3648);
  transition: border-color var(--ease-base);
}
.qa__item:has(.qa-item__title.active) {
  border-color: transparent;
}

.qa-item__title {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 46px 14px 16px;
  background: var(--shade-core, #212734);
  color: var(--ink-bright, #f8f9fc);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  text-transform: none;
  transition: filter var(--ease-base);
}
.qa-item__title::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  border-right: 2px solid var(--ink-bright, #f8f9fc);
  border-bottom: 2px solid var(--ink-bright, #f8f9fc);
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-top 0.3s ease;
}
.qa-item__title.active::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}
@media (hover: hover) {
  .qa-item__title:hover {
    filter: brightness(1.05);
  }
}
@media (max-width: 850px) {
  .qa-item__title {
    font-size: 14px;
  }
}

.qa-item__desc {
  border-top: 1px solid var(--tint-signal, #e8394a);
  padding: 0 16px;
}
.qa-item__desc p {
  padding: 14px 0;
  margin: 0;
}

/* == REVIEWS CAROUSEL == */
.voices__carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 14px;
}

.voices__track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* reviewer avatar circle: holds initials while there is no photo;
   once a photo exists, just drop an <img> inside */
.voices__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #2e3648 0%, #1e2431 100%);
  border: 2px solid rgba(232, 57, 74, 0.6);
  box-shadow: 0 0 14px rgba(232, 57, 74, 0.25);
  color: var(--tint-signal, #e8394a);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.voices__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.voices__card {
  flex: none;
  width: 416px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--bend-xl, 14px);
  border: 1px solid rgba(232, 57, 74, 0.35);
  background: linear-gradient(180deg, rgba(46, 54, 72, 0.9) 0%, rgba(30, 36, 49, 0.9) 100%);
  box-shadow: 0 8px 24px -12px rgba(232, 57, 74, 0.25);
}
@media (max-width: 767px) {
  .voices__card {
    width: 320px;
  }
}
@media (max-width: 450px) {
  .voices__card {
    width: 260px;
  }
}
.voices__card .rank {
  display: flex;
  gap: 4px;
  width: auto;
}
.voices__card .rank svg {
  width: 18px;
  height: 18px;
  fill: var(--tint-sun, #ffd15c);
}
.voices__card .rank svg.is-off {
  fill: rgba(222, 228, 239, 0.25);
}
.voices__card h3 {
  margin: 0;
  padding: 0;
  background: none;
  color: var(--tint-signal, #e8394a);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.voices__card h3::before {
  display: none;
}
.voices__card p {
  margin: 0;
  font-size: 13.5px;
  text-align: center;
  color: var(--ink-body, #dee4ef);
}

.voices__nav {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.voices__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink-bright, #f8f9fc);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.voices__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--ink-invert, #161a23);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) {
  .voices__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -8px rgba(248, 249, 252, 0.6);
  }
}

/* == #rating (Bewertung) == */
.scores table tbody td:nth-child(2) {
  white-space: nowrap;
  font-weight: 800;
  color: var(--tint-signal, #e8394a);
}

/* narrow first two columns — all remaining width goes to Begründung */
.scores .tablebox tr > *:nth-child(1) {
  flex: 0 0 160px;
}

.scores .tablebox tr > *:nth-child(2) {
  flex: 0 0 70px;
}

.scores .tablebox tr > *:nth-child(3) {
  flex: 1 1 auto;
}

/* == EXPERT VERDICT (#expert): small photo on the left, byline + text + button on the right == */
.wrapup__row {
  display: flex;
  /* Foto steht rechts, im Markup bleibt es an erster Stelle */
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  /* top spacing comes from the h2's margin-bottom */
  margin-top: 0;
}

.wrapup__photo {
  flex: 0 0 150px;
}
.wrapup__photo img,
.wrapup__photo .slotimg {
  width: 150px;
  height: 150px !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--bend-lg, 10px);
  margin: 0;
}

.wrapup__body {
  flex: 1 1 0;
  min-width: 0;
}
.wrapup__body h3 {
  margin-top: 0;
}
.wrapup__body p + p {
  margin-top: 20px;
}
.wrapup__body .act__button {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .wrapup__row {
    flex-direction: column;
    align-items: center;
  }
  .wrapup__photo {
    flex: 0 0 auto;
  }
  .wrapup__body {
    width: 100%;
    text-align: center;
  }
  .wrapup__body h3 {
    padding: 0;
  }
  .wrapup__body h3::before {
    display: none;
  }
  .wrapup__body .act__button {
    margin-left: auto;
    margin-right: auto;
  }
}
/* == #intro — full-bleed background photo, text in a framed card on top (like #vip) == */
.opening {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
}
.opening > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.opening > div:not(.backdrop) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .opening {
    padding: 40px 20px;
  }
  .opening > div:not(.backdrop) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .opening {
    padding: 20px 12px;
  }
  .opening > div:not(.backdrop) {
    padding: 15px;
  }
}

/* == #spins (free spins) == */
.freespins .split > div:last-child .slotimg,
.freespins .split > div:last-child img:not(:where(.icon, .brand-mark)) {
  object-position: center;
}

/* == #payback (Cashback) == */
/*
  Das Foto liegt hier als Hintergrund hinter der Schritt-Karte. Die früher
  nötige feste 4:3-Spalte gibt es nicht mehr — sie würde jetzt die Textkarte
  treffen und ihr eine feste Höhe aufzwingen.
*/
/* == #responsibly (app page) — full-bleed background photo, text card on the right (like #vip);
   on the bonus page the block keeps its standard look == */
.is-app .safeplay {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
}
.is-app .safeplay > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
.is-app .safeplay > div:not(.backdrop) > h2 {
  align-self: center;
}
@media (max-width: 850px) {
  .is-app .safeplay {
    padding: 40px 20px;
  }
  .is-app .safeplay > div:not(.backdrop) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .is-app .safeplay {
    padding: 20px 12px;
  }
  .is-app .safeplay > div:not(.backdrop) {
    padding: 15px;
  }
}

/* == #install — install steps in cards over background photos (like #reg) == */
.setup .split {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 40px;
}
.setup .split > div:not(.backdrop) {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  max-width: 680px;
  background: rgba(46, 54, 72, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--bend-lg, 10px);
  padding: 20px;
}
@media (max-width: 850px) {
  .setup .split {
    padding: 24px 16px;
  }
  .setup .split > div:not(.backdrop) {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 650px) {
  .setup .split {
    padding: 14px 10px;
  }
  .setup .split > div:not(.backdrop) {
    padding: 15px;
  }
}

/* zweiter Installationsblock (iOS): Textkarte an die rechte Kante */
.setup .split:last-of-type > div:not(.backdrop) {
  margin-left: auto;
}

/* == #specs (Anforderungen) == */
/* Die Tabelle ist alleiniger Inhalt ihrer Spalte — der Standardabstand nach
   oben würde sie gegenüber dem Foto daneben verschieben. */
.specs .split .tablebox {
  margin-top: 0;
}

/* == 404 PAGE == */
.panel.lost {
  min-height: 560px;
  padding: clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 80px);
  text-align: center;
}
.panel.lost::before {
  content: "";
  position: absolute;
  inset: auto 4% 0 auto;
  width: min(42vw, 520px);
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 178, 220, 0.2), transparent 68%);
  pointer-events: none;
}

.lost__copy {
  flex: 1 1 620px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.lost__copy p {
  max-width: 620px;
}
.lost__character {
  position: relative;
  flex: 0 1 390px;
  align-self: stretch;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.lost__speech {
  position: absolute;
  /* anchored to the container bottom: the owl is 470px tall and stands on the floor,
     so the bubble always sits by its head */
  top: auto;
  bottom: 445px;
  left: 0;
  z-index: 2;
  width: max-content;
  max-width: 240px;
  margin: 0;
  padding: 13px 20px;
  border: 2px solid var(--tint-signal, #e8394a);
  border-radius: 22px;
  background: var(--ink-bright, #f8f9fc);
  color: var(--ink-invert, #161a23);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(-3deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.lost__speech strong {
  color: #3c5f86;
}
.lost__speech::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -15px;
  width: 25px;
  height: 25px;
  background: var(--ink-bright, #f8f9fc);
  border-right: 2px solid var(--tint-signal, #e8394a);
  border-bottom: 2px solid var(--tint-signal, #e8394a);
  transform: skew(18deg) rotate(38deg);
}
.panel .lost__owl, .lost__owl {
  width: min(100%, 360px);
  height: 470px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42));
}

@media (max-width: 767px) {
  .panel.lost {
    min-height: 0;
    flex-direction: column;
    gap: 12px;
  }
  .lost {
    /* the __copy children become direct flex items of the section,
       so the button can be placed BELOW the character */
  }
  .lost__copy {
    display: contents;
  }
  .lost__copy h2 {
    order: 1;
  }
  .lost__copy p {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .lost__character {
    order: 3;
    width: 100%;
    min-height: 350px;
    align-self: auto;
  }
  .lost__copy .act__button {
    order: 4;
  }
  .lost__speech {
    /* mobile owl is 350px tall — the anchor is lowered accordingly */
    top: auto;
    bottom: 330px;
    left: 50%;
    transform: translateX(-85%) rotate(-3deg);
    font-size: 16px;
  }
  .panel .lost__owl, .lost__owl {
    width: min(100%, 280px);
    height: 350px;
  }
}
@media (max-width: 450px) {
  .lost__speech {
    left: 8px;
    transform: rotate(-3deg);
  }
}
/* == SCRATCH TICKET == */
/* dock: arrow tab at the viewport edge + ticket that slides out */
.ticket-dock {
  /* ticket width incl. gaps — how far the dock hides past the edge */
  --shift: 118px;
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 45;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  translate: var(--shift) 0;
  transition: translate 0.45s cubic-bezier(0.3, 1.25, 0.4, 1);
}
.ticket-dock.is-open {
  translate: 0 0;
}

.ticket-dock__toggle {
  flex: 0 0 auto;
  width: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: var(--sweep-sun, linear-gradient(180deg, #ffd15c 0%, #e08300 100%));
  color: #161a23;
  cursor: pointer;
  box-shadow: -4px 0 14px rgba(232, 57, 74, 0.35);
}
.ticket-dock__toggle svg {
  fill: none;
  transition: transform 0.3s ease;
  animation: sbc-arrow-nudge 1.5s ease-in-out infinite;
}
@media (hover: hover) {
  .ticket-dock__toggle:hover {
    filter: brightness(1.08);
  }
}

.ticket-dock.is-open .ticket-dock__toggle svg {
  transform: rotate(180deg);
  animation: none;
}

@keyframes sbc-arrow-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}
.ticket-launcher {
  position: relative;
  flex: 0 0 auto;
  width: 100px;
  aspect-ratio: 16/9;
  margin: 0 10px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.48));
  cursor: pointer;
  isolation: isolate;
  animation: sbc-ticket-float 3.2s ease-in-out infinite;
}
.ticket-launcher img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ticket-launcher span {
  position: absolute;
  inset: 30% 20% 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  color: #ffd9dd;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}
@media (hover: hover) {
  .ticket-launcher:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 12px 24px rgba(232, 57, 74, 0.42));
    transform: rotate(1deg) scale(1.06);
  }
}

@keyframes sbc-ticket-float {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}
.ticket {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(16, 20, 27, 0.78);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ticket.is-on {
  opacity: 1;
}

.ticket__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(94vw, 760px);
  padding: 62px 88px 48px;
  background: url("../media/luck-card.webp") center/100% 100% no-repeat;
  text-align: center;
  transform: rotate(-3deg);
  /* the glow follows the ticket outline (drop-shadow respects transparency) */
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(232, 57, 74, 0.35));
  animation: sbc-ticket-glow 2.6s ease-in-out infinite;
}

@keyframes sbc-ticket-glow {
  0%, 100% {
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 16px rgba(232, 57, 74, 0.3));
  }
  50% {
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 36px rgba(232, 57, 74, 0.6));
  }
}
.ticket__brand {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333c50;
  margin: 0 0 6px;
}

.ticket__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #333c50;
  margin-top: 14px;
}

.ticket__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(22, 26, 35, 0.7);
  color: var(--ink-soft, #94a0b6);
  font-size: 22px;
  line-height: 1;
  transition: color var(--ease-base), background var(--ease-base);
}
@media (hover: hover) {
  .ticket__close:hover {
    color: var(--ink-bright, #f8f9fc);
    background: rgb(22, 26, 35);
  }
}

.ticket__title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #232a39;
  margin: 0;
}

.ticket__sub {
  font-size: 13px;
  color: #3a4460;
  margin-top: 4px;
}

.ticket__zone {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  margin-top: 16px;
  border-radius: var(--bend-lg, 10px);
  overflow: hidden;
}

.ticket__prize {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: radial-gradient(60% 80% at 50% 0%, rgba(232, 57, 74, 0.15) 0%, transparent 100%), var(--shade-deep, #161a23);
  color: var(--ink-bright, #f8f9fc);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.ticket__prize b {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--tint-signal, #e8394a);
}
.ticket__prize span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-body, #dee4ef);
}

.ticket__foil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: none;
  transition: opacity 0.6s ease;
}
.ticket__foil.is-cleared {
  opacity: 0;
  pointer-events: none;
}

/* coin "eraser" — follows the pointer over the foil */
.ticket__coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45%;
  background: linear-gradient(90deg, #6f3f0c 0%, #c07a12 12%, #ffe4b0 42%, #a4560d 70%, #5a3308 100%);
  border: 2px solid #563008;
  box-shadow: inset 3px 0 4px rgba(255, 255, 255, 0.55), inset -3px 0 4px rgba(60, 14, 20, 0.55), 5px 8px 12px rgba(0, 0, 0, 0.48);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-18deg);
  transition: opacity 0.15s ease;
  z-index: 2;
}
.ticket__coin.is-visible {
  opacity: 1;
}
.ticket__coin.is-rubbing {
  animation: sbc-coin-rub 0.35s ease-in-out infinite;
}

/* winner stamp over the ticket */
.ticket__win {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  padding: 8px 22px;
  border: 3px solid var(--tint-signal, #e8394a);
  border-radius: 10px;
  background: rgba(22, 26, 35, 0.78);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(20px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--tint-signal, #e8394a);
  text-shadow: 0 2px 0 rgba(110, 20, 30, 0.8), 0 6px 18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-7deg) scale(2.4);
}

.ticket__card.is-won .ticket__win {
  animation: sbc-win-stamp 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) 0.25s forwards;
}

@keyframes sbc-win-stamp {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-7deg) scale(2.4);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-7deg) scale(1);
  }
}
/* shavings thrown off while the foil is rubbed away */
.ticket__flake {
  position: absolute;
  z-index: 1;
  border-radius: 2px;
  background: linear-gradient(135deg, #ffd9dd 0%, #e8394a 55%, #9e1220 100%);
  box-shadow: 0 0 4px rgba(232, 57, 74, 0.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: sbc-flake-fall var(--dur, 0.7s) ease-in forwards;
}

@keyframes sbc-flake-fall {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--fx, 0px)), calc(-50% + var(--fy, 60px))) rotate(var(--rot, 180deg));
  }
}
@keyframes sbc-coin-rub {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-25deg) scale(0.96);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
}
/* CTA stays locked and dimmed until the prize is uncovered */
.ticket__cta.act__button {
  margin-top: 20px;
  opacity: 0.45;
  filter: saturate(0.5);
  pointer-events: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.ticket__card.is-won .ticket__cta.act__button {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}
.ticket__card.is-won .ticket__prize b {
  animation: sbc-prize-pop 0.6s ease;
}

@keyframes sbc-prize-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 450px) {
  .ticket-dock {
    --shift: 92px;
    top: auto;
    bottom: 150px;
    transform: none;
  }
  .ticket-dock__toggle {
    width: 26px;
    height: 50px;
  }
  .ticket-launcher {
    width: 78px;
    margin: 0 6px;
  }
  .ticket-launcher span {
    font-size: 7px;
  }
  .ticket {
    padding: 10px;
  }
  .ticket__card {
    padding: 34px 20px 26px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    transform: rotate(-2deg);
  }
  .ticket__prize b {
    font-size: 36px;
  }
  .ticket__prize {
    font-size: 15px;
  }
}
/* == BARRIERFREIHEIT == */
:focus-visible {
  outline: 2px solid var(--tint-signal, #e8394a);
  outline-offset: 2px;
}

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