/* Gemeinsame Gestaltung für Startseite, Support und Kontoverwaltung.
   Lokale Spieltexturen und CSS-Geometrie halten die Seite unabhängig von CDNs. */
:root {
  color-scheme: light;
  --paper: #f7f7ef;
  --ink: #203b34;
  --muted: #5c6961;
  --line: #d9ded3;
  --coral: #ff795f;
  --mint: #dceacb;
  --purple: #e6dff2;
  --danger: #a83135;
  --content: 1200px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  line-height: 1.6;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
  min-width: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.5rem, 5.4vw, 4.8rem);
  font-weight: 800;
  margin-bottom: 0;
}
h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.3rem);
  font-weight: 750;
  margin-bottom: 0;
}
h3 {
  font-size: 1.35rem;
  font-weight: 750;
}
:focus-visible {
  outline: 3px solid #356cbd;
  outline-offset: 5px;
}
::selection {
  background: #ffd3aa;
  color: var(--ink);
}
.wrap,
.header-inner,
.page-shell,
.footer-inner {
  width: min(var(--content), calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  z-index: 100;
  color: white;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.brand-word {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover,
.footer-links a:hover {
  text-decoration: underline;
}
.site-nav .nav-cta {
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
}
.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
}
.little-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3e795c;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
  padding-block: 72px 76px;
}
.hero h1 span {
  color: #b64a32;
}
.lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 450px;
  margin: 26px 0 30px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--ink);
  color: white;
}
.button-primary:hover,
.nav-cta:hover {
  background: #33564a;
}
.hero-secondary {
  display: inline-flex;
  gap: 12px;
  margin: 18px 0 0 22px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.hero-secondary:hover {
  text-decoration: underline;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.hero-note strong {
  color: var(--ink);
  font-weight: 600;
}
.mini-avatars {
  display: flex;
  padding-left: 6px;
}
.mini-avatars b {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #e8b9a6;
  color: var(--ink);
  font-size: 11px;
}
.mini-avatars b:nth-child(2) {
  background: #d5dfbd;
}
.mini-avatars b:nth-child(3) {
  background: #d9cdef;
}
/* Karten und Brett teilen denselben Perspektivraum. Separate Vorder-/Rückseiten
   vermeiden die flache Posterwirkung; feste Abmessungen verhindern Layoutsprünge. */
.hero-game {
  border: 1px solid #d6d9cb;
  border-radius: 18px;
  overflow: hidden;
  background: #e8eddc;
}
.scene-switch,
.table-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 14px 18px;
  border-bottom: 1px solid #d6d9cb;
}
.scene-switch button,
.table-switch button {
  padding: 9px 13px;
  min-height: 40px;
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
}
.scene-switch button[aria-pressed="true"],
.table-switch button[aria-pressed="true"] {
  color: white;
  background: var(--ink);
}
.scene-switch button:hover,
.table-switch button:hover {
  box-shadow: inset 0 0 0 1px var(--ink);
}
.scene-switch > span {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.table-switch {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 5px;
  margin-bottom: 20px;
  background: #e8eddf;
}
.card-stage {
  position: relative;
  height: 410px;
  overflow: hidden;
  isolation: isolate;
  perspective: 1100px;
  transition: background 0.25s;
}
.card-stage[data-game="grenzzahl"] {
  background: var(--purple);
}
.scene-label {
  position: absolute;
  top: 30px;
  left: 26px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #60715e;
}
.card-world {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.3s ease-out;
}
.stage-mat {
  position: absolute;
  left: 5%;
  width: 90%;
  height: 230px;
  top: 180px;
  border: 1px solid #617261;
  border-radius: 24px;
  background: #344c3e;
  transform: rotateX(65deg) translateZ(-45px);
  box-shadow: 0 9px 0 #233529, 0 30px 35px #344c3e30;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 18px;
}
.stage-mat span {
  flex: 1;
  height: 90px;
  border: 1px solid #85927b60;
  border-radius: 5px;
}
.card-stage[data-game="grenzzahl"] .stage-mat {
  background: #494959;
  border-color: #75718a;
  box-shadow: 0 9px 0 #34333e, 0 30px 35px #344c3e30;
}
.card-fan {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.show-card {
  --i: 0;
  position: absolute;
  left: calc(50% - 64px);
  top: 92px;
  width: 128px;
  aspect-ratio: 352/504;
  transform-style: preserve-3d;
  transform-origin: 50% 110%;
  transform: translateX(calc((var(--i) - 2) * 58px))
    translateY(calc((var(--i) - 2) * (var(--i) - 2) * 12px))
    translateZ(calc(var(--i) * 8px)) rotateZ(calc((var(--i) - 2) * 13deg))
    rotateY(-10deg);
  transition: transform 0.35s;
}
.show-card:nth-child(2) {
  --i: 1;
}
.show-card:nth-child(3) {
  --i: 2;
}
.show-card:nth-child(4) {
  --i: 3;
}
.show-card:nth-child(5) {
  --i: 4;
}
.show-card img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  backface-visibility: hidden;
  transform: translateZ(2px);
  box-shadow: 0 2px 0 #d9d4b9, 0 5px 0 #b6b39d, 0 18px 15px #203b3436;
}
.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid #d6d1b9;
  border-radius: 8px;
  background: #203b34;
  transform: rotateY(180deg) translateZ(2px);
  backface-visibility: hidden;
}
.scene-spark {
  position: absolute;
  font-size: 63px;
  color: #597b56;
  line-height: 1;
}
.spark-one {
  right: 25px;
  top: 22px;
  transform: rotate(15deg);
}
.spark-two {
  left: 25px;
  bottom: 25px;
  font-size: 31px;
}
.round-sticker {
  position: absolute;
  bottom: 23px;
  right: 24px;
  padding: 13px 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffb794;
  font-size: 12px;
  line-height: 1.4;
  transform: rotate(-7deg);
  box-shadow: 0 3px 0 #203b3414;
}
.hero-game figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  border-top: 1px solid #d6d9cb;
  background: var(--paper);
  font-size: 11px;
}
.hero-game figcaption > span {
  font-weight: 650;
}
.hero-game figcaption a {
  font-size: 10px;
  white-space: nowrap;
}
.promise-strip {
  border-block: 1px solid var(--line);
}
.promise-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
}
.promise-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}
.promise-strip b {
  font-size: 19px;
  font-weight: 500;
  color: #6a7c57;
}
.section {
  padding-block: 80px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 36px;
}
.section-heading .eyebrow {
  margin-bottom: 14px;
}
.section-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  align-items: start;
}
.game-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fffef9;
}
.game-art {
  position: relative;
  height: 206px;
  overflow: hidden;
  background: #f3d6c7;
  perspective: 700px;
}
.game-risk .game-art {
  background: var(--purple);
}
.game-words .game-art {
  background: #dae7ca;
}
.game-dice .game-art {
  background: #f4e4b7;
}
.game-bluff .game-art {
  background: #ead8d9;
}
.game-ships .game-art {
  background: #d5e4ed;
}
.game-category {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 18px;
  font-size: 8px;
  letter-spacing: 0.13em;
  font-weight: 750;
  color: #4b574c;
}
.art-cards img {
  position: absolute;
  top: 58px;
  left: calc(50% - 42px);
  width: 85px;
  filter: drop-shadow(0 7px 5px #203b3429);
  transform: rotate(-3deg) rotateY(-10deg);
  transition: transform 0.3s;
}
.art-cards img:nth-of-type(1) {
  transform: translate(-65px, 15px) rotate(-19deg) rotateY(-15deg);
}
.art-cards img:nth-of-type(3) {
  transform: translate(65px, 15px) rotate(15deg) rotateY(15deg);
}
.game-copy {
  padding: 22px;
}
.game-copy > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.game-copy h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.035em;
}
.game-copy > div > span {
  white-space: nowrap;
  font-size: 9px;
  color: var(--muted);
}
.game-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 12px 0 0;
}
.game-copy details {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 4px;
}
.game-copy summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 650;
}
.game-copy summary::-webkit-details-marker {
  display: none;
}
.game-copy summary span {
  font-size: 19px;
  font-weight: 400;
  transition: transform 0.2s;
}
.game-copy details[open] summary span {
  transform: rotate(45deg);
}
.game-copy details p {
  margin-top: 6px;
}
.game-copy details a {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
}
.art-words {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 22px;
}
.letter-tile {
  width: 68px;
  height: 95px;
  padding-top: 8px;
  border-radius: 6px;
  background: #fffef6;
  color: #45624a;
  font-size: 44px;
  font-weight: 750;
  text-align: center;
  line-height: 1.35;
  transform: rotate(-8deg) rotateY(-12deg);
  box-shadow: 0 5px 0 #9cb389;
}
.letter-tile:nth-of-type(2) {
  transform: translateY(-8px) rotate(3deg);
}
.letter-tile:nth-of-type(3) {
  transform: rotate(10deg) rotateY(12deg);
}
.letter-tile small {
  display: block;
  font-size: 9px;
  font-weight: 500;
}
.die {
  width: 76px;
  height: 76px;
  position: absolute;
  top: 70px;
  left: calc(50% - 80px);
  display: grid;
  grid-template: repeat(3, 1fr) / repeat(3, 1fr);
  gap: 5px;
  padding: 14px;
  background: #fffdf5;
  border-radius: 15px;
  box-shadow: 0 7px 0 #c3aa67, 0 13px 15px #514c2920;
  transform: rotate(-17deg) rotateX(12deg);
  transition: transform 0.3s;
}
.die i {
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 50%;
}
.die-five i:nth-child(2) {
  grid-area: 1/3;
}
.die-five i:nth-child(3) {
  grid-area: 2/2;
}
.die-five i:nth-child(4) {
  grid-area: 3/1;
}
.die-five i:nth-child(5) {
  grid-area: 3/3;
}
.die-three {
  left: calc(50% + 8px);
  top: 86px;
  transform: rotate(17deg) rotateX(12deg);
  background: #e7a757;
}
.die-three i:nth-child(2) {
  grid-area: 2/2;
}
.die-three i:nth-child(3) {
  grid-area: 3/3;
}
.dice-note {
  position: absolute;
  bottom: 12px;
  left: 25px;
  font-size: 10px;
  transform: rotate(-4deg);
}
.game-bluff .die {
  left: calc(50% - 80px);
  top: 97px;
  background: #fbf5ec;
  box-shadow: 0 7px 0 #c69fa6;
}
.bluff-bubble {
  position: absolute;
  top: 66px;
  right: 26px;
  padding: 14px 17px;
  background: #77475b;
  color: white;
  border-radius: 14px 14px 14px 0;
  font-weight: 650;
  font-size: 13px;
  transform: rotate(4deg);
}
.sea-grid {
  position: absolute;
  width: 205px;
  height: 144px;
  left: calc(50% - 102px);
  top: 47px;
  background-image: linear-gradient(#58738c26 1px, transparent 1px),
    linear-gradient(90deg, #58738c26 1px, transparent 1px);
  background-size: 29px 29px;
  transform: rotate(-6deg) rotateX(10deg);
}
.ship {
  position: absolute;
  left: 30px;
  top: 59px;
  width: 114px;
  height: 26px;
  border: 4px solid #d5e4ed;
  border-radius: 5px 18px 18px 5px;
  background: #52738c;
  box-shadow: 0 3px 0 #52738c55;
}
.hit {
  position: absolute;
  top: 43px;
  left: 93px;
  font-size: 43px;
  line-height: 1;
  color: #b64735;
  font-weight: 600;
}
.miss {
  position: absolute;
  left: 152px;
  top: 67px;
  font-size: 45px;
  color: #52738c;
}
.how-section {
  background: #e8eddf;
  border-block: 1px solid var(--line);
  padding-block: 72px;
}
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.how-intro > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin: 24px 0;
}
.invite-ticket {
  display: inline-grid;
  gap: 5px;
  padding: 16px 30px;
  background: #fafaf2;
  border: 1px dashed #9fac96;
  border-radius: 8px;
  transform: rotate(-3deg);
}
.invite-ticket > span {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.invite-ticket b {
  font-family: ui-monospace, monospace;
  letter-spacing: 0.2em;
  font-size: 25px;
}
.invite-ticket small {
  font-size: 10px;
  color: var(--muted);
}
.how-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.how-steps li {
  display: flex;
  gap: 25px;
  padding-block: 26px;
  border-bottom: 1px solid #cfd7c6;
}
.how-steps li:last-child {
  border-bottom: 0;
}
.how-steps li > span {
  font-size: 12px;
  font-weight: 650;
  color: #65755b;
  padding-top: 3px;
}
.how-steps h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.how-steps p {
  color: var(--muted);
  font-size: 13px;
  max-width: 365px;
  margin: 0;
}
.table-section {
  padding-top: 0;
}
.table-preview {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #e8eddf;
}
.preview-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  font-size: 11px;
}
.preview-toolbar > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.preview-toolbar i {
  width: 7px;
  height: 7px;
  background: #547752;
  border-radius: 50%;
}
.preview-toolbar > span:last-child {
  color: var(--muted);
}
.table-preview img {
  width: 100%;
}
.table-preview figcaption {
  padding: 16px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.download-section {
  position: relative;
  text-align: center;
  padding: 65px 32px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  margin-top: 80px;
}
.download-section .eyebrow {
  justify-content: center;
  color: #c3d0bb;
}
.download-section h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
}
.download-section > p:not(.eyebrow) {
  font-size: 14px;
  color: #c9d4c6;
  margin: 23px 0;
}
.download-section > .download-note {
  font-size: 10px;
  margin-bottom: 0;
}
.download-spark {
  position: absolute;
  right: 8%;
  top: 16%;
  color: #d6e6b4;
  font-size: 115px;
  line-height: 1;
  transform: rotate(13deg);
}
.stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.stores a {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 185px;
  padding: 12px 20px;
  text-align: left;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.stores a:hover {
  background: #e0eccb;
}
.stores small,
.stores strong {
  display: block;
}
.stores small {
  font-size: 9px;
}
.stores strong {
  font-size: 17px;
  line-height: 1.4;
}
.store-symbol {
  font-size: 29px;
}
.privacy-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 42px;
}
.privacy-strip > span {
  font-size: 28px;
}
.privacy-strip p {
  flex: 1;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.privacy-strip strong {
  color: var(--ink);
}
.privacy-strip a {
  font-size: 11px;
  white-space: nowrap;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  padding-block: 26px;
  font-size: 11px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-links a {
  text-decoration: none;
}
/* Service- und Rechtstexte nutzen dieselbe Navigation und eine ruhige Lesespalte. */
.page-shell {
  padding-block: 64px 80px;
}
.page-hero {
  max-width: 900px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}
.page-hero .lede {
  max-width: 670px;
  margin-bottom: 0;
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
  padding-top: 44px;
}
.content {
  min-width: 0;
}
.content-section {
  padding-block: 30px;
  border-top: 1px solid var(--line);
}
.content-section:first-child {
  border-top: 0;
  padding-top: 0;
}
.content-section h2,
.delete-panel h2 {
  font-size: 25px;
  line-height: 1.2;
}
.content-section h3 {
  margin-top: 24px;
  font-size: 19px;
}
.content-section p,
.content-section ul,
.content-section ol {
  font-size: 14px;
  color: var(--muted);
}
.content-section p {
  margin-block: 16px;
}
.content-section li + li {
  margin-top: 8px;
}
.content-section strong,
address strong {
  color: var(--ink);
}
.content a,
.side-card a {
  overflow-wrap: anywhere;
}
address {
  font-style: normal;
  color: var(--muted);
}
.side-card {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 24px;
  background: #e8eddf;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.side-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}
.side-card p {
  font-size: 12px;
  color: var(--muted);
}
.side-card a {
  display: block;
  font-size: 12px;
  margin-top: 16px;
  font-weight: 600;
}
.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffef9;
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #dceacb;
  font-size: 22px;
}
.contact-card p:last-child {
  margin-bottom: 0;
}
.notice {
  padding: 18px 22px;
  border-left: 3px solid #b98730;
  background: #f3ebd3;
  color: #71582b;
  border-radius: 4px;
}
.step-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}
.step-list li {
  counter-increment: steps;
  display: block;
  position: relative;
  padding: 14px 16px 14px 50px;
  margin: 0 !important;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffef9;
}
.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 16px;
  font-weight: 700;
  color: var(--ink);
}
.delete-panel {
  padding: 30px;
  border: 1px solid #e2bfba;
  border-radius: 12px;
  background: #fdf2ed;
  margin-block: 20px 35px;
}
.delete-panel > p {
  color: #795952;
  font-size: 14px;
  margin-top: 18px;
}
.delete-panel .eyebrow {
  color: #9c4a3d;
  margin-top: 0;
}
.delete-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 13px;
  font-weight: 650;
}
.field small {
  color: var(--muted);
  font-size: 11px;
}
.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bdbfb4;
  padding: 12px;
  border-radius: 6px;
  background: #fffefa;
  color: var(--ink);
}
.field input:focus {
  outline: 2px solid #527358;
  outline-offset: 1px;
}
.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 12px;
  color: #795952;
}
.check-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--danger);
}
.button-danger {
  background: var(--danger);
  color: white;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.assurance {
  font-size: 11px !important;
  color: var(--muted) !important;
}
.form-status {
  display: none;
  margin: 0;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 13px;
}
.form-status[data-state="error"] {
  display: block;
  background: #f8dad4;
  color: #8b282e;
}
.form-status[data-state="success"] {
  display: block;
  background: #e0edd6;
  color: #315433;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .game-card:hover .art-cards img:nth-of-type(2) {
    transform: translateY(-8px) rotate(3deg) rotateY(12deg);
  }
  .game-card:hover .die-five {
    transform: rotate(-8deg) rotateX(18deg);
  }
}
@media (max-width: 1100px) {
  .wrap,
  .header-inner,
  .page-shell,
  .footer-inner {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 28px;
    padding-block: 52px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-secondary {
    display: flex;
    margin-left: 0;
  }
  .card-stage {
    height: 370px;
  }
  .show-card {
    width: 110px;
    left: calc(50% - 55px);
  }
  .scene-switch {
    padding-inline: 12px;
  }
  .scene-switch button {
    padding-inline: 10px;
  }
  .hero-game figcaption {
    flex-wrap: wrap;
  }
  .game-copy {
    padding: 18px;
  }
  .game-copy > div {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }
  .how-layout {
    gap: 50px;
  }
  .download-spark {
    right: 5%;
    font-size: 80px;
  }
  .content-layout {
    gap: 32px;
  }
}
@media (max-width: 800px) {
  .site-nav {
    gap: 18px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 9vw, 5rem);
  }
  .hero-copy {
    max-width: 590px;
  }
  .hero-secondary {
    display: inline-flex;
    margin-left: 20px;
  }
  .hero-game {
    max-width: 610px;
    width: 100%;
  }
  .card-stage {
    height: 410px;
  }
  .show-card {
    width: 128px;
    left: calc(50% - 64px);
  }
  .hero-game figcaption {
    flex-wrap: nowrap;
  }
  .promise-strip .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .section {
    padding-block: 58px;
  }
  .table-section {
    padding-top: 0;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .game-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .how-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .how-section {
    padding-block: 50px;
  }
  .how-steps p {
    max-width: none;
  }
  .download-section {
    margin-top: 58px;
  }
  .download-spark {
    font-size: 58px;
    top: 25px;
  }
  .privacy-strip {
    flex-wrap: wrap;
  }
  .privacy-strip a {
    margin-left: 46px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .side-card {
    position: static;
  }
  .site-nav.service-nav {
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .service-header .header-inner {
    align-items: start;
    flex-direction: column;
    padding-block: 14px;
    gap: 8px;
  }
  .service-header {
    position: static;
  }
}
@media (max-width: 520px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap,
  .header-inner,
  .page-shell,
  .footer-inner {
    width: calc(100% - 36px);
  }
  .header-inner {
    min-height: 74px;
    gap: 12px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 33px;
    height: 33px;
    border-radius: 9px;
  }
  .brand-word {
    font-size: 20px;
  }
  .site-nav {
    gap: 14px;
  }
  .site-nav a {
    font-size: 11px;
  }
  .site-nav .nav-cta {
    padding: 8px 12px;
    gap: 8px;
  }
  .site-nav > a[href="#so-gehts"],
  .site-nav:not(.service-nav) > a[href="/support/"] {
    display: none;
  }
  .hero {
    padding-block: 40px;
  }
  .hero h1 {
    font-size: clamp(40px, 10.5vw, 55px);
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .lede {
    font-size: 15px;
    margin-block: 22px;
  }
  .hero-secondary {
    margin-left: 0;
    display: flex;
    width: fit-content;
  }
  .hero-note {
    margin-top: 22px;
  }
  .hero-game {
    border-radius: 12px;
  }
  .scene-switch button {
    font-size: 11px;
  }
  .scene-switch > span {
    font-size: 9px;
  }
  .card-stage {
    height: 315px;
  }
  .show-card {
    top: 78px;
    width: 95px;
    left: calc(50% - 47.5px);
    transform: translateX(calc((var(--i) - 2) * 39px))
      translateY(calc((var(--i) - 2) * (var(--i) - 2) * 9px))
      translateZ(calc(var(--i) * 5px)) rotateZ(calc((var(--i) - 2) * 13deg))
      rotateY(-10deg);
  }
  .stage-mat {
    top: 133px;
    height: 175px;
    gap: 5px;
    padding: 10px;
    border-radius: 16px;
  }
  .stage-mat span {
    height: 70px;
  }
  .scene-label {
    top: 25px;
    left: 20px;
    font-size: 7px;
  }
  .spark-one {
    right: 19px;
    top: 21px;
    font-size: 38px;
  }
  .spark-two {
    font-size: 26px;
    bottom: 21px;
    left: 18px;
  }
  .round-sticker {
    font-size: 10px;
    bottom: 18px;
    right: 17px;
    padding: 11px 14px;
  }
  .hero-game figcaption {
    font-size: 10px;
    padding: 14px;
    flex-wrap: wrap;
  }
  .hero-game figcaption a {
    font-size: 10px;
  }
  .promise-strip span {
    font-size: 10px;
    gap: 9px;
  }
  .promise-strip b {
    font-size: 17px;
  }
  .game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .game-art {
    height: 205px;
  }
  .game-copy {
    padding: 22px;
  }
  .game-copy > div {
    flex-direction: row;
    align-items: center;
  }
  .game-copy h3 {
    font-size: 21px;
  }
  .game-copy p {
    font-size: 13px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .how-steps h3 {
    font-size: 20px;
  }
  .how-steps li {
    gap: 18px;
  }
  .preview-toolbar {
    padding: 13px;
    font-size: 9px;
  }
  .table-preview {
    border-radius: 9px;
  }
  .table-preview figcaption {
    padding: 14px;
    font-size: 10px;
  }
  .download-section {
    padding: 55px 20px 36px;
  }
  .download-section h2 {
    font-size: 39px;
  }
  .download-section .eyebrow {
    font-size: 8px;
  }
  .download-spark {
    right: 15px;
    top: 12px;
    font-size: 30px;
  }
  .stores {
    gap: 10px;
  }
  .stores a {
    min-width: 0;
    padding: 11px 14px;
    gap: 9px;
  }
  .stores strong {
    font-size: 15px;
  }
  .store-symbol {
    font-size: 22px;
  }
  .privacy-strip p {
    font-size: 11px;
  }
  .footer-links {
    gap: 14px;
    font-size: 10px;
  }
  .page-shell {
    padding-block: 38px 50px;
  }
  .page-hero {
    padding-bottom: 30px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .page-hero .lede {
    font-size: 15px;
  }
  .contact-card {
    padding: 20px;
    grid-template-columns: 1fr;
  }
  .content-section h2,
  .delete-panel h2 {
    font-size: 23px;
  }
  .delete-panel {
    padding: 20px;
  }
  .service-nav a {
    min-height: 36px;
  }
  .content-section p,
  .content-section li,
  address {
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .card-world {
    transform: none;
  }
}
/* Die äußeren Karten bleiben auch auf kleinen Telefonen vollständig im Bild. */
@media (max-width: 520px) {
  .card-fan {
    transform: scale3d(0.84, 0.84, 0.84);
  }
  .hero h1 {
    font-size: clamp(34px, 10.2vw, 53px);
  }
  .site-nav a {
    white-space: nowrap;
  }
}
@media (max-width: 360px) {
  .card-fan {
    transform: scale3d(0.72, 0.72, 0.72);
  }
  .brand-word {
    font-size: 18px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .site-nav {
    gap: 10px;
  }
  .site-nav a {
    font-size: 10px;
  }
  .site-nav .nav-cta {
    padding-inline: 10px;
  }
  .nav-cta span {
    display: none;
  }
  .game-copy > div {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }
}
