/* ── Fonts ────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Boldstrom';
  src: url('/fonts/Boldstrom.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fbfbfd;
  --bg-alt: #f5f5f7;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --border: #d2d2d7;
  --accent-from: #C0196A;
  --accent-to: #E8426A;
  --accent: #C0196A;
  --accent-gradient: linear-gradient(135deg, #C0196A 0%, #E8426A 100%);
  --accent-light: #fce4ef;
  --accent-text: #9a1255;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --radius: 18px;
  --radius-sm: 10px;
  --nav-height: 83px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 980px;
  transition: background .2s, transform .1s, box-shadow .2s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent-gradient);
  color: var(--white);
  border-color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.btn-primary:hover { filter: brightness(1.07); box-shadow: 0 4px 20px rgba(0,201,167,.35); }

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: #b0b0b5; box-shadow: var(--shadow-md); }

.btn-sm { font-size: 13px; padding: 7px 16px; }
.btn-lg { font-size: 17px; padding: 16px 40px; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 45px;
  width: auto;
  display: block;
}
.nav-logo:hover { opacity: .7; transition: opacity .2s; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .btn-primary { color: var(--white); }
.nav-links .btn-primary:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-height) + 80px) 0 100px;
  text-align: left;
  background:
    radial-gradient(ellipse 55% 75% at 22% 65%, rgba(185, 25, 100, 0.80) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 55% 0%,  rgba(8, 185, 195, 0.85) 0%, transparent 65%),
    #070708;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.5));
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@media (max-width: 780px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-illustration {
    order: -1;
  }
  .hero-illustration-img {
    max-width: 280px;
  }
}

.hero-eyebrow {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,.85);
}

.hero-title {
  font-family: 'Boldstrom', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .gradient-word {
  color: var(--white);
  opacity: .85;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: var(--white);
  color: var(--text);
  border-color: transparent;
  text-shadow: none;
}
.hero-actions .btn-primary:hover {
  filter: none;
  box-shadow: 0 4px 28px rgba(255,255,255,.2);
  opacity: .92;
}
.hero-actions .btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  box-shadow: none;
}
.hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.55);
  box-shadow: none;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-gradient {
  background:
    radial-gradient(ellipse 55% 75% at 22% 65%, rgba(185, 25, 100, 0.80) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 55% 0%,  rgba(8, 185, 195, 0.85) 0%, transparent 65%),
    #070708;
  color: var(--white);
}

.section-header {
  text-align: left;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Boldstrom', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: normal;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
}

/* ── Events Pattern ──────────────────────────────────────────────────────── */
#events {
  position: relative;
}
#events::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 -80 260.9 260.9'%3E%3Cpath fill='%23b0b0b0' d='M98.4,95.8c-.5,1.3-1.4,2.1-2.7,2.6-4.9,1.9-12.5,2.4-17.8,2.5-16.3.1-34.2-3-49-10.1-5.3-2.6-10.1-5.6-14.5-9.5s-9.6-10.8-12-17.7C.3,57.4-.4,50.9.3,44.4,2.6,21.8,20.9,3.2,43.5.4c6.2-.8,12.4-.3,18.3,1.5s14.4,6.7,19.7,12.8c3.7,4.3,6.8,9,9.3,14.2,7.4,15.2,10.5,34.1,10.1,50.9-.1,4.8-.7,11.6-2.5,16ZM71.2,46.2c-.7-12.3-10.8-21.9-23.1-22-13.7,0-24.7,11.4-23.9,25.1.6,11.6,9.7,20.9,21.2,21.8,14.3,1.2,26.6-10.6,25.8-25Z'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 144px 144px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
#events > .container {
  position: relative;
  z-index: 1;
}

