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

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

:root {
  --bg: #f7f9fc;
  --bg2: #edf0f7;
  --bg3: #e2e6f0;
  --bg-card: #ffffff;
  --green: #3a7c3a;
  --green-b: #4a8c4a;
  --green-d: #2d6a2d;
  --amber: #d97706;
  --amber-b: #f59e0b;
  --text: #1a1f2e;
  --text-muted: #5c6480;
  --text-dim: #9ba3b8;
  --border: rgba(58, 124, 58, 0.2);
  --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-green {
  color: var(--green);
}

.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(--green);
  color: #ffffff;
  padding: 12px 24px;
}

.btn-primary:hover {
  background: var(--green-b);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(145, 191, 145, 0.3);
}

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

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

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

.btn-outline:hover {
  background: rgba(145, 191, 145, 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(247, 249, 252, 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 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-logo-games {
  color: var(--green);
}

.nav-logo-dot {
  color: var(--text-dim);
}

.nav-logo-gadplan {
  color: var(--text);
}

.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(--green) !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(247, 249, 252, 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(58, 124, 58, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 124, 58, 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(145, 191, 145, 0.1);
  border: 1px solid var(--border);
  color: var(--green);
  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(--green);
  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: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.headline-highlight {
  background: linear-gradient(135deg, var(--green), var(--amber));
  -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;
}

.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(145, 191, 145, 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(145, 191, 145, 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(--bg);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.preview-screen {
  background: var(--bg);
  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(--green);
  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(--green);
  margin-bottom: 8px;
}

.ps-falling-area {
  flex: 1;
  position: relative;
  background: linear-gradient(180deg, #e8ecf4 0%, #dde3ef 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(145, 191, 145, 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(--green);
  letter-spacing: 0.05em;
}

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

.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(--amber);
  font-weight: 600;
  background: rgba(245, 158, 11, 0.1);
  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(--green);
  color: var(--green);
  background: rgba(145, 191, 145, 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(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  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(--green);
  color: var(--green);
  background: rgba(145, 191, 145, 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(--green);
}

@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(--green);
  background: rgba(145, 191, 145, 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: 900;
  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;
}

/* === 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(--green-d);
  color: var(--text);
}

.uc-tab.active {
  background: rgba(145, 191, 145, 0.1);
  border-color: var(--green);
  color: var(--green);
}

.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(--green);
  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(145, 191, 145, 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(--green);
  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: 4 / 3;
  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;
}

.game-badge-available {
  background: rgba(145, 191, 145, 0.15);
  color: var(--green);
  border: 1px solid var(--border);
}

.game-badge-soon {
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

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

/* Game Mockups */
.game-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gm-falling {
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, #e8ecf4 0%, #dde3ef 100%);
}

.gm-falling-items {
  position: relative;
  flex: 1;
  width: 100%;
}

.gm-item {
  position: absolute;
  font-size: 3.5rem;
  left: var(--x, 50%);
  animation: fallDown 2s linear infinite;
  animation-delay: var(--d, 0s);
}

.gm-score-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  padding: 4px 8px;
  background: rgba(145, 191, 145, 0.15);
  border-radius: 4px;
}

.gm-score-val {
  color: var(--amber);
}

.gm-greeting {
  padding: 12px;
}

.gm-greeting-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gm-greeting-header {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
}

.gm-gc-text {
  font-size: 0.7rem;
  color: var(--text);
  line-height: 1.5;
}

.gm-gc-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.gm-chip {
  font-size: 0.55rem;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  color: var(--text-muted);
}

.gm-chip-a {
  border-color: var(--green-d);
  color: var(--green);
  background: rgba(145, 191, 145, 0.08);
}

.gm-quiz {
  padding: 16px;
}

.gm-quiz-inner {
  width: 100%;
}

.gm-quiz-q {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  text-align: center;
}

.gm-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gm-opt {
  font-size: 0.65rem;
  padding: 6px 10px;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--text-muted);
}

.gm-opt-correct {
  border-color: var(--green);
  color: var(--green);
  background: rgba(145, 191, 145, 0.08);
}

.gm-scratch {
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}

.gm-scratch-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gm-scratch-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.gm-wheel {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0deg 60deg, var(--amber) 60deg 120deg, #3b82f6 120deg 180deg, var(--green-d) 180deg 240deg, #ec4899 240deg 300deg, var(--amber) 300deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinSlow 8s linear infinite;
  box-shadow: 0 0 20px rgba(145, 191, 145, 0.2);
}

.gm-wheel-inner {
  font-size: 1.2rem;
  z-index: 1;
}

.gm-wheel-rim {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

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

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

.gm-scratch-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

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

.game-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.game-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

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

.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;
}

.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-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(--green);
  background: rgba(145, 191, 145, 0.1);
  border: 2px solid var(--green-d);
  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(--green-d), 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(--green-d);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(145, 191, 145, 0.05) 100%);
}

.booking-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #0d0f14;
  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: 900;
  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(--green);
  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='%237a8299' 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(--green-d);
}

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

/* 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(--green);
  border-color: var(--green);
  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(--green);
  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(--green);
  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(--green);
}

.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(--green-d), 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, #f0f4f0 0%, #e4ece4 50%, #f0f4f0 100%);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(58, 124, 58, 0.2);
  border-bottom: 2px solid rgba(58, 124, 58, 0.2);
}

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

.demo-section .section-tag {
  background: rgba(58, 124, 58, 0.12);
  color: var(--green);
  border: 1px solid rgba(58, 124, 58, 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, #2d3040 0%, #1a1d2e 100%);
  border-radius: 20px;
  padding: 10px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(58, 124, 58, 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, #3a3d50, #2a2d40);
  border-radius: 0 0 3px 3px;
}

.tv-stand-base {
  width: 110px;
  height: 10px;
  background: linear-gradient(90deg, #2a2d40, #3a3d50, #2a2d40);
  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(--green);
  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, #3a7c3a, #4a9c4a);
  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(58, 124, 58, 0.4);
}

.demo-cta-group .btn-demo-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 124, 58, 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(--green);
  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(58, 124, 58, 0.0);
  transition: background 0.3s;
}

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

.game-card-header--playable:hover .game-card-play-overlay {
  background: rgba(58, 124, 58, 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(--green);
}

.nav-link-auth:hover {
  color: var(--green-b);
}

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

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

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

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
  background: var(--dark, #0d1117);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  text-align: center;
}

.proof-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.proof-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  max-width: 140px;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .proof-grid {
    gap: 32px;
  }
  .proof-divider {
    display: none;
  }
  .proof-item {
    padding: 0 16px;
    flex: 1 1 calc(50% - 32px);
  }
  .proof-num {
    font-size: 2rem;
  }
}

@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;
  }
}