/* ─────────────────────────────────────────────
   games.gadplan.com — Stylesheet
   Konzept C: Interactive Showcase
   ───────────────────────────────────────────── */

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

:root {
  /* gadplan Farbwelt: #f8efec / #6e6e6e / #ffffff (siehe gadplan.com) */
  --bg: #ffffff;
  --bg2: #f8efec;
  --bg3: #f0e1db;
  --bg-card: #ffffff;
  --accent: #6e6e6e;
  --accent-dark: #4d4d4d;
  --accent-soft: #a8a8a8;
  --text: #373737;
  --text-muted: #6e6e6e;
  --text-dim: #a3a3a3;
  --border: rgba(110, 110, 110, 0.22);
  --border2: rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.15);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 24px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(110, 110, 110, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border: 1.5px solid var(--border2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 10px 20px;
  border: 1.5px solid var(--accent-soft);
}

.btn-outline:hover {
  background: rgba(110, 110, 110, 0.1);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* Logo mit weißem JPG-Hintergrund auf farbigem Untergrund (#651):
   multiply blendet das Weiß gegen den Footer-Hintergrund aus, der dunkle
   Schriftzug bleibt unverändert stehen. */
.logo-knockout {
  mix-blend-mode: multiply;
  background: transparent;
}

.nav-logo-suffix {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-left: 1px solid var(--border2);
  padding-left: 12px;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-link-external {
  color: var(--accent) !important;
  font-size: 0.85rem !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 24px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border2);
}

.nav-mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 1rem;
  color: var(--text-muted);
}

.nav-mobile a:last-child {
  border: none;
  margin-top: 8px;
}

.nav-mobile .btn-primary {
  color: #ffffff;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 110, 110, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 110, 110, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 110, 110, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.headline-highlight {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
}

/* Hero Preview Phone */
.hero-preview {
  position: relative;
  display: flex;
  justify-content: center;
}

.preview-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(110, 110, 110, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.preview-phone {
  position: relative;
  z-index: 1;
  width: 260px;
  background: var(--bg-card);
  border: 1.5px solid rgba(110, 110, 110, 0.3);
  border-radius: 32px;
  padding: 16px 12px 20px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.preview-notch {
  width: 60px;
  height: 6px;
  background: var(--bg3);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.preview-screen {
  background: var(--bg2);
  border-radius: 20px;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.preview-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.pi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s;
}

.pi-dot.pi-active {
  background: var(--accent);
  width: 18px;
  border-radius: 3px;
}

/* Preview Slides */
.preview-slide {
  position: absolute;
  inset: 0;
  padding: 16px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.preview-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.preview-slide.exit {
  opacity: 0;
  transform: translateX(-30px);
}

/* Slide 1: Falling Items */
.ps-falling {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ps-falling-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.ps-falling-area {
  flex: 1;
  position: relative;
  background: linear-gradient(180deg, #f8efec 0%, #f0e1db 100%);
  border-radius: 8px;
  overflow: hidden;
}

.ps-item {
  position: absolute;
  font-size: 2.5rem;
  animation: fallDown 2.5s linear infinite;
}

.ps-item-correct {
  filter: drop-shadow(0 0 6px rgba(110, 110, 110, 0.6));
}

.ps-item-wrong {
  filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.5));
  opacity: 0.8;
}

@keyframes fallDown {
  0% {
    transform: translateX(var(--x, 50%)) translateY(-40px);
  }

  100% {
    transform: translateX(var(--x, 50%)) translateY(320px);
  }
}

.ps-falling-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Slide 2: Greeting */
.ps-greeting {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-greeting-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.ps-greeting-card {
  flex: 1;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--bg3));
}

.ps-card-inner {
  background: var(--bg3);
  border-radius: 10px;
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ps-card-to {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
}

.ps-card-text {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--text);
  flex: 1;
}

.ps-card-tag {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg2);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.ps-greeting-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ps-chip {
  font-size: 0.6rem;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  color: var(--text-muted);
}

.ps-chip-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(110, 110, 110, 0.1);
}

/* Slide 3: Soon */
.ps-soon {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.ps-soon-icon {
  font-size: 2.5rem;
}

.ps-soon-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.ps-soon-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ps-soon-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

.ps-soon-phones {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.ps-mini-phone {
  width: 32px;
  height: 48px;
  background: var(--bg3);
  border: 1.5px solid var(--border2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

.ps-mp-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(110, 110, 110, 0.1);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(4px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* === TICKER === */
.ticker-section {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  padding-left: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker 18s linear infinite;
}

.ticker-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
}

.ticker-item:hover {
  color: var(--accent);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(110, 110, 110, 0.08);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === EVENT PHOTOS (#658) === */
.event-photos {
  padding: 80px 0 40px;
}

.event-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.event-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border2);
  background: var(--bg2);
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === USE CASES === */
.usecases {
  padding: 100px 0;
}

.usecase-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.uc-tab {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.uc-tab:hover {
  border-color: var(--accent-soft);
  color: var(--text);
}

.uc-tab.active {
  background: rgba(110, 110, 110, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.usecase-panels {
  position: relative;
}

.uc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.uc-panel.active {
  display: grid;
}

.uc-panel h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.uc-panel p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.uc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.uc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.uc-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.uc-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  transition: transform 0.3s;
}

.uc-visual-card:hover {
  transform: translateY(-4px);
}

.ucv-icon {
  font-size: 2.5rem;
}

.ucv-title {
  font-size: 1rem;
  font-weight: 700;
}

.ucv-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ucv-metric {
  margin-top: 8px;
  padding: 10px 20px;
  background: rgba(110, 110, 110, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
}

.ucv-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  margin-right: 6px;
}

/* === GAMES === */
.games {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.game-card-soon {
  opacity: 0.7;
}

.game-card-soon:hover {
  opacity: 1;
}

.game-card-header {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.badge-ki {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 1px solid var(--border2);
  backdrop-filter: blur(4px);
}

.game-badge-soon {
  background: var(--bg2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.game-icon-area {
  width: 100%;
  height: 100%;
}

.game-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(3 * 1.6 * 0.85rem);
}

.game-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  height: 26px;
  overflow: hidden;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border2);
  color: var(--text-muted);
}

.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.game-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.game-price strong {
  color: var(--text);
  font-size: 1rem;
}

/* === PROCESS === */
.prozess {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  animation: fadeInUp 0.6s both;
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(3) {
  animation-delay: 0.2s;
}

.step:nth-child(5) {
  animation-delay: 0.3s;
}

.step:nth-child(7) {
  animation-delay: 0.4s;
}

.step:nth-child(9) {
  animation-delay: 0.5s;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  background: rgba(110, 110, 110, 0.1);
  border: 2px solid var(--accent-soft);
  border-radius: 50%;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  margin-top: 28px;
  opacity: 0.4;
}

/* === BOOKING === */
.buchung {
  padding: 100px 0;
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition);
}

.booking-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.booking-card-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(110, 110, 110, 0.05) 100%);
}

.booking-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.booking-icon {
  font-size: 2rem;
}

.booking-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.booking-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.booking-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booking-features li::before {
  content: none;
}

.booking-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

/* === FEATURES === */
.features {
  padding: 80px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CONTACT === */
.kontakt {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.kontakt-text .section-tag {
  display: inline-block;
}

.kontakt-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 16px 0 20px;
}

.kontakt-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ki-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.ki-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.ki-item a {
  color: var(--accent);
  transition: opacity 0.2s;
}

.ki-item a:hover {
  opacity: 0.8;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e6e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

.form-note a {
  color: var(--accent);
  text-decoration: underline;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: -2px;
}

/* Multi-Step Form */
.form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.form-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border2);
  z-index: 0;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.form-step.active .step-number {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.step-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.3s ease;
}

.form-step.active .step-label {
  color: var(--accent);
  font-weight: 600;
}

.form-step-content {
  display: none !important;
  animation: fadeIn 0.3s ease;
}

.form-step-content.active {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.form-actions button {
  flex: 1;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: var(--bg3);
  border-radius: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

@media (max-width: 768px) {
  .form-steps {
    gap: 8px;
  }
  .step-label {
    display: none;
  }
  .form-actions {
    flex-direction: column;
  }
}

/* === FOOTER === */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border2);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-preview {
    order: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-inner .btn {
    display: none;
  }

  .nav-burger {
    display: flex;
    margin-left: auto;
  }

  .nav-mobile.open {
    display: flex;
  }

  .hero-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }

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

  .uc-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent-soft), transparent);
    margin: 0;
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .preview-phone {
    width: 220px;
  }

  .preview-screen {
    height: 320px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }
}

/* ══════════════════════════════════════════════
   DEMO SECTION & TV PORTRAIT TOTEM
══════════════════════════════════════════════ */

.demo-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #f8efec 0%, #f0e1db 50%, #f8efec 100%);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(110, 110, 110, 0.2);
  border-bottom: 2px solid rgba(110, 110, 110, 0.2);
}

.demo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 100%, rgba(110, 110, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.demo-section .section-tag {
  background: rgba(110, 110, 110, 0.12);
  color: var(--accent);
  border: 1px solid rgba(110, 110, 110, 0.3);
}

.demo-section h2 {
  color: var(--text);
}

.demo-section .section-sub {
  color: var(--text-muted);
}

.demo-layout {
  display: flex;
  gap: 72px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}

/* TV Totem */
.tv-totem-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tv-totem {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-bezel {
  width: 288px;
  height: 512px;
  background: linear-gradient(160deg, #2e2e2e 0%, #1b1b1b 100%);
  border-radius: 20px;
  padding: 10px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(110, 110, 110, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.tv-bezel::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.tv-screen {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.tv-iframe {
  width: 1080px;
  height: 1920px;
  border: none;
  transform: scale(calc(268 / 1080));
  transform-origin: top left;
  pointer-events: auto;
  display: block;
}

.tv-stand-neck {
  width: 18px;
  height: 36px;
  background: linear-gradient(180deg, #3d3d3d, #2b2b2b);
  border-radius: 0 0 3px 3px;
}

.tv-stand-base {
  width: 110px;
  height: 10px;
  background: linear-gradient(90deg, #2b2b2b, #3d3d3d, #2b2b2b);
  border-radius: 5px;
}

/* Demo info panel */
.demo-info {
  max-width: 380px;
}

.demo-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.demo-info>p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.demo-features-list {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.demo-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.925rem;
  border-bottom: 1px solid var(--border2);
}

.demo-features-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.demo-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-cta-group .btn-demo-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #6e6e6e, #4d4d4d);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(110, 110, 110, 0.4);
}

.demo-cta-group .btn-demo-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(110, 110, 110, 0.5);
}

.demo-cta-group .btn-demo-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--border2);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.demo-cta-group .btn-demo-buy:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* Game card small iframe preview */
.game-icon-area--iframe {
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.game-card-preview {
  width: 540px;
  height: 960px;
  border: none;
  transform: scale(calc(160 / 540));
  transform-origin: top left;
  pointer-events: none;
  display: block;
}

.game-card-preview-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Game card playable overlay */
.game-card-header--playable {
  display: flex;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.game-card-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(110, 110, 110, 0.0);
  transition: background 0.3s;
}

.game-play-btn {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(110, 110, 110, 0.4);
}

.game-card-header--playable:hover .game-card-play-overlay {
  background: rgba(110, 110, 110, 0.15);
}

.game-card-header--playable:hover .game-play-btn {
  opacity: 1;
  transform: scale(1);
}

/* Auth nav links */
.nav-link-auth {
  font-weight: 600;
  color: var(--accent);
}

.nav-link-auth:hover {
  color: var(--accent-dark);
}

@media (max-width: 1024px) {
  .demo-layout {
    gap: 48px;
  }

  .tv-bezel {
    width: 240px;
    height: 428px;
  }

  .tv-iframe {
    transform: scale(calc(220 / 1080));
  }
}

  @media (max-width: 768px) {
  .demo-section {
    padding: 64px 0;
  }

  .demo-layout {
    flex-direction: column;
    gap: 40px;
  }

  .demo-info {
    text-align: center;
    max-width: 100%;
  }

  .demo-features-list li {
    justify-content: center;
  }

  .demo-cta-group {
    align-items: center;
  }
}
/* ══════════════════════════════════════════════
   SPIELSZENEN — konkrete Spielsituationen in den
   Karten-Bildbereichen (3:2), siehe _game-scenes.pug
══════════════════════════════════════════════ */

.scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(160deg, #f8efec 0%, #f0e1db 100%);
  overflow: hidden;
}

.scene-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  z-index: 2;
  white-space: nowrap;
}

.scene-chip strong {
  color: var(--text);
  font-weight: 800;
}

.scene-chip s {
  letter-spacing: 0.2em;
}

.scene-chip-bottom {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* Falling Items / Catch & Win */
.sc-fall {
  position: absolute;
  top: -52px;
  left: var(--x, 50%);
  font-size: 44px;
  line-height: 1;
  animation: scFall 3.2s linear infinite;
  animation-delay: var(--d, 0s);
}

.sc-fall-sm {
  font-size: 34px;
}

@keyframes scFall {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(340px);
  }
}

.sc-basket {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 54px;
  line-height: 1;
  z-index: 1;
}

/* Stopwatch */
.scene-stopwatch {
  gap: 5px;
}

.sc-sw-time {
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sc-sw-ms {
  color: var(--accent-soft);
}

.sc-sw-target {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sc-sw-stop {
  margin-top: 7px;
  background: var(--accent-dark);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 10px 26px;
  pointer-events: none;
}

/* Slot Machine */
.sc-slot-frame {
  display: flex;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.sc-slot-cell {
  width: 62px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  background: var(--bg2);
  border-radius: 8px;
  animation: scSlotSpin 0.9s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes scSlotSpin {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-6px);
  }

  75% {
    transform: translateY(6px);
  }
}

/* Glücksrad */
.scene-wheel {
  gap: 0;
}

.sc-wheel-pointer {
  width: 0;
  height: 0;
  z-index: 2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid var(--accent-dark);
  margin-bottom: -7px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.sc-wheel {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: conic-gradient(#6e6e6e 0 60deg, #f8efec 60deg 120deg, #a8a8a8 120deg 180deg, #ffffff 180deg 240deg, #4d4d4d 240deg 300deg, #e3cdc4 300deg 360deg);
  border: 5px solid #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scWheelSpin 9s linear infinite;
}

.sc-wheel-hub {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border2);
}

@keyframes scWheelSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Perfect Circle */
.sc-circle-svg {
  width: 130px;
  height: 130px;
}

/* Quiz Battle */
.sc-quiz-card {
  width: min(240px, 78%);
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sc-quiz-q {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.sc-quiz-opt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 7px 12px;
}

.sc-quiz-opt-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Finde den Fehler */
.scene-spot {
  flex-direction: row;
  gap: 12px;
}

.sc-spot-pane {
  position: relative;
  width: 126px;
  height: 150px;
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.sc-spot-emoji {
  position: absolute;
  font-size: 29px;
  line-height: 1;
}

.sc-spot-diff::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2.5px dashed var(--accent-dark);
  border-radius: 50%;
}

/* Wimmelbild */
.sc-w {
  position: absolute;
  font-size: 29px;
  line-height: 1;
}

.sc-w-target::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2.5px dashed var(--accent-dark);
  border-radius: 50%;
}

.sc-w-lens {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

/* Labyrinth */
.sc-maze-svg {
  width: min(250px, 82%);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.08));
}

/* Tresorknacker */
.sc-safe-card {
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}

.sc-safe-display {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  background: var(--bg2);
  border-radius: 6px;
  padding: 5px 16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.sc-safe-keys {
  display: grid;
  grid-template-columns: repeat(3, 32px);
  gap: 5px;
}

.sc-safe-key {
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Buchstabenrätsel / Kreuzworträtsel */
.sc-word-row {
  display: flex;
  gap: 6px;
}

.sc-tile {
  width: 34px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 7px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sc-tile-open {
  background: var(--bg2);
  border-style: dashed;
  border-color: var(--accent-soft);
}

.sc-cross {
  display: grid;
  grid-template-columns: repeat(5, 38px);
  grid-template-rows: repeat(4, 38px);
  gap: 4px;
}

.sc-cross .sc-tile {
  width: 100%;
  height: 100%;
}

/* Sudoku */
.sc-sudoku {
  display: grid;
  grid-template-columns: repeat(4, 37px);
  gap: 4px;
}

.sc-sudoku-cell {
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.sc-sudoku-empty {
  background: var(--bg2);
}

/* Memory */
.sc-memory {
  display: grid;
  grid-template-columns: repeat(3, 56px);
  gap: 8px;
}

.sc-mem-card {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 9px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.sc-mem-open {
  background: #ffffff;
  border: 2px solid var(--accent-dark);
  color: inherit;
  font-size: 27px;
}

/* Price Guesser */
.scene-price {
  gap: 8px;
}

.sc-price-product {
  font-size: 56px;
  line-height: 1;
}

.sc-price-tag {
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 4px 14px;
  font-weight: 800;
  color: var(--text);
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}

.sc-price-slider {
  position: relative;
  width: 168px;
  height: 6px;
  background: rgba(110, 110, 110, 0.25);
  border-radius: 3px;
  margin-top: 10px;
}

.sc-price-handle {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: var(--accent-dark);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Schließfach Check */
.sc-lockers {
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: 7px;
}

.sc-locker {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #ffffff, #f0e1db);
  border: 1.5px solid var(--accent-soft);
  border-radius: 8px;
  font-weight: 800;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sc-locker-open {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  font-size: 26px;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.35);
}

/* Bug Sweeper */
.sc-sweeper {
  display: grid;
  grid-template-columns: repeat(4, 42px);
  gap: 4px;
}

.sc-ms-cell {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-muted);
}

.sc-ms-num,
.sc-ms-bug {
  background: #ffffff;
  border: 1px solid var(--border2);
  font-size: 0.85rem;
}

.sc-ms-bug {
  font-size: 19px;
}

/* Corporate Snake */
.sc-snake-board {
  position: relative;
  width: 176px;
  height: 90px;
}

.sc-snake-seg {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 7px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.sc-snake-head {
  background: var(--accent-dark);
}

.sc-snake-apple {
  position: absolute;
  font-size: 30px;
  line-height: 1;
}

/* Greifarm */
.sc-claw-rail {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 8px;
  background: var(--accent-soft);
  border-radius: 4px;
}

.sc-claw-rod {
  position: absolute;
  top: 27px;
  left: 50%;
  width: 4px;
  height: 48px;
  background: var(--accent-soft);
  transform: translateX(-50%);
}

.sc-claw {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 34px;
  line-height: 1;
}

.sc-claw-prizes {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 40px;
  line-height: 1;
}

/* KI Grußkarte */
.sc-greet-card {
  width: min(250px, 80%);
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-greet-header {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.04em;
}

.sc-greet-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sc-greet-chips {
  display: flex;
  gap: 6px;
}

.sc-greet-chip {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  color: var(--text-muted);
}

.sc-greet-chip-active {
  background: var(--bg2);
  border-color: var(--accent-soft);
  color: var(--text);
}

/* Digitales Gästebuch */
.scene-book {
  background: linear-gradient(160deg, #2e2e2e 0%, #1b1b1b 100%);
}

.sc-book {
  position: relative;
  width: 96px;
  height: 128px;
}

.sc-book-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #5a3a08, #8b6914, #c9a84c, #f4d36a, #c9a84c, #8b6914);
  border-radius: 3px 9px 9px 3px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.sc-book-num {
  font-family: serif;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.sc-book-years {
  font-size: 12px;
  font-weight: 800;
  color: #1a1a1a;
}

.sc-book-spine {
  position: absolute;
  left: -8px;
  top: 2px;
  width: 8px;
  height: calc(100% - 4px);
  background: linear-gradient(to right, #3a2005, #6b4f10, #8b6914);
  border-radius: 2px 0 0 2px;
}

.sc-book-pages {
  position: absolute;
  right: -4px;
  top: 3px;
  width: 4px;
  height: calc(100% - 6px);
  background: repeating-linear-gradient(to right, #f5f0e8 0 1px, #ddd8cc 1px 2px);
}

.scene-book .scene-chip {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

/* Schmale Viewports: Szenen-Elemente proportional verkleinern */
@media (max-width: 380px) {
  .sc-wheel {
    width: 112px;
    height: 112px;
  }

  .sc-spot-pane {
    width: 106px;
    height: 128px;
  }

  .sc-slot-cell {
    width: 52px;
    height: 62px;
    font-size: 32px;
  }

  .sc-sweeper {
    grid-template-columns: repeat(4, 36px);
  }

  .sc-ms-cell {
    height: 34px;
  }

  .sc-cross {
    grid-template-columns: repeat(5, 32px);
    grid-template-rows: repeat(4, 32px);
  }

  .sc-lockers {
    grid-template-columns: repeat(3, 50px);
  }

  .sc-locker {
    height: 60px;
  }

  .sc-sw-time {
    font-size: 2.6rem;
  }
}