/* ── Feedback Pattern ────────────────────────────────────────────────────── */
#feedback {
  position: relative;
  min-height: 560px;
}
#feedback::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 -80 302.9 318.3'%3E%3Cpath fill='%23ffffff' d='M103.3,5.5c-7.3-7.3-18.4-7.4-25.8,0L5.5,77.4c-6.8,6.8-7.7,18-.7,25l35.6,35.6c7.3,7.3,18.9,6,26.1-1.3l20.7,20.5c1,1,3.7,1.6,4.7.9.8-.5,2.1-2.9,2-4l-3.6-41.3,47.2-47.4c7.3-7.3,7.1-18.6-.2-25.9L103.3,5.5ZM79.8,91.6c1.2,1.2,1.2,3.2,0,4.5l-27.1,27.1c-1.2,1.2-3.2,1.2-4.5,0l-27.1-27.1c-1.2-1.2-1.2-3.2,0-4.5l27.1-27.1c1.2-1.2,3.2-1.2,4.5,0l27.1,27.1ZM112.4,58.3l-26.6,26.6c-.7.7-1.7.7-2.4,0l-3.2-3c-.7-.7-.7-1.8,0-2.5l26.7-26.7c.7-.7,1.8-.7,2.5,0l3.1,3.1c.7.7.7,1.8,0,2.5ZM69.7,71.6c-.7-.7-.7-1.8,0-2.5l21.3-21.3c.7-.7,1.8-.7,2.5,0l3.1,3.1c.7.7.7,1.8,0,2.5l-21.2,21.2c-.7.7-1.7.7-2.4,0l-3.2-3ZM102.9,26.2l-38,38c-.6.6-1.7.7-2.4,0-1.1-.9-2.1-1.9-3.3-3.1-.7-.7-.7-1.8,0-2.5l38-38c.7-.7,1.8-.7,2.4,0l3.1,3c.7.7.7,1.8,0,2.5Z'/%3E%3Cpath fill='%23ffffff' d='M49.7,101.4h-6.1s0,12.1,0,12.1l6.4,6.4c.3.3.7.3,1,0l25.7-25.7c.3-.3.3-.7,0-1l-11.2-11.2h-15.8s0,19.4,0,19.4Z'/%3E%3Cpath fill='%23ffffff' d='M34.6,102c2.9.2,5.4-1.9,5.6-4.7.2-2.9-2-5.4-4.8-5.6-2.9-.2-5.3,2-5.5,4.8-.1,1.7.5,3.2,1.8,4.3.8.7,1.8,1.1,2.9,1.2Z'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 144px 144px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}
#feedback > .container {
  position: relative;
  z-index: 1;
}

/* ── Mitspieler Pattern ──────────────────────────────────────────────────── */
#mitspieler {
  position: relative;
}
#mitspieler::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 -80 299.9 300'%3E%3Cpath fill='%23b0b0b0' d='M42.2,37.5c6.9-9.5,4.8-22.8-4.8-29.7C28.2,1.2,15,2.7,7.8,12.6c-7.3,10-4.4,23.4,5.2,30,9.5,6.5,22.5,4.3,29.2-5Z'/%3E%3Cpath fill='%23b0b0b0' d='M38.5,101.4c6.9-9.5,4.8-22.8-4.8-29.7-9.2-6.6-22.5-5.1-29.6,4.8-7.3,10-4.4,23.4,5.2,30,9.5,6.5,22.5,4.3,29.2-5Z'/%3E%3Cpath fill='%23b0b0b0' d='M106.1,33.7c6.9-9.5,4.8-22.8-4.8-29.7-9.2-6.6-22.5-5.1-29.6,4.8-7.3,10-4.4,23.4,5.2,30,9.5,6.5,22.5,4.3,29.2-5Z'/%3E%3Cpath fill='%23b0b0b0' d='M60.4,65.2c-7.3,10-4.4,23.4,5.2,30,9.5,6.5,22.5,4.3,29.2-5,6.9-9.5,4.8-22.8-4.8-29.7-9.2-6.6-22.5-5.1-29.6,4.8Z'/%3E%3Cpath fill='%23b0b0b0' d='M103.7,82.7c-2.3,10.9-10.1,18.8-21.1,21.1-2.7,11-.1,17,8.5,24.8,3,.2,5.9-.2,8.6-1.7,11.4-6.3,20.9-15.6,27.2-27.3,1.5-2.8,1.8-5.5,1.6-8.3-7.7-8.6-13.8-11.2-24.8-8.5Z'/%3E%3Cpath fill='%23b0b0b0' d='M72.3,103.7c-7.1-1.9-12.2-5-16.5-11l-8.4.9c-2.2,11.1-10.3,19-21.2,21.3-.7,4.2-1.5,8.4-.2,12.4,1.5,4.7,4.7,9.4,9,12,8,4.7,38.4-23.2,37.3-35.7Z'/%3E%3Cpath fill='%23b0b0b0' d='M115,26.3c-2.3,11.1-10.3,18.9-21.3,21.1l-.9,8.4c5.9,4.3,9.1,9.4,11,16.5,2.4-.1,5.1-.6,7.2-1.8,11.5-6.3,20.9-15.5,27.2-27.4,1.2-2.3,2.4-6.2,1.3-8.1-5-8.3-15.3-11.7-24.5-8.7Z'/%3E%3Cpath fill='%23b0b0b0' d='M44.2,75.3c2.7-1,5.8-2.4,7.7-4.2,2.7-9.8,9.7-16.9,19.8-19.4l3.7-7.5c-6-3.8-9.4-8.3-11.8-14.7-4.2-.8-8.5-.5-12.5.5-2.2,11.1-10.4,18.9-21.2,21.1-.9,4.3-1.1,8.3-.4,12.4,6.4,2.3,10.9,5.9,14.7,11.7Z'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 144px 144px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
#mitspieler > .container {
  position: relative;
  z-index: 1;
}

