* {
  box-sizing: border-box;
}

:root {
  --page-bg: #070707;
  --card-bg: #12110f;
  --card-soft: #17140f;
  --card-hover: #241b0d;
  --text: #d8cdb8;
  --text-strong: #f4e7c8;
  --muted: #b09a68;
  --gold: #c99b3e;
  --gold-light: #e0b04f;
  --line: rgba(184, 138, 47, 0.32);
  --line-soft: rgba(184, 138, 47, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
  --max-width: 1180px;
}

html {
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 4%, rgba(201, 155, 62, 0.16), transparent 34rem),
    radial-gradient(circle at 12% 30%, rgba(201, 155, 62, 0.08), transparent 28rem),
    linear-gradient(180deg, #070707 0%, #0c0a07 48%, #070707 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: #070707;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer,
main {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: var(--text-strong);
  background: linear-gradient(145deg, #17140f, #070707);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-text {
  color: var(--text-strong);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.topnav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.topnav a,
.site-footer a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.topnav a:hover,
.site-footer a:hover {
  color: var(--text-strong);
  border-color: var(--line);
  background: rgba(201, 155, 62, 0.08);
}

.hero {
  padding: clamp(3.6rem, 9vw, 7.4rem) 0 clamp(2rem, 5vw, 4rem);
  max-width: 920px;
}

.eyebrow,
.strip-label,
.card-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.6rem);
  max-width: 980px;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 760px;
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  color: #d2c3a4;
}

.hero-actions,
.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.button.primary,
.card-link {
  color: #070707;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 32px rgba(201, 155, 62, 0.18);
}

.button.ghost {
  color: var(--text-strong);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.book-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin: 0 0 clamp(3rem, 8vw, 5.5rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(201, 155, 62, 0.15), rgba(255, 255, 255, 0.02)),
    var(--card-bg);
  box-shadow: var(--shadow);
}

.book-strip h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.65rem);
  letter-spacing: -0.03em;
}

.book-strip p:last-child {
  max-width: 760px;
  margin: 0.9rem 0 0;
}

.games-section {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.section-head p:last-child {
  margin-top: 0.9rem;
  color: #c7b58e;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.game-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)), var(--card-bg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(201, 155, 62, 0.08), rgba(255, 255, 255, 0.012)), var(--card-hover);
}

.game-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
}

.card-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #050505;
}

.card-image-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.card-image-link img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  transition: transform 240ms ease;
}

.game-card:hover .card-image-link img {
  transform: scale(1.025);
}

.card-body {
  padding: clamp(1.15rem, 2.5vw, 1.7rem);
}

.card-body h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.card-body p:not(.card-kicker) {
  min-height: 5.2rem;
  margin: 0.85rem 0 1.2rem;
  color: #c7b58e;
}

.featured .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured .card-body p:not(.card-kicker) {
  min-height: 0;
  font-size: 1.08rem;
}

.quiet-note {
  margin: 0 0 3rem;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0 1.1rem 1.1rem 0;
  color: #c7b58e;
}

.quiet-note p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  padding: 1.2rem 0 2rem;
}

.site-footer p {
  margin: 0;
}

.legal-page {
  padding: clamp(2.5rem, 7vw, 5rem) 0 4rem;
}

.legal-card {
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(18, 17, 15, 0.92);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.legal-card h2 {
  margin-top: 2.2rem;
  font-size: 1.55rem;
}

.legal-card p,
.legal-card li {
  color: #d2c3a4;
}

.legal-card a {
  color: var(--gold-light);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .book-strip,
  .game-card.featured {
    display: block;
  }

  .topnav {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .book-actions {
    margin-top: 1.25rem;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 0.8rem;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 1.1rem, var(--max-width));
  }

  .hero {
    padding-top: 2.4rem;
  }

  .topnav a,
  .site-footer a {
    padding: 0.5rem 0.62rem;
  }

  .button,
  .card-link {
    width: 100%;
  }

  .card-image-link img {
    min-height: 13.5rem;
  }
}

/* V2: Spielkästen direkt oben und kompakter */
.games-section {
  padding: clamp(1rem, 2.5vw, 1.8rem) 0 clamp(1.8rem, 4vw, 3rem);
}

.top-games-head {
  max-width: 920px;
  margin-bottom: 1rem;
}

.top-games-head h1 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
}

.top-games-head p:last-child {
  max-width: 680px;
  margin-top: 0.65rem;
}

.game-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.game-card,
.game-card.featured {
  grid-column: auto;
  display: block;
  border-radius: 1.15rem;
}

.game-card.featured {
  box-shadow: 0 18px 58px rgba(201, 155, 62, 0.11), 0 18px 54px rgba(0, 0, 0, 0.32);
  border-color: rgba(224, 176, 79, 0.42);
}

.card-image-link img {
  min-height: 8.2rem;
  height: 8.2rem;
}

.card-body {
  padding: 0.9rem;
}

.card-body h3 {
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
}

.card-kicker {
  margin-bottom: 0.45rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.card-body p:not(.card-kicker),
.featured .card-body p:not(.card-kicker) {
  min-height: 4.8rem;
  margin: 0.55rem 0 0.8rem;
  font-size: 0.88rem;
  line-height: 1.48;
}

.card-link {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.58rem 0.7rem;
  font-size: 0.86rem;
}

.book-strip {
  margin: 0 0 clamp(1.8rem, 4vw, 3rem);
  padding: clamp(1.05rem, 2.4vw, 1.55rem);
  border-radius: 1.45rem;
}

.book-strip h2 {
  font-size: clamp(1.35rem, 2.45vw, 2.1rem);
}

.compact-hero {
  padding: clamp(1.2rem, 3vw, 2rem) 0 clamp(1.3rem, 3vw, 2rem);
  max-width: 820px;
}

.compact-hero h2 {
  font-size: clamp(1.65rem, 3.6vw, 3rem);
  letter-spacing: -0.035em;
}

.compact-hero .lead {
  font-size: 1rem;
  margin-top: 0.85rem;
}

@media (max-width: 1120px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-image-link img {
    min-height: 7.6rem;
    height: 7.6rem;
  }
}

@media (max-width: 520px) {
  .top-games-head h1 {
    font-size: clamp(2rem, 14vw, 3.15rem);
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .card-image-link img {
    min-height: 9.2rem;
    height: 9.2rem;
  }
}


/* V3: gleich hohe, etwas größere Spielkarten und Amazon Knopf */
:root {
  --max-width: 1320px;
}

.game-grid {
  align-items: stretch;
}

.game-card,
.game-card.featured {
  display: flex;
  flex-direction: column;
  min-height: 31rem;
}

.card-image-link {
  flex: 0 0 auto;
}

.card-image-link img {
  min-height: 9.1rem;
  height: 9.1rem;
}

.card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1.05rem;
}

.card-body h3 {
  min-height: 3.35rem;
}

.card-body p:not(.card-kicker),
.featured .card-body p:not(.card-kicker) {
  min-height: 5.7rem;
  margin-bottom: 1rem;
}

.card-link {
  margin-top: auto;
}

.button.amazon {
  color: #070707;
  background: linear-gradient(135deg, #f0c868, #c99b3e);
  border: 1px solid rgba(255, 232, 177, 0.32);
}

@media (max-width: 1120px) {
  .game-card,
  .game-card.featured {
    min-height: 30rem;
  }
}

@media (max-width: 720px) {
  .game-card,
  .game-card.featured {
    min-height: 0;
  }

  .card-body h3,
  .card-body p:not(.card-kicker),
  .featured .card-body p:not(.card-kicker) {
    min-height: 0;
  }
}


/* V4: Amazon Buchvorschau mit lokalem Coverbild */
.book-strip-preview {
  grid-template-columns: 9.2rem minmax(0, 1fr) auto;
  align-items: center;
}

.book-cover-link {
  display: block;
  width: 9.2rem;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(224, 176, 79, 0.45);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
  transform: rotate(-1.2deg);
  transition: transform 190ms ease, box-shadow 190ms ease;
  background: #080807;
}

.book-cover-link:hover {
  transform: translateY(-3px) rotate(0deg);
  box-shadow: 0 26px 58px rgba(201, 155, 62, 0.18), 0 22px 46px rgba(0, 0, 0, 0.42);
}

.book-cover-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.book-inline-preview {
  display: inline-grid;
  gap: 0.05rem;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(224, 176, 79, 0.32);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.18);
  color: #d8cdb8;
}

.book-inline-preview strong {
  color: #f4e7c8;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.08rem;
  line-height: 1.18;
}

.preview-label {
  color: #e0b04f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 900;
}

@media (max-width: 960px) {
  .book-strip-preview {
    grid-template-columns: 7.5rem minmax(0, 1fr);
  }

  .book-strip-preview .book-actions {
    grid-column: 1 / -1;
  }

  .book-cover-link {
    width: 7.5rem;
  }
}

@media (max-width: 620px) {
  .book-strip-preview {
    display: block;
  }

  .book-cover-link {
    width: min(11rem, 62vw);
    margin-bottom: 1rem;
  }
}


/* V5: fester Liechtenstein Hintergrund beim Scrollen */
body {
  position: relative;
  isolation: isolate;
  background: #070707;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('img/liechtenstein-vaduz-background.jpg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transform: translateZ(0);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 4%, rgba(201, 155, 62, 0.20), transparent 34rem),
    radial-gradient(circle at 8% 24%, rgba(201, 155, 62, 0.11), transparent 30rem),
    linear-gradient(180deg, rgba(5, 4, 2, 0.69) 0%, rgba(5, 4, 2, 0.56) 34%, rgba(5, 4, 2, 0.70) 100%);
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.game-card,
.game-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(18, 17, 15, 0.82);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.book-strip,
.legal-card,
.quiet-note {
  background:
    linear-gradient(135deg, rgba(201, 155, 62, 0.16), rgba(255, 255, 255, 0.025)),
    rgba(18, 17, 15, 0.76);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.top-games-head {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.82);
}

.site-footer {
  background: rgba(7, 7, 7, 0.34);
  border-radius: 1.2rem 1.2rem 0 0;
  padding-inline: 1rem;
}

.footer-meta {
  display: grid;
  gap: 0.25rem;
}

.photo-credit {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(216, 205, 184, 0.68);
}

.photo-credit a {
  color: rgba(224, 176, 79, 0.86);
}

@media (max-width: 720px) {
  body::before {
    background-image: url('img/liechtenstein-vaduz-background-small.jpg');
    background-position: center top;
  }

  body::after {
    background: linear-gradient(180deg, rgba(5, 4, 2, 0.72) 0%, rgba(5, 4, 2, 0.62) 38%, rgba(5, 4, 2, 0.73) 100%);
  }
}

/* V6: Hintergrundbild ungefähr 20 Prozent sichtbarer */


/* V7: echtes Buchcover statt schmal abgeschnittenem Schnipsel */
.book-strip-preview {
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.35rem, 2.4vw, 2.35rem);
}

.book-cover-link {
  width: clamp(160px, 13vw, 220px);
  align-self: center;
  justify-self: start;
  aspect-ratio: 2 / 3;
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(224, 176, 79, 0.62);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.52);
  background: #080807;
  transform: rotate(-1deg);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.book-cover-link:hover {
  transform: translateY(-4px) rotate(0deg) scale(1.018);
  border-color: rgba(224, 176, 79, 0.88);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(224, 176, 79, 0.18);
}

.book-cover-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #080807;
}

