/* =================================================================
   MASTERWIN · landing.css
   Coin-Landingpage — eigenständig, mobil-optimiert, Neon-Jahrmarkt.
   ================================================================= */
:root {
  --bg: #070a18;
  --bg-2: #0d1130;
  --panel: #141a3e;
  --panel-2: #1b2250;
  --gold-1: #ffe79a;
  --gold-2: #ffb52e;
  --pink: #ff45e0;
  --cyan: #25e9ff;
  --green: #38e07e;
  --ink: #f4ecd8;
  --ink-dim: #9aa3c7;
  --line: rgba(255, 255, 255, 0.1);
  --r: 16px;
  --r-sm: 10px;
  --f-display: "Arial Black", "Arial Bold", Impact, sans-serif;
  --f-body: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  --f-mono: "Consolas", "SF Mono", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ---- Hintergrund-Glow ---- */
.lp-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #1a1f4e 0%, var(--bg) 60%); }
.lp-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.4; }
.lp-glow--1 { width: 460px; height: 460px; left: -120px; top: 8%;
  background: radial-gradient(circle, var(--pink), transparent 70%); }
.lp-glow--2 { width: 520px; height: 520px; right: -160px; top: 44%;
  background: radial-gradient(circle, var(--cyan), transparent 70%); }

/* ===============================================================
   NAV
   =============================================================== */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 14px;
  padding: 12px clamp(14px, 4vw, 40px);
  transition: background 0.25s, box-shadow 0.25s, padding 0.25s;
}
.lp-nav.is-stuck {
  background: rgba(8, 11, 26, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid var(--line);
}
.lp-brand { display: flex; align-items: center; gap: 9px; }
.lp-brand-logo { width: 38px; height: 38px;
  filter: drop-shadow(0 2px 6px rgba(255, 181, 46, 0.5)); }
.lp-brand-text { font-family: var(--f-display); font-size: 1.2rem; letter-spacing: 1px; }
.lp-brand-text b { color: var(--gold-2); }
.lp-nav-links { display: none; gap: 22px; margin-left: auto;
  font-weight: 600; font-size: 0.92rem; }
.lp-nav-links a { color: var(--ink-dim); transition: color 0.15s; }
.lp-nav-links a:hover { color: var(--gold-1); }
.lp-nav-cta { margin-left: auto; }
.lp-nav-links + .lp-nav-cta { margin-left: 22px; }

/* ===============================================================
   BUTTONS / NEON
   =============================================================== */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-display); font-size: 0.9rem; letter-spacing: 0.5px;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.14s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn--xl { padding: 16px 32px; font-size: 1.05rem; }
.lp-btn--gold {
  background: linear-gradient(180deg, #ffd86b, var(--gold-2));
  color: #3a2406;
  box-shadow: 0 8px 22px rgba(255, 181, 46, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.6);
}
.lp-btn--gold:hover { box-shadow: 0 12px 30px rgba(255, 181, 46, 0.55); }
.lp-btn--cyan {
  background: linear-gradient(180deg, #6ff3ff, var(--cyan));
  color: #042831; box-shadow: 0 8px 22px rgba(37, 233, 255, 0.35);
}
.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.05); color: var(--ink);
  border-color: var(--line);
}
.lp-btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-1); }