/* ── Events Filter ────────────────────────────────────────────────────────── */
.events-filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.events-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 980px;
  padding: 10px 18px;
  max-width: 360px;
  transition: border-color .2s, box-shadow .2s;
}
.events-search-wrap:focus-within {
  border-color: var(--accent-from);
  box-shadow: 0 0 0 3px rgba(192,25,106,.1);
}
.events-search-wrap svg { flex-shrink: 0; color: var(--text-secondary); }
.events-search-wrap input {
  border: none;
  background: none;
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
  padding: 0;
}
.events-search-wrap input::placeholder { color: var(--text-secondary); }

.skill-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.skill-filter-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 980px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .15s;
}
.skill-filter-btn:hover { border-color: var(--accent-from); color: var(--accent-from); }
.skill-filter-btn.active {
  background: var(--accent-gradient);
  color: var(--white);
  border-color: transparent;
}

/* Skill-Badge auf der Event-Karte */
.skill-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 3px 10px;
  border-radius: 980px;
  border: 1px solid;
}

/* Gespielt wird */
.event-games {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.event-games-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.event-games-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.game-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent-text);
  border-radius: 980px;
}

/* Form-Hint */
.form-hint {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: -2px;
}

/* ── Event Cards ──────────────────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: var(--radius-sm);
  width: 56px;
  height: 56px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.event-date-badge .day { font-size: 22px; }
.event-date-badge .month { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }

.event-type-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-alt);
  padding: 3px 10px;
  border-radius: 980px;
  border: 1px solid var(--border);
}

.event-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.event-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.event-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.event-meta-row svg { flex-shrink: 0; opacity: .6; }

/* ── State Placeholder ────────────────────────────────────────────────────── */
.state-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.state-placeholder svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  opacity: .3;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent-from);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Form ─────────────────────────────────────────────────────────────────── */
.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group:last-child,
.form-row:last-child {
  margin-bottom: 0;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

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

input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: #b0b0b5; }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent-from);
  box-shadow: 0 0 0 3px rgba(0,201,167,.15);
  background: var(--white);
}
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-error {
  background: #fff2f2;
  color: #c00;
  border: 1.5px solid #fcc;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.form-footer-left {
  justify-content: flex-start;
}
.form-footer-left .btn {
  padding-left: 48px;
  padding-right: 48px;
}
}

.form-optional {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ── Star Rating ─────────────────────────────────────────────────────────── */
.star-rating {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.star {
  background: none;
  border: none;
  font-size: 36px;
  color: var(--border);
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: color .15s, transform .1s;
}

.star:hover,
.star.hover,
.star.active {
  color: #f5a623;
}

.star:hover {
  transform: scale(1.15);
}

.form-note {
  font-size: 13px;
  color: var(--text-secondary);
}

.form-success {
  background: var(--white);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.success-icon {
  width: 56px;
  height: 56px;
  background: #d4f1dd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 26px; height: 26px; stroke: #1a7a36; }

.form-success h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); margin-bottom: 24px; }

/* ── Consent ──────────────────────────────────────────────────────────────── */
.consent-wrap {
  margin-top: 10px;
}
.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
}

/* ── Promo Section ────────────────────────────────────────────────────────── */
@keyframes promo-blob-pink {
  0%   { transform: translate(0%,   0%);  }
  33%  { transform: translate(8%,  -10%); }
  66%  { transform: translate(-6%,  8%);  }
  100% { transform: translate(0%,   0%);  }
}

@keyframes promo-blob-cyan {
  0%   { transform: translate(0%,  0%);  }
  33%  { transform: translate(-9%, 12%); }
  66%  { transform: translate(7%, -8%);  }
  100% { transform: translate(0%,  0%);  }
}

.promo-section {
  position: relative;
  background: #070708;
  padding: 140px 0;
  overflow: hidden;
}

.promo-section::before,
.promo-section::after {
  content: '';
  position: absolute;
  inset: -40%;
  pointer-events: none;
}

.promo-section::before {
  background: radial-gradient(ellipse 40% 55% at 40% 60%, rgba(185, 25, 100, 0.85) 0%, transparent 70%);
  animation: promo-blob-pink 12s ease-in-out infinite;
}

.promo-section::after {
  background: radial-gradient(ellipse 38% 52% at 60% 25%, rgba(8, 185, 195, 0.90) 0%, transparent 65%);
  animation: promo-blob-cyan 15s ease-in-out infinite;
}

.promo-section > * {
  position: relative;
  z-index: 1;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.promo-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.promo-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.promo-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(185,25,100,.25) 0%, rgba(8,185,195,.2) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.4);
  font-size: 14px;
}
.promo-img-placeholder svg { width: 80px; height: 80px; }

.promo-eyebrow {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.promo-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.promo-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.promo-text {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.promo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-section .btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
  box-shadow: none;
}
.promo-section .btn-secondary:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  box-shadow: none;
}

@media (max-width: 680px) {
  .promo-grid { grid-template-columns: 1fr; gap: 32px; }
  .promo-image { max-height: 280px; aspect-ratio: 16/9; }
}