.book-inline-preview {
  display: inline-block;
  width: min(170px, 42vw);
  margin-top: 1rem;
  padding: 0;
  border: 1px solid rgba(224, 176, 79, 0.42);
  border-radius: 0.95rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  color: #d8cdb8;
  text-decoration: none;
}

.book-inline-preview .preview-label {
  display: block;
  padding: 0.68rem 0.78rem 0.5rem;
  background: rgba(8, 7, 5, 0.78);
}

.book-inline-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: #080807;
}

@media (max-width: 1080px) {
  .book-strip-preview {
    grid-template-columns: minmax(145px, 190px) minmax(0, 1fr);
  }

  .book-strip-preview .book-actions {
    grid-column: 1 / -1;
  }

  .book-cover-link {
    width: clamp(145px, 22vw, 190px);
  }
}

@media (max-width: 620px) {
  .book-strip-preview {
    display: block;
  }

  .book-cover-link {
    width: min(210px, 70vw);
    margin: 0 0 1.2rem;
  }

  .book-inline-preview {
    width: min(180px, 70vw);
  }
}


/* V8: doppelte Buchvorschau entfernt, Buchbereich sauber zusammengezogen */
.book-strip-preview {
  grid-template-columns: minmax(150px, 220px) minmax(320px, 1fr) auto;
  align-items: center;
  min-height: auto;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.book-strip-preview .book-copy {
  align-self: center;
}

.book-strip-preview .book-actions {
  align-self: center;
  justify-content: flex-end;
}

.book-cover-link {
  align-self: center;
  width: clamp(145px, 16vw, 220px);
}

.book-strip-preview .book-copy p {
  max-width: 560px;
}

.book-inline-preview {
  display: none;
}

@media (max-width: 1050px) {
  .book-strip-preview {
    grid-template-columns: minmax(135px, 190px) 1fr;
  }

  .book-strip-preview .book-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .book-strip-preview {
    grid-template-columns: 1fr;
  }

  .book-cover-link {
    width: min(190px, 68vw);
  }
}


/* V10: Rallyequiz Karte nutzt das echte hochgeladene Rallye Header Bild */
.rallye-hero-link,
.rallye-hero-preview,
.mini-topbar,
.mini-dot,
.mini-hero-copy,
.mini-kicker {
  all: unset;
}

.game-card:first-child .card-image-link img {
  object-fit: cover;
  object-position: center center;
}


/* V11: Rallyequiz Vorschaubild 20 Prozent weiter herausgezoomt */
.game-card:first-child .card-image-link img {
  object-fit: cover;
  object-position: center center;
}


/* V12: Rallyequiz Vorschaubild nochmals 20 Prozent weiter herausgezoomt */
.game-card:first-child .card-image-link img {
  object-fit: cover;
  object-position: center center;
}


/* V13: Wissensfabrik Vorschaubild aus Screenshot, ohne seitliches Abschneiden */
.game-card:nth-child(2) .card-image-link img {
  object-fit: contain;
  object-position: center center;
  background: rgba(232, 239, 234, 0.96);
}


/* V14: Weltquiz Vorschaubild vollständig eingepasst, ohne seitliches Abschneiden */
.game-card:nth-child(3) .card-image-link img {
  object-fit: contain;
  object-position: center center;
  background: rgba(1, 8, 17, 0.96);
}


/* V33: Bombenlabyrinth 90 Vorschaubild aus Screenshot, ohne seitliches Abschneiden */
.game-card:nth-child(4) .card-image-link img {
  object-fit: contain;
  object-position: center center;
  background: rgba(232, 239, 234, 0.96);
}


/* V16: Pinball World War Vorschaubild vollständig eingepasst, ohne seitliches Abschneiden */
.game-card:nth-child(5) .card-image-link img {
  object-fit: contain;
  object-position: center center;
  background: rgba(4, 10, 24, 0.96);
}


/* V19: Buchkasten Buttons einheitlich gold und sauber ausgerichtet */
.book-strip .book-actions .button,
.book-strip .book-actions .button.ghost,
.book-strip .book-actions .button.amazon {
  background: linear-gradient(135deg, #f4c95d, #d9a93f);
  color: #070603;
  border: 1px solid rgba(255, 226, 138, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.30);
}

.book-strip .book-actions .button:hover,
.book-strip .book-actions .button.ghost:hover,
.book-strip .book-actions .button.amazon:hover {
  background: linear-gradient(135deg, #ffd978, #e0b14a);
  color: #050403;
  border-color: rgba(255, 234, 166, 0.95);
  transform: translateY(-2px);
}

.book-strip .book-actions {
  gap: 1rem;
}


/* V21: Kontaktformular */
.contact-form {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.6rem;
}

.field-row {
  display: grid;
  gap: 0.42rem;
}

.field-row label {
  color: var(--cream);
  font-weight: 800;
}

.field-row label span,
.form-note {
  color: rgba(247, 236, 208, 0.68);
  font-weight: 600;
}

.field-row input,
.field-row textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(224, 177, 74, 0.34);
  border-radius: 14px;
  background: rgba(8, 7, 5, 0.72);
  color: var(--cream);
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
}

.field-row textarea {
  resize: vertical;
  min-height: 11rem;
}

.field-row input:focus,
.field-row textarea:focus {
  border-color: rgba(244, 201, 93, 0.95);
  box-shadow: 0 0 0 3px rgba(244, 201, 93, 0.16);
}

.math-row input {
  max-width: 12rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  justify-self: start;
}

.success {
  color: #d9ffd9;
  font-weight: 800;
}

.error {
  color: #ffd2c9;
  font-weight: 800;
}


/* V23: Kontaktseite und Datenschutzhinweis */
.form-note a {
  color: var(--gold);
  font-weight: 800;
}

.contact-card .button + .button {
  margin-left: 0.75rem;
}

@media (max-width: 760px) {
  .contact-card .button + .button {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}


/* V24: Sprachschalter und SEO Bereiche */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem;
  background: rgba(8, 7, 5, 0.42);
}

.lang-switch a,
.lang-switch strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  text-decoration: none;
}

.lang-switch strong {
  background: linear-gradient(135deg, #f4c95d, #d9a93f);
  color: #070603;
}

.seo-copy,
.faq-section {
  margin: clamp(2rem, 5vw, 4.5rem) 0;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 14, 10, 0.72), rgba(7, 7, 7, 0.48)),
    rgba(7, 7, 7, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.seo-copy p,
.faq-section p {
  max-width: 880px;
}

.faq-section details {
  border-top: 1px solid var(--line-soft);
  padding: 1rem 0;
}

.faq-section details:first-of-type {
  margin-top: 1rem;
}

.faq-section summary {
  cursor: pointer;
  color: var(--text-strong);
  font-weight: 900;
}

@media (max-width: 760px) {
  .lang-switch {
    width: auto;
  }

  .topnav {
    justify-content: flex-start;
  }
}