.lp-neon { font-family: var(--f-display); }
.lp-neon--gold { color: #fff3cf; text-shadow: 0 0 8px var(--gold-2), 0 0 22px rgba(255, 181, 46, 0.7); }
.lp-neon--pink { color: #ffd9f6; text-shadow: 0 0 8px var(--pink), 0 0 22px rgba(255, 69, 224, 0.7); }
.lp-neon--cyan { color: #d6fbff; text-shadow: 0 0 8px var(--cyan), 0 0 22px rgba(37, 233, 255, 0.7); }
.lp-neon--green { color: #d4ffe5; text-shadow: 0 0 8px var(--green), 0 0 22px rgba(56, 224, 126, 0.7); }
.flicker { animation: lp-flicker 4s infinite; }
@keyframes lp-flicker {
  0%, 92%, 100% { opacity: 1; }
  93%, 95% { opacity: 0.45; }
  94%, 96% { opacity: 1; }
}

/* ===============================================================
   HERO
   =============================================================== */
.lp-hero {
  position: relative;
  padding: 18px clamp(12px, 4vw, 34px) clamp(40px, 8vw, 70px);
}
.lp-tent {
  position: relative; max-width: 1000px; margin: 0 auto; padding-top: 116px;
}
/* Ohne Dach: padding-top + Border-Korrektur für die innere Box */
.lp-tent--noroof { padding-top: 0; }
.lp-tent--noroof .lp-hero-inner {
  border-top: 2px solid var(--line);
  border-radius: var(--r-xl);
}
/* 3D-Zeltdach: gestreifte Kuppel mit Rundungs-Highlight, Schattierung an den
   Stoff-Falten, Glanzlicht am Firstpunkt und mehrlagigem Schlagschatten. */
.lp-tent-roof {
  position: absolute; top: 0; left: -3%; right: -3%; height: 148px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background:
    /* tiefe Schattierung am unteren Rand (Stoff hängt) */
    radial-gradient(ellipse 110% 70% at 50% 100%, rgba(0,0,0,0.42) 0%, transparent 55%),
    /* Glanzlicht am Firstpunkt (Licht von oben) */
    radial-gradient(ellipse 35% 60% at 50% 0%, rgba(255,255,255,0.55) 0%, transparent 60%),
    /* Streifen-Grundmuster */
    repeating-conic-gradient(from 90deg at 50% 0,
      #e22338 0deg 11deg, #f9eed1 11deg 22deg);
  filter:
    drop-shadow(0 4px 6px rgba(0, 0, 0, 0.42))
    drop-shadow(0 14px 26px rgba(0, 0, 0, 0.58));
}
/* Zweiter Layer: vertikale Falten-Highlights, geben den Stoff-Effekt */
.lp-tent-roof::before {
  content: ""; position: absolute; inset: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background:
    /* breites zentrales Highlight wie eine Kuppelwölbung */
    radial-gradient(ellipse 60% 75% at 50% 8%, rgba(255,255,255,0.28) 0%, transparent 60%),
    /* dunkle seitliche Verschattung */
    linear-gradient(90deg, rgba(0,0,0,0.32) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.32) 100%);
  mix-blend-mode: overlay; pointer-events: none;
}
/* Flagge am Firstpunkt — mit kleiner Stange */
.lp-tent-roof::after {
  content: ""; position: absolute; top: -34px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 28px;
  background:
    /* Stange */
    linear-gradient(180deg, #c2c8da 0%, #6b7088 100%) 50% 100%/2px 28px no-repeat,
    /* Flaggentuch */
    linear-gradient(120deg, #e22338 0%, #ff6c84 60%, #e22338 100%) 0 0/20px 16px no-repeat;
  border-radius: 1px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
  transform-origin: 50% 100%;
  animation: lp-flag 2.8s ease-in-out infinite;
}
.lp-tent-valance {
  position: absolute; top: 126px; left: -3%; right: -3%; height: 30px; z-index: 2;
  background:
    radial-gradient(circle 17px at 17px 0, #e22338 15px, transparent 16px) 0 0/68px 30px repeat-x,
    radial-gradient(circle 17px at 51px 0, #f7eccf 15px, transparent 16px) 0 0/68px 30px repeat-x;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.4));
}
.lp-hero-inner {
  position: relative; text-align: center;
  background: linear-gradient(180deg, rgba(20, 26, 62, 0.93), rgba(9, 12, 32, 0.96));
  border: 2px solid var(--line); border-top: 0;
  border-radius: 0 0 var(--r) var(--r);
  padding: 48px clamp(16px, 5vw, 40px) 38px;
  overflow: hidden;
}
.lp-hero-flags {
  position: absolute; top: 0; left: 0; right: 0; height: 22px;
  display: flex; justify-content: center;
}
.lp-pennant {
  width: 0; height: 0;
  border-left: 13px solid transparent; border-right: 13px solid transparent;
  border-top: 20px solid var(--pn, var(--gold-2));
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.4));
}
.lp-hero-coin {
  width: clamp(96px, 22vw, 150px); height: auto; margin: 0 auto 6px;
  filter: drop-shadow(0 8px 24px rgba(255, 181, 46, 0.6));
  animation: lp-float 4.5s ease-in-out infinite;
}
@keyframes lp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.lp-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 13vw, 6.2rem); line-height: 0.95; letter-spacing: 1px;
}
.lp-hero-tag {
  margin-top: 12px; font-family: var(--f-display);
  font-size: clamp(0.95rem, 3.4vw, 1.45rem); color: var(--gold-1);
}
.lp-hero-sub {
  max-width: 620px; margin: 14px auto 0; color: var(--ink-dim);
  font-size: clamp(0.92rem, 2.6vw, 1.05rem);
}
.lp-hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px;
}
.lp-hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px;
}
.lp-stat {
  min-width: 92px; padding: 12px 16px; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
}
.lp-stat b {
  display: block; font-family: var(--f-display);
  font-size: 1.7rem; color: var(--gold-2);
}
.lp-stat span { font-size: 0.72rem; color: var(--ink-dim);
  text-transform: uppercase; letter-spacing: 1px; }

/* ===============================================================
   SECTIONS
   =============================================================== */
.lp-section { max-width: 1080px; margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(16px, 5vw, 40px); }
.lp-section--fair { background: rgba(13, 17, 48, 0.55); max-width: none; }
.lp-section--fair > * { max-width: 1080px; margin-left: auto; margin-right: auto; }
.lp-h2 {
  font-family: var(--f-display); text-align: center;
  font-size: clamp(1.6rem, 5.5vw, 2.6rem); margin-bottom: 8px;
}
.lp-h3 {
  font-family: var(--f-display); font-size: 1.1rem; color: var(--gold-1);
  margin: 30px 0 14px; text-align: center;
}
.lp-lead {
  text-align: center; color: var(--ink-dim); max-width: 640px;
  margin: 6px auto 28px; font-size: 0.96rem;
}
.lp-center { text-align: center; margin-top: 32px; }

/* ---- Coin ---- */
.lp-coin { display: grid; gap: 24px; margin-top: 24px; }
.lp-coin-text p { margin-bottom: 14px; color: var(--ink-dim); }
.lp-coin-text b { color: var(--ink); }
.lp-coin-text .lp-btn { margin-top: 6px; }
.lp-specs {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.lp-specs li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: var(--r-sm);
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
}
.lp-specs span { font-size: 0.68rem; color: var(--ink-dim);
  text-transform: uppercase; letter-spacing: 1px; }
.lp-specs b { font-family: var(--f-display); color: var(--gold-2); font-size: 1.02rem; }

/* ---- Spiele ---- */
.lp-games {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.lp-game-card {
  flex: 0 1 140px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 8px 14px; border-radius: var(--r);
  background: linear-gradient(170deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  transition: transform 0.16s, border-color 0.2s, box-shadow 0.2s;
  perspective: 620px;
}
.lp-game-card:hover {
  transform: translateY(-5px); border-color: var(--gold-2);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 181, 46, 0.2);
}
.lp-game-badge {
  position: relative;
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center;
  transform-style: preserve-3d;
  transition: transform 0.32s cubic-bezier(0.3, 0.7, 0.3, 1.35);
  background: radial-gradient(circle at 50% 30%, #474f93 0%, #2c3168 42%, #181c44 74%, #0c0f2e 100%);
  border: 3px solid;
  border-color: #ffe187 #b6811d #6f4c0e #dca740;
  box-shadow: inset 0 4px 7px rgba(255, 255, 255, 0.26),
    inset 0 -12px 18px rgba(0, 0, 0, 0.68), 0 9px 18px rgba(0, 0, 0, 0.55);
}
.lp-game-shine {
  position: absolute; top: 6px; left: 13px; right: 13px; height: 40%;
  border-radius: 50%; pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}
.lp-game-badge svg, .lp-game-badge .mw-icon {
  width: 46px; height: 46px;
  transform: translateZ(24px);
  transition: transform 0.32s cubic-bezier(0.3, 0.7, 0.3, 1.35);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.62));
}
.lp-game-card:hover .lp-game-badge { transform: rotateX(16deg) rotateY(-15deg) scale(1.06); }
.lp-game-card:hover .lp-game-badge svg,
.lp-game-card:hover .lp-game-badge .mw-icon { transform: translateZ(40px) scale(1.1); }
.lp-game-name {
  font-family: var(--f-display); font-size: 0.82rem; text-align: center;
  color: var(--ink); line-height: 1.1;
}
.lp-game-cat {
  font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-2);
}

/* ---- Fair ---- */
.lp-fair {
  display: grid; gap: 14px; margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.lp-fair-card {
  padding: 22px 18px; border-radius: var(--r); text-align: center;
  background: linear-gradient(170deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
}
.lp-fair-ico { font-size: 2.4rem; margin-bottom: 8px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5)); }
.lp-fair-card h3 { font-family: var(--f-display); font-size: 1rem;
  color: var(--cyan); margin-bottom: 6px; }
.lp-fair-card p { font-size: 0.86rem; color: var(--ink-dim); }

/* ---- Link-Karten (Exchange / Stats / Wallet) ---- */
.lp-link-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.lp-link-card {
  flex: 0 1 178px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 18px 12px; border-radius: var(--r); text-align: center;
  background: linear-gradient(170deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.lp-link-card:hover {
  transform: translateY(-4px); border-color: var(--cyan);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5), 0 0 18px rgba(37, 233, 255, 0.22);
}
.lp-link-ico { width: 48px; height: 48px; display: grid; place-items: center; }
.lp-link-ico img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.55));
}
.lp-link-name { font-family: var(--f-display); font-size: 0.94rem; color: var(--ink); }
.lp-link-sub { font-size: 0.72rem; color: var(--ink-dim); }