/* ── Spielmarkt Pattern ──────────────────────────────────────────────────── */
#markt {
  position: relative;
}
#markt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 -80 333.6 333.6'%3E%3Cpath fill='%23ffffff' d='M91.7.9L.9,91.7c-1.2,1.2-1.2,3,0,4.2l76.8,76.8c1.2,1.2,3,1.2,4.2,0l90.8-90.8c1.2-1.2,1.2-3,0-4.2L95.9.9c-1.2-1.2-3-1.2-4.2,0ZM104.8,140.7c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM78.5,114.4c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM52.2,88.1c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM135.4,110.1c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM109.1,83.8c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM82.8,57.5c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM166.1,79.4c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM139.8,53.1c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3ZM113.5,26.8c.5.5.5,1.3,0,1.8l-24.1,24.1c-.5.5-1.3.5-1.8,0l-19.3-19.3c-.5-.5-.5-1.3,0-1.8l24.1-24.1c.5-.5,1.3-.5,1.8,0l19.3,19.3Z'/%3E%3Crect fill='%23ffffff' x='70.5' y='141.9' width='6.6' height='22.9' rx='1.2' ry='1.2' transform='translate(-86.8 97.1) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='75.7' y='134.7' width='10.7' height='22.9' rx='1.2' ry='1.2' transform='translate(-79.6 100.1) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='88.1' y='135.2' width='10.7' height='12.2' rx='1.2' ry='1.2' transform='translate(-72.5 107.5) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='74.6' y='84.2' width='10.7' height='21.2' rx='1.2' ry='1.2' transform='translate(-43.6 84.3) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='85.3' y='78.8' width='10.7' height='16.8' rx='1.2' ry='1.2' transform='translate(-35.1 89.7) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='36.2' y='73.4' width='6.6' height='21.2' rx='1.2' ry='1.2' transform='translate(-47.9 52.6) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='28.2' y='83.7' width='10.7' height='17.7' rx='1.2' ry='1.2' transform='translate(-55.6 50.8) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='18.3' y='89.3' width='10.7' height='21.2' rx='1.2' ry='1.2' transform='translate(-63.7 46) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='108.2' y='104' width='7.1' height='22.9' rx='1.2' ry='1.2' transform='translate(-48.9 112.8) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='102.1' y='110.1' width='7.1' height='22.9' rx='1.2' ry='1.2' transform='translate(-55 110.3) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='113.6' y='96.3' width='11.6' height='22.9' rx='1.2' ry='1.2' transform='translate(-41.2 116) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='46.9' y='122.8' width='22.9' height='7.1' rx='1.2' ry='1.2' transform='translate(-72.2 78.3) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='41.4' y='118' width='22.9' height='5.6' rx='1.2' ry='1.2' transform='translate(-69.9 72.7) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='107.2' y='58.4' width='31.1' height='7.1' rx='1.2' ry='1.2' transform='translate(-7.9 105) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='108.6' y='50.7' width='22.9' height='5.6' rx='1.2' ry='1.2' transform='translate(-2.7 100.6) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='107.1' y='44.3' width='18.9' height='5.5' rx='1.2' ry='1.2' transform='translate(.8 96.2) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='53.4' y='69.3' width='14.6' height='7.1' rx='1.2' ry='1.2' transform='translate(-33.7 64.2) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='47.8' y='64.5' width='14.6' height='5.6' rx='1.2' ry='1.2' transform='translate(-31.4 58.7) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='42.9' y='59.5' width='14.6' height='5.5' rx='1.2' ry='1.2' transform='translate(-29.4 53.7) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='65' y='57.6' width='14.6' height='7.1' rx='1.2' ry='1.2' transform='translate(-22.1 69.1) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='57' y='46.9' width='14.6' height='12.6' rx='1.2' ry='1.2' transform='translate(-18.8 61) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='61.6' y='99.2' width='6.6' height='21.2' rx='1.2' ry='1.2' transform='translate(-58.6 78.1) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='130.5' y='71.8' width='22.9' height='7.1' rx='1.2' ry='1.2' transform='translate(-11.7 122.5) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='136.1' y='78.2' width='22.9' height='5.6' rx='1.2' ry='1.2' transform='translate(-14 128) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='141' y='83.1' width='22.9' height='5.5' rx='1.2' ry='1.2' transform='translate(-16.1 133) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='132.1' y='81.3' width='6.6' height='21.2' rx='1.2' ry='1.2' transform='translate(-25.3 122.7) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='79.2' y='21.2' width='19.3' height='7.1' rx='1.2' ry='1.2' transform='translate(8.5 70.1) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='84.2' y='26.3' width='22.9' height='5.6' rx='1.2' ry='1.2' transform='translate(7.5 76.2) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='89.2' y='31.3' width='22.9' height='5.5' rx='1.2' ry='1.2' transform='translate(5.4 81.1) rotate(-45)'/%3E%3Crect fill='%23ffffff' x='80.2' y='29.4' width='6.6' height='21.2' rx='1.2' ry='1.2' transform='translate(-3.8 70.8) rotate(-45)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 144px 144px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}
#markt > .container {
  position: relative;
  z-index: 1;
}

/* ── Spielmarkt ───────────────────────────────────────────────────────────── */
.section-dark {
  background: #1c1c24;
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.55); }

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.market-card {
  background: #16161e;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.market-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.market-card-image {
  position: relative;
  aspect-ratio: 16/9;
  background: #1e1e28;
  overflow: hidden;
  cursor: zoom-in;
}

.market-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-card-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  opacity: .4;
}

.market-condition-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid;
  backdrop-filter: blur(8px);
}

.market-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.market-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.market-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.market-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.market-pickup {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.market-contact-btn {
  margin-top: auto;
  text-align: center;
  text-decoration: none;
}

.state-placeholder-dark {
  color: rgba(255,255,255,.4);
}

.state-placeholder-dark p { color: rgba(255,255,255,.4); }

/* Spielmarkt – Formular */
.marketplace-submit-wrap {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 48px;
}

.marketplace-submit-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}

.form-dark {
  background: #16161e;
  border-color: rgba(255,255,255,.08);
}

.form-dark label { color: rgba(255,255,255,.75); }

.form-dark input,
.form-dark select,
.form-dark textarea {
  background: #2a2a32;
  border-color: rgba(255,255,255,.1);
  color: var(--white);
}

.form-dark input::placeholder,
.form-dark textarea::placeholder { color: rgba(255,255,255,.25); }

.form-dark input:focus,
.form-dark select:focus,
.form-dark textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,25,106,.2);
}