/* ---- Community ---- */
.lp-social {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: center;
}
.lp-soc {
  flex: 0 1 180px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: linear-gradient(170deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  font-family: var(--f-display); font-size: 0.86rem;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.lp-soc:hover {
  transform: translateY(-3px); border-color: var(--sc);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
}
.lp-soc-ico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--sc) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 45%, transparent);
}
.lp-soc-ico img { width: 23px; height: 23px; object-fit: contain; }

/* ---- Final CTA ---- */
.lp-final {
  text-align: center; padding: clamp(48px, 9vw, 90px) clamp(16px, 5vw, 40px);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(255, 181, 46, 0.16), transparent 65%);
}
.lp-final-inner { max-width: 620px; margin: 0 auto; }
.lp-final .lp-lead { margin-bottom: 24px; }

/* ---- Footer ---- */
.lp-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 38px clamp(16px, 5vw, 40px) 18px;
}
.lp-footer-grid {
  max-width: 1080px; margin: 0 auto; display: grid; gap: 26px;
  grid-template-columns: 1fr;
}
.lp-footer-grid h4 {
  font-family: var(--f-display); font-size: 0.9rem; color: var(--gold-1);
  margin-bottom: 8px;
}
.lp-footer-grid a {
  display: block; color: var(--ink-dim); font-size: 0.86rem; padding: 3px 0;
}
.lp-footer-grid a:hover { color: var(--gold-1); }
.lp-brand--foot { margin-bottom: 8px; }
.lp-foot-note { font-size: 0.8rem; color: var(--ink-dim); }
.lp-footer-bar {
  max-width: 1080px; margin: 26px auto 0; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  font-size: 0.74rem; color: var(--ink-dim);
}

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (min-width: 640px) {
  .lp-coin { grid-template-columns: 1.25fr 1fr; align-items: center; }
  .lp-specs { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 800px) {
  .lp-nav-links { display: flex; }
  .lp-nav-cta { margin-left: 22px; }
}
@media (max-width: 460px) {
  .lp-game-card { flex-basis: 43%; }
  .lp-link-card { flex-basis: 44%; }
  .lp-soc { flex-basis: 100%; }
  .lp-hero-stats { gap: 8px; }
  .lp-stat { min-width: 0; flex: 1 1 40%; padding: 10px 8px; }
  .lp-btn--xl { padding: 14px 22px; font-size: 0.95rem; width: 100%; }
  .lp-hero-cta { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero-coin, .flicker { animation: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   JAHRMARKT-DEKO — Sterne · Mond · Riesenrad · Lichterkette
   (gleicher Stil wie die Spiel-App)
   ================================================================= */
.lp-stars { position: absolute; inset: 0; overflow: hidden; }
.lp-star {
  position: absolute; border-radius: 50%; background: #ffffff;
  animation: lp-twinkle 3s ease-in-out infinite;
}
@keyframes lp-twinkle { 0%, 100% { opacity: 0.18; } 50% { opacity: 0.95; } }
.lp-moon {
  position: absolute; top: 6%; right: 9%;
  width: 86px; height: 86px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fff8e2, #ffe9a6 55%, #d9b85e 100%);
  box-shadow: 0 0 60px 16px rgba(255, 230, 160, 0.32), inset -13px -9px 0 rgba(0, 0, 0, 0.12);
}
.lp-ferris { position: absolute; left: 3%; bottom: 7%; width: 210px; height: 210px; opacity: 0.4; }
.lp-ferris-wheel {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid rgba(120, 150, 255, 0.5);
  animation: lp-spin 46s linear infinite;
  background: repeating-conic-gradient(from 0deg,
    transparent 0deg 28deg, rgba(120, 150, 255, 0.4) 28deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 0 24%, #000 25%);
          mask: radial-gradient(circle, transparent 0 24%, #000 25%);
}
.lp-ferris-wheel::after {
  content: ""; position: absolute; inset: 36%; border-radius: 50%;
  border: 3px solid rgba(120, 150, 255, 0.6);
}
@keyframes lp-spin { to { transform: rotate(360deg); } }
@keyframes lp-flag {
  0%, 100% { transform: translateX(-50%) rotate(-7deg); }
  50% { transform: translateX(-50%) rotate(9deg); }
}
.lp-garland {
  display: flex; justify-content: space-around; align-items: flex-start;
  height: 30px; padding: 11px 4% 0;
  background: linear-gradient(180deg, rgba(8, 10, 26, 0.6), transparent);
}
.lp-bulb {
  width: 13px; height: 13px; border-radius: 50%; flex: none; position: relative;
  background: var(--blb, #ffe23d);
  box-shadow: 0 0 8px 2px var(--blb, #ffe23d), 0 0 18px 5px var(--blb, #ffe23d);
  animation: lp-bulb-blink 1.4s ease-in-out infinite;
}
.lp-bulb::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 7px; background: #2a2f55; border-radius: 2px 2px 0 0;
}
@keyframes lp-bulb-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.32; } }
@media (prefers-reduced-motion: reduce) {
  .lp-star, .lp-ferris-wheel, .lp-bulb, .lp-tent-roof::after { animation: none; }
}

/* =================================================================
   Sprach-Toggle in der Top-Nav
   ================================================================= */
.lp-nav-right { display: flex; align-items: center; gap: 10px; }
.lp-lang-btn {
  font-family: var(--f-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 7px 10px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 181, 46, 0.45);
  color: var(--gold-2);
  cursor: pointer;
  transition: all 0.18s;
}
.lp-lang-btn:hover { color: var(--gold-1); border-color: var(--gold-1); }

/* UI-Icons im Landing-Layout (Inline-SVG ersetzt 🪙 🎟️ etc.) */
.lp-hero-cta [data-icon] .ui-icon,
.lp-coin-text [data-icon] .ui-icon { width: 1em; height: 1em; vertical-align: -0.1em; }
.lp-fair-ico [data-icon] .ui-icon { width: 32px; height: 32px; }

/* =================================================================
   Mobile-Optimierung Landing
   ================================================================= */
@media (max-width: 900px) {
  .lp-nav { padding: 12px 16px; }
  .lp-nav-links { display: none; }
  .lp-nav-right { gap: 8px; }
  .lp-tent { padding-top: 90px; }
  .lp-tent-roof { height: 110px; }
  .lp-tent-valance { top: 100px; }
  .lp-hero-inner { padding: 30px 18px 26px; }
  .lp-hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .lp-hero-tag { font-size: 0.92rem; padding: 0 6px; }
  .lp-hero-sub { font-size: 0.86rem; padding: 0 6px; }
  .lp-hero-cta { flex-direction: column; gap: 10px; }
  .lp-hero-cta .lp-btn { width: 100%; }
  .lp-hero-stats { gap: 8px; flex-wrap: wrap; }
  .lp-stat { flex: 0 1 calc(50% - 4px); padding: 11px 6px; }
  .lp-coin { grid-template-columns: 1fr; }
  .lp-specs { grid-template-columns: 1fr 1fr; }
  .lp-games { gap: 9px; }
  .lp-game-card { flex: 0 1 calc(50% - 6px); padding: 13px 6px 11px; }
  .lp-game-badge { width: 64px; height: 64px; }
  .lp-game-badge svg, .lp-game-badge .mw-icon { width: 40px; height: 40px; }
  .lp-fair { grid-template-columns: 1fr; }
  .lp-link-grid { grid-template-columns: 1fr 1fr; }
  .lp-social { gap: 8px; }
  .lp-soc { flex: 0 1 calc(50% - 4px); }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
}

@media (max-width: 480px) {
  .lp-nav { padding: 10px 12px; }
  .lp-brand-text { font-size: 0.85rem; }
  .lp-brand-logo { width: 28px; height: 28px; }
  .lp-nav-cta { padding: 7px 12px; font-size: 0.78rem; }
  .lp-tent-roof { height: 88px; }
  .lp-tent-valance { top: 80px; height: 22px; }
  .lp-tent { padding-top: 72px; }
  .lp-hero-coin { width: 70px; height: 70px; }
  .lp-h2 { font-size: clamp(1.3rem, 6.5vw, 1.9rem); }
  .lp-h3 { font-size: 1rem; }
  .lp-lead { font-size: 0.86rem; }
  .lp-specs { grid-template-columns: 1fr; }
  .lp-link-grid { grid-template-columns: 1fr; }
  .lp-link-card { padding: 12px 10px; }
  .lp-game-card { flex: 0 1 calc(50% - 5px); }
  .lp-game-badge { width: 56px; height: 56px; }
  .lp-game-badge svg, .lp-game-badge .mw-icon { width: 34px; height: 34px; }
  .lp-game-name { font-size: 0.74rem; }
  .lp-game-cat { font-size: 0.54rem; }
  .lp-soc { flex: 0 1 100%; }
  .lp-final-inner { padding: 28px 20px; }
}

@media (pointer: coarse) {
  .lp-btn { min-height: 44px; }
  .lp-lang-btn { min-height: 40px; }
  .lp-nav-cta { min-height: 40px; }
  .lp-game-card { min-height: 130px; }
  .lp-link-card { min-height: 86px; }
  .lp-soc { min-height: 48px; }
}