.form-dark select option { background: #2a2a32; }

.input-file {
  padding: 10px 14px;
  cursor: pointer;
  color: rgba(255,255,255,.6);
}

.input-file::file-selector-button {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 13px;
  margin-right: 12px;
  transition: background .15s;
}

.input-file::file-selector-button:hover {
  background: rgba(255,255,255,.14);
}

.marketplace-disclaimer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  line-height: 1.5;
}

.marketplace-disclaimer svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: .5;
}

.form-success-dark {
  background: #16161e;
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}

.form-success-dark h3 { color: var(--white); }
.form-success-dark p { color: rgba(255,255,255,.6); }

/* ── Feedback-Anzeige ─────────────────────────────────────────────────────── */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.feedback-card {
  background: #16161e;
  border-radius: var(--radius);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.feedback-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

/* Einzelbild */
.feedback-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1e1e28;
}
.feedback-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Slider */
.feedback-slider {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1e1e28;
}
.feedback-slider-track {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}
.feedback-slider-slide { min-width: 100%; height: 100%; }
.feedback-slider-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Slider-Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background .15s;
  z-index: 2;
}
.slider-btn:hover { background: rgba(0,0,0,.65); }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* Slider-Dots */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .15s, transform .15s;
}
.slider-dot.active { background: #fff; transform: scale(1.25); }

/* Event-Badge über Bild/Slider */
.feedback-event-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
  z-index: 1;
}

/* Card Body */
.feedback-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.feedback-card-event-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.feedback-stars { display: flex; gap: 2px; font-size: 20px; }
.fb-star-filled { color: #f5a623; }
.fb-star-empty  { color: rgba(255,255,255,.18); }

.feedback-quote {
  font-size: 40px;
  font-family: Georgia, serif;
  color: var(--accent-from);
  opacity: .2;
  line-height: .7;
  margin-bottom: -6px;
}
.feedback-text {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feedback-consent-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fce4ef;
  border: 1px solid #f0b8d0;
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  font-size: 12px;
  color: #7a0e44;
  line-height: 1.5;
}
.feedback-consent-note svg { flex-shrink: 0; margin-top: 1px; }

.feedback-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: auto;
}
.feedback-author { display: flex; align-items: center; gap: 8px; }
.feedback-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.feedback-name { font-size: 14px; font-weight: 600; color: #fff; }
.feedback-date { font-size: 12px; color: rgba(255,255,255,.45); }

/* Formular-Intro */
.feedback-form-intro { margin-bottom: 28px; padding-top: 8px; }
.feedback-form-title {
  font-family: 'Boldstrom', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: normal;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.feedback-form-subtitle { font-size: 15px; color: var(--text-secondary); }

/* File-Input-Wrap (Feedback) */
.file-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  cursor: pointer;
  transition: border-color .2s;
  font-size: 14px;
  color: var(--text-secondary);
}
.file-input-wrap:hover { border-color: var(--accent-from); }
.file-input-wrap input[type="file"] { display: none; }

/* Feedback-Sektion auf Verlaufshintergrund */
.section-gradient .section-title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white);
  background-clip: unset;
  color: var(--white);
}
.section-gradient .section-subtitle { color: rgba(255,255,255,.75); }

/* Formular auf Verlauf: wie Footer-Form */
.section-gradient .form {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}
.section-gradient label { color: rgba(255,255,255,.85); }
.section-gradient .req { color: rgba(255,255,255,.7); }
.section-gradient .form-optional { color: rgba(255,255,255,.55); }
.section-gradient input,
.section-gradient select,
.section-gradient textarea {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: var(--white);
}
.section-gradient input::placeholder,
.section-gradient textarea::placeholder { color: rgba(255,255,255,.4); }
.section-gradient input:focus,
.section-gradient select:focus,
.section-gradient textarea:focus {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.section-gradient select option { background: #070708; color: var(--white); }
.section-gradient .form-error {
  background: rgba(0,0,0,.2);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
}
.section-gradient .form-note { color: rgba(255,255,255,.55); }
.section-gradient .star { color: rgba(255,255,255,.3); }
.section-gradient .star:hover,
.section-gradient .star.hover,
.section-gradient .star.active { color: #f5c842; }
.section-gradient .file-input-wrap {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.7);
}
.section-gradient .file-input-wrap:hover { border-color: rgba(255,255,255,.5); }
.section-gradient .consent-label { color: rgba(255,255,255,.75); }
.section-gradient .form-success {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}
.section-gradient .form-success h3 { color: var(--white); }
.section-gradient .form-success p { color: rgba(255,255,255,.75); }
.section-gradient .success-icon {
  background: rgba(255,255,255,.2);
}
.section-gradient .success-icon svg { stroke: var(--white); }
.section-gradient .btn-secondary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  box-shadow: none;
}
.section-gradient .btn-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
}

/* ── Collapsible Forms ────────────────────────────────────────────────────── */
.form-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background .2s;
  margin-bottom: 0;
}

.form-toggle-btn:hover {
  border-color: var(--accent);
  background: rgba(192,25,106,.04);
}

.form-toggle-btn-dark {
  background: #16161e;
  border-color: rgba(255,255,255,.1);
  color: var(--white);
}

.form-toggle-btn-dark:hover {
  border-color: var(--accent);
  background: rgba(192,25,106,.12);
}

.form-toggle-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-toggle-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.form-toggle-left span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-toggle-left strong {
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}

.form-toggle-left > span > span:last-child {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

.form-toggle-btn-dark .form-toggle-left > span > span:last-child {
  color: rgba(255,255,255,.45);
}

.form-toggle-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform .3s ease;
}

.form-toggle-btn[aria-expanded="true"] .form-toggle-chevron {
  transform: rotate(180deg);
}

.form-collapsible {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.form-collapsible-inner {
  overflow: hidden;
  min-height: 0;
}

.form-collapsible.is-open {
  grid-template-rows: 1fr;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  border-top: none;
  padding: 64px 0 32px;
  background:
    radial-gradient(ellipse 55% 75% at 22% 65%, rgba(185, 25, 100, 0.80) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 55% 0%,  rgba(8, 185, 195, 0.85) 0%, transparent 65%),
    #070708;
}

/* Kontaktbereich */
.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  margin-bottom: 28px;
}

.footer-contact-title {
  font-family: 'Boldstrom', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: normal;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.footer-contact-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* Formular im Footer */
.footer-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.footer-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.footer-form .form-row .form-group { margin-bottom: 0; }
.footer-form label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); }
.footer-form .req { color: rgba(255,255,255,.7); }

.footer-form input,
.footer-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,.45); }
.footer-form input:focus,
.footer-form textarea:focus {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.18);
}
.footer-form textarea { resize: vertical; min-height: 100px; }

.footer-form .form-error {
  background: rgba(0,0,0,.2);
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
}
.footer-form .form-footer { margin-top: 32px; }
.footer-form-note { color: rgba(255,255,255,.55) !important; }

/* Button im Footer */
.btn-footer {
  background: var(--white);
  color: var(--accent);
  border-radius: 980px;
  font-weight: 700;
  border: none;
  padding: 16px 32px;
  transition: opacity .2s, transform .1s;
}
.btn-footer:hover { opacity: .9; }
.btn-footer:active { transform: scale(.97); }

/* Success-State im Footer */
.footer-success {
  text-align: center;
  padding: 48px 24px;
  color: var(--white);
}
.footer-success h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.footer-success p { color: rgba(255,255,255,.75); margin-bottom: 24px; }

.success-icon-light {
  background: rgba(255,255,255,.2) !important;
}
.success-icon-light svg { stroke: var(--white) !important; }

/* Footer-Bar */
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-logo { display: flex; align-items: center; }
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer-link:hover { color: var(--white); }

.footer-powered {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}

.footer-powered-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 1;
  margin-left: 8px;
}

.footer-vaid-logo {
  height: 16px;
  width: auto;
  fill: #fff;
  display: block;
}

@media (max-width: 680px) {
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-form .form-row { grid-template-columns: 1fr; }
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Mitspieler finden ────────────────────────────────────────────────────── */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 60px;
}

.player-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s, transform .25s;
}
.player-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.player-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.player-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.player-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.player-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.player-location {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.player-avail-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.player-games {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.player-note {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.players-submit-wrap {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.players-submit-title {
  font-family: 'Boldstrom', sans-serif;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 24px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }

  .hero { padding: calc(var(--nav-height) + 48px) 0 72px; }

  .form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .form-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .form-footer .btn { width: 100%; }
  .form-footer-left { align-items: flex-start; text-align: left; }
  .form-footer-left .btn { width: auto; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
}
