:root{
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #666;
  --card: #f6f6f7;
  --card-line: #e7e7ea;
  --accent: #FFD700;
  --accent-ink: #1a1a1a;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

html[data-theme="dark"]{
  --bg: #000000;
  --fg: #f5f5f5;
  --muted: #bdbdbd;
  --card: #0f0f12;
  --card-line: #1e1e22;
  --accent: #FFD700;
  --accent-ink: #101010;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{width:min(1100px,92%);margin-inline:auto}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Header */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 64px;
}
.brand{font-family: Oswald, Arial, sans-serif; font-weight:700; letter-spacing:.3px; font-size: 1.25rem}
.brand .accent{color: var(--accent)}
.nav{display:flex; gap: 18px}
.nav a{opacity:.9}
.nav a:hover{opacity:1}

.header-actions{display:flex; align-items:center; gap:10px}
.icon-btn{
  border: 1px solid var(--card-line);
  background: var(--bg);
  color: var(--fg);
  padding: 8px 10px; border-radius: 10px; cursor: pointer;
}
.burger{display:none; background:none; border:0; padding:6px; cursor:pointer}
.burger span{display:block;width:22px;height:2px;background:var(--fg);margin:5px 0;border-radius:2px}

/* Hero */
.hero{position:relative; overflow: clip; border-bottom:1px solid var(--card-line)}
.hero-inner{padding: min(6vh,60px) 0 min(8vh,80px); text-align:center}
.hero-title{
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(2rem,5vw,3.1rem); line-height:1.15; margin:0 0 10px
}
.hero-title .accent{color: var(--accent)}
.hero-sub{max-width: 850px; margin: 0 auto 22px; color: var(--muted)}
.hero-cta{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
.hero-bg{
  position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(1200px 400px at 50% -10%, color-mix(in oklab, var(--accent) 25%, transparent), transparent 60%),
              linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg) 75%, transparent));
  opacity:.6;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px; border-radius: 12px; font-weight:600; transition:.2s ease; border:1px solid var(--card-line)
}
.btn.primary{background: var(--accent); color: var(--accent-ink); border-color: color-mix(in oklab, var(--accent) 70%, var(--accent-ink))}
.btn.primary:hover{filter: brightness(1.05)}
.btn.ghost{background: transparent}
.btn.ghost:hover{background: color-mix(in oklab, var(--accent) 22%, transparent)}

/* Features */
.feature{padding: 50px 0}
.grid-3{display:grid; grid-template-columns: repeat(3,1fr); gap:18px}
.card{
  background: var(--card); border:1px solid var(--card-line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow)
}
.card .icon{font-size: 28px; margin-bottom: 8px}

/* Directory */
.section{padding: 56px 0}
.section.alt{background: color-mix(in oklab, var(--card) 55%, var(--bg))}
.section-head{display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 14px}
.section h2{font-family: Oswald, Arial, sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin:0}

.muted.small{color: var(--muted); font-size: .95rem; margin-top: -4px; margin-bottom: 8px}

.filters input[type="search"]{
  padding: 12px 14px; border-radius: 12px; border:1px solid var(--card-line); min-width: 260px;
  background: var(--bg); color: var(--fg)
}

.cards-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap:18px;
  margin-top: 12px;
}
.streamer-card{
  display:flex; flex-direction:column; overflow:hidden; border-radius:16px;
  background: var(--card); border:1px solid var(--card-line); box-shadow: var(--shadow)
}
.streamer-card img{
  aspect-ratio: 16/9; width:100%; height:auto; object-fit: cover;
}
.card-body{padding: 14px}
.card-title{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 4px 0 6px;
  min-height: 1.6em;
}
.card-body p{margin:0; color: var(--muted)}
.card-actions{padding: 12px 14px 16px}

/* Howto */
.steps{padding-left: 18px}
.steps li{margin: 8px 0}

.requirements{
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 12px;
  padding: 14px;
  margin: 6px 0 16px;
}
.requirements h3{margin: 0 0 6px; font-family: Oswald, Arial, sans-serif}
.requirements ul{margin: 0; padding-left: 18px}

/* Pricing */
.pricing-grid{display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top: 10px}
.price-card{background: var(--card); border:1px solid var(--card-line); border-radius:16px; padding: 22px; position:relative; box-shadow: var(--shadow)}
.price-card .price{font-size: 1.8rem; font-weight:700; margin: 6px 0 10px; font-family: Oswald, Arial, sans-serif}
.price-card ul{margin: 0 0 16px; padding-left: 18px}
.price-card .badge{
  position:absolute; top:14px; right:14px; background: var(--accent); color: var(--accent-ink);
  font-size:.8rem; font-weight:700; padding: 4px 8px; border-radius:999px
}
.price-card.featured{outline:2px solid var(--accent)}

/* Kontakt */
.contact-form{background: var(--card); border:1px solid var(--card-line); border-radius:16px; padding: 18px; box-shadow: var(--shadow)}
.form-grid{display:grid; grid-template-columns: repeat(2,1fr); gap:12px}
.field{display:flex; flex-direction:column; gap:6px}
.field.full{grid-column: 1 / -1}
label{font-weight:600}
input,textarea{
  background: var(--bg); color: var(--fg); border:1px solid var(--card-line);
  padding: 12px 14px; border-radius: 12px; font: inherit
}
.checkbox{display:flex; gap:10px; align-items:flex-start; font-size:.95rem}
.form-hint{color: var(--muted); font-size:.95rem}

/* Footer */
.site-footer{border-top:1px solid var(--card-line); padding: 28px 0}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr 1fr; gap:18px}
.brand-footer{font-family: Oswald, Arial, sans-serif; font-weight:700; margin-bottom: 6px}
.footer-nav{display:flex; flex-direction:column; gap:6px}
.footer-legal{color: var(--muted); font-size:.95rem}

/* Hint */
.hint{margin-top: 10px; color: var(--muted)}

/* Responsive */
@media (max-width: 980px){
  .grid-3, .cards-grid, .pricing-grid, .footer-grid{grid-template-columns: 1fr 1fr}
  .nav{display:none}
  .burger{display:block}
}
@media (max-width: 640px){
  .grid-3, .cards-grid, .pricing-grid, .footer-grid{grid-template-columns: 1fr}
  .form-grid{grid-template-columns: 1fr}
  .hero-inner{padding: 40px 0 56px}
  .hero-sub{font-size: 1rem}
}

/* Mobile Nav (opened) */
.nav.open{
  position: absolute; top: 64px; left: 0; right: 0;
  display:flex; flex-direction:column; gap:0; background: var(--bg); border-bottom:1px solid var(--card-line)
}
.nav.open a{padding: 12px 4%; border-top:1px solid var(--card-line)}

/* Directory Footer */
.directory-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--card-line);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.directory-footer .hint {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.directory-footer .hint strong {
  color: var(--fg);
  font-weight: 600;
}

.directory-footer p {
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.directory-footer p + p {
  margin-top: 10px;
}

.directory-footer a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

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

/* Partnerformular: Linkstil wie im Directory-Footer */
.field.full label.checkbox a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.field.full label.checkbox a:hover {
  color: var(--accent);
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}



/* ========================================
   Kontaktformular Styles - Spezifisch
   ======================================== */

#kontakt .contact-form-section {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#kontakt .contact-form-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--stone-800);
}

#contact-form.contact-form {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#contact-form .form-group {
    margin-bottom: 1.5rem;
}

#contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--stone-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#contact-form .form-group input,
#contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--stone-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--stone-50);
}

#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}

#contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

#contact-form .form-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--stone-100);
    border-radius: 0.5rem;
    color: var(--stone-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

#contact-form .btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

#contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4);
}

#contact-form .btn-submit:active {
    transform: translateY(0);
}

#contact-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#contact-form #form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: none;
    animation: contactFormSlideIn 0.3s ease;
}

#contact-form #form-message.show {
    display: block;
}

#contact-form #form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

#contact-form #form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

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

#contact-form .btn-submit.loading {
    position: relative;
    color: transparent;
}

#contact-form .btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: contactFormSpin 0.8s linear infinite;
}

@keyframes contactFormSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    #contact-form .form-row { grid-template-columns: 1fr; }
    #contact-form.contact-form { padding: 1.5rem; }
    #kontakt .contact-form-section h3 { font-size: 1.25rem; }
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-backdrop.show { opacity: 1; visibility: visible; }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--card);
  border-top: 2px solid var(--accent);
  padding: 20px;
  box-shadow: 0 -5px 30px rgba(0,0,0,.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text h4 {
  font-family: Oswald, Arial, sans-serif;
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--fg);
}

.cookie-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { white-space: nowrap; }

@media (max-width: 640px) {
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}

/* ============================= */
/*  LEGAL MODAL                  */
/* ============================= */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* ── Modal Box (die weiße/dunkle Karte) ── */
.legal-modal .modal-content {
  position: relative;
  background: #fff;
  color: #111;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 2rem 2rem 1.5rem;
  box-sizing: border-box;
  margin: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Schließen-Button ── */
.legal-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0,0,0,0.07);
  border: none;
  color: #555;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 10;
  line-height: 1;
}
.legal-modal .modal-close:hover {
  background: rgba(0,0,0,0.15);
  color: #000;
}

/* ── Mobil ── */
@media (max-width: 540px) {
  .modal {
    padding: 0;
    align-items: flex-end;
  }
  .legal-modal .modal-content {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    max-height: 92dvh;
    padding: 1.5rem 1.25rem 2rem;
  }
}

/* ==========================================================
   DARK MODE
   ========================================================== */

html[data-theme="dark"] #contact-form.contact-form {
  background: var(--card);
  border-color: var(--card-line);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

html[data-theme="dark"] #contact-form .form-group label { color: var(--fg); }

html[data-theme="dark"] #contact-form .form-group input,
html[data-theme="dark"] #contact-form .form-group textarea {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--card-line);
}

html[data-theme="dark"] #contact-form .form-info {
  background: var(--card);
  color: var(--muted);
  border: 1px solid var(--card-line);
}

html[data-theme="dark"] #contact-form .btn-submit {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #101010;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
}

html[data-theme="dark"] .legal-modal .modal-content {
  background: var(--card);
  color: var(--fg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

html[data-theme="dark"] .legal-modal .modal-close {
  background: var(--card-line);
  color: var(--fg);
}
html[data-theme="dark"] .legal-modal .modal-close:hover {
  background: color-mix(in oklab, var(--card-line) 70%, var(--fg));
}

html[data-theme="dark"] .legal-modal-content { color: var(--fg); }

html[data-theme="dark"] .legal-modal-content h2 {
  background: linear-gradient(to right, #facc15, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="dark"] .legal-modal-content p { color: var(--muted); }

html[data-theme="dark"] label,
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4 { color: var(--fg); }

.legal-modal-content h2 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #000 !important;
}

html[data-theme="dark"] .legal-modal-content h2 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #fff !important;
}

/* ========================================
   VIDEO SECTION & MODAL
   ======================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  aspect-ratio: 9/16;
  max-height: 400px;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  border-color: var(--accent);
}

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

.video-card .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.video-card:hover .play-overlay { background: rgba(0, 0, 0, 0.6); }

.video-card .play-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-ink);
  transition: transform 0.3s ease;
}

.video-card:hover .play-icon { transform: scale(1.1); }

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  padding: 20px;
}

.video-modal.show { display: flex; }

.video-modal-content {
  position: relative;
  max-width: 90vw; max-height: 90vh;
  width: auto;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.video-modal .modal-close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-modal .modal-close:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container video {
  max-width: 100%; max-height: 85vh;
  width: auto; height: auto;
  display: block;
}

@media (max-width: 980px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-modal-content { max-width: 95vw; }
  .video-container video { max-height: 80vh; }
}

.video-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
  padding: 16px 12px 12px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-info { opacity: 1; }

.video-title {
  font-size: 0.95rem; font-weight: 600;
  margin: 0 0 4px 0; line-height: 1.3; color: white;
}

.video-description {
  font-size: 0.85rem; margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem; font-weight: 700;
  z-index: 1;
}

.video-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem; font-weight: 600;
  z-index: 1;
}

@media (max-width: 640px) {
  .video-info { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 70%, transparent 100%); }
  .video-title { font-size: 0.9rem; }
  .video-description { font-size: 0.8rem; -webkit-line-clamp: 1; }
}

/* Problem Badge */
.problem-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.accent-red {
  color: #dc2626;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.solution-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.solution-text { font-size: 1.1rem; line-height: 1.6; margin: 0; }

.highlight {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
  font-weight: 700;
  color: inherit;
}

.hero-trust {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-text {
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.demo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.demo-badge:hover { filter: brightness(1.08); }

.demo-badge .demo-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  margin-left: 6px;
}

.investment-option:hover { border-color: var(--accent) !important; background: rgba(var(--accent-rgb), 0.05); }
.investment-option input[type="radio"]:checked + div { color: var(--accent); }
.investment-option:has(input[type="radio"]:checked) { border-color: var(--accent) !important; background: rgba(var(--accent-rgb), 0.1); }

/* ========================================
   USER DROPDOWN
   ======================================== */

.user-dropdown { position: relative; display: inline-block; order: 2; }

.user-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--card-line);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  color: var(--fg);
}

.auth-link { order: 2; }
#theme-toggle { order: 1; }
#burger { order: 3; }

.user-dropdown-toggle:hover { background: var(--card); border-color: var(--accent); }

.user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.user-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dropdown-arrow { font-size: 0.7rem; transition: transform 0.2s ease; }
.user-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  min-width: 200px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  overflow: hidden;
}

.user-dropdown.open .user-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--card-line);
  background: color-mix(in oklab, var(--card) 50%, var(--bg));
}

.dropdown-header-name { font-weight: 600; font-size: 0.95rem; margin: 0 0 4px; }
.dropdown-header-email { font-size: 0.85rem; color: var(--muted); margin: 0; }
.dropdown-menu-items { padding: 8px 0; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.dropdown-item:hover { background: color-mix(in oklab, var(--accent) 15%, transparent); }
.dropdown-item-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.dropdown-divider { height: 1px; background: var(--card-line); margin: 8px 0; }
.dropdown-item.logout { color: #dc2626; }
.dropdown-item.logout:hover { background: #fee2e2; }

@media (max-width: 640px) {
  .user-name { display: none; }
  .user-dropdown-toggle { padding: 8px; }
  .auth-link { display: none; }
}

html[data-theme="dark"] .dropdown-item.logout:hover { background: rgba(220, 38, 38, 0.15); }

/* ========================================
   "MEHR" DROPDOWN NAVIGATION
   ======================================== */

.nav { display: flex; align-items: center; gap: 18px; }

.nav-dropdown { position: relative; display: inline-block; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-dropdown-toggle:hover { opacity: 1; background: color-mix(in oklab, var(--accent) 10%, transparent); }
.nav-dropdown-arrow { font-size: 0.7rem; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  overflow: hidden;
}

.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-items { padding: 8px 0; }

.nav-dropdown-item {
  display: block;
  padding: 12px 18px;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}

.nav-dropdown-item:hover { background: color-mix(in oklab, var(--accent) 15%, transparent); }
.nav-dropdown-divider { height: 1px; background: var(--card-line); margin: 8px 0; }
.nav-auth-mobile { display: none; }

@media (max-width: 980px) {
  .nav > a,
  .nav-dropdown,
  .nav-auth-mobile { display: none; }
  .auth-link-desktop { display: none !important; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--card-line);
    z-index: 100;
  }

  .nav.open > a { display: block; padding: 12px 4%; border-top: 1px solid var(--card-line); }

  .nav.open .nav-dropdown { display: block; position: static; width: 100%; }
  .nav.open .nav-dropdown-toggle { display: none; }

  .nav.open .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; width: 100%;
  }

  .nav.open .nav-dropdown-items { padding: 0; width: 100%; }

  .nav.open .nav-dropdown-item {
    padding: 12px 4%;
    border-top: 1px solid var(--card-line);
    display: block; width: 100%;
  }

  .nav.open .nav-dropdown-divider { display: block; margin: 0; }
  .nav.open .nav-auth-mobile { display: block; width: 100%; }
}

.toast { display: none; }
.toast.show { display: block; }

/* =====================================================
   INTERAKTIVES VIDEO-GESPRÄCH (IVG)
   ===================================================== */
.ivg-section{
  background: color-mix(in oklab, var(--card) 60%, var(--bg));
  border-bottom: 1px solid var(--card-line);
  padding: 40px 0;
}
.ivg-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 440px;
}
.ivg-video-wrap{
  position: relative;
  width: 400px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border: 2px solid var(--card-line);
}
.ivg-vid{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.ivg-vid.ivg-visible{ opacity: 1; }
.ivg-vid.ivg-fade-in { animation: ivgFadeIn .4s ease forwards; }
.ivg-vid.ivg-fade-out{ animation: ivgFadeOut .4s ease forwards; }
@keyframes ivgFadeIn { from{opacity:0} to{opacity:1} }
@keyframes ivgFadeOut{ from{opacity:1} to{opacity:0} }

/* Play overlay */
.ivg-thumb{
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .2s;
}
.ivg-thumb:hover{ background: rgba(0,0,0,.5); }
.ivg-thumb.ivg-hidden{ display: none; }
.ivg-play-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.ivg-play-btn svg{
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform .2s;
}
.ivg-thumb:hover .ivg-play-btn svg{ transform: scale(1.12); }
.ivg-thumb-label{
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  text-align: center;
  padding: 0 20px;
}

/* Controls – Overlay INNERHALB des Videos, unten */
.ivg-controls{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.0) 100%);
  border-radius: 0 0 20px 20px;
}
.ivg-controls.ivg-visible{ display: flex; animation: ivgFadeIn .4s ease; }

/* Dropdown */
.ivg-select{
  width: 100%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .85rem;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-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='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  backdrop-filter: blur(4px);
}
.ivg-select:focus{ outline: none; border-color: var(--accent); }
.ivg-select option{ background: #1a1a1a; color: #fff; }

/* Freitext */
.ivg-freetext-inner{
  display: flex;
  gap: 6px;
  align-items: center;
}
.ivg-freetext-input{
  flex: 1;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .85rem;
  color: #fff;
  font-family: inherit;
  backdrop-filter: blur(4px);
  transition: border-color .2s;
}
.ivg-freetext-input::placeholder{ color: rgba(255,255,255,.5); }
.ivg-freetext-input:focus{ outline: none; border-color: var(--accent); }
.ivg-freetext-send{
  background: var(--accent);
  border: none;
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--accent-ink);
  transition: filter .2s;
  flex-shrink: 0;
}
.ivg-freetext-send:hover{ filter: brightness(1.1); }

/* Meeting CTA – unter dem Video */
.ivg-cta-text{ color: var(--muted); font-size: .88rem; margin: 0 0 8px; }
.ivg-cta-btn{ justify-content: center; }

/* Responsive Mobile */
@media(max-width: 440px){
  .ivg-video-wrap{ width: 100%; border-radius: 14px; }
  .ivg-controls{ border-radius: 0 0 14px 14px; }
}


/* =====================================================
   IVG – BUBBLES V5 – Schön, modern, mit Kategoriefarben
   ===================================================== */

.ivg-bubbles {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  display: none;
}

.ivg-video-wrap.ivg-state-loop .ivg-bubbles {
  display: block;
}

/* Basis-Bubble */
.ivg-bubble {
  position: absolute;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 200px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: none;
  cursor: pointer;

  /* Standard: dunkles Glas */
  color: #fff;
  background: rgba(15, 15, 20, 0.72);
  box-shadow:
    0 8px 28px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.12) inset;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  opacity: 0;
  will-change: transform, opacity;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease, background .18s ease;
}

/* Emoji-Badge links */
.ivg-bubble .ivg-bubble-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

/* Hover */
.ivg-bubble:hover {
  transform: scale(1.07) translateY(-2px) !important;
  box-shadow:
    0 12px 36px rgba(0,0,0,.5),
    0 0 0 2px rgba(255,215,0,.7) inset,
    0 0 18px rgba(255,215,0,.25);
  background: rgba(255, 215, 0, 0.18);
  color: #FFD700;
}

/* Kategorie-Farben (Glow) */
.ivg-bubble[data-cat="info"] {
  box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 0 12px rgba(99,179,237,.25), 0 0 0 1px rgba(99,179,237,.2) inset;
}
.ivg-bubble[data-cat="creator"] {
  box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 0 12px rgba(167,243,208,.25), 0 0 0 1px rgba(167,243,208,.2) inset;
}
.ivg-bubble[data-cat="investor"] {
  box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 0 12px rgba(255,215,0,.3), 0 0 0 1px rgba(255,215,0,.2) inset;
}
.ivg-bubble[data-cat="viewer"] {
  box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 0 12px rgba(196,181,253,.25), 0 0 0 1px rgba(196,181,253,.2) inset;
}

/* ── Animationen je Position ── */

/* Links: einfliegen von links */
.ivg-bubble.ivg-pos-left.ivg-in {
  animation: ivgSlideFromLeft .42s cubic-bezier(.22,1,.36,1) forwards;
}
.ivg-bubble.ivg-pos-left.ivg-out {
  animation: ivgSlideToLeft .3s cubic-bezier(.55,0,1,.45) forwards;
}

/* Rechts: einfliegen von rechts */
.ivg-bubble.ivg-pos-right.ivg-in {
  animation: ivgSlideFromRight .42s cubic-bezier(.22,1,.36,1) forwards;
}
.ivg-bubble.ivg-pos-right.ivg-out {
  animation: ivgSlideToRight .3s cubic-bezier(.55,0,1,.45) forwards;
}

/* Float während sichtbar */
.ivg-bubble.ivg-stay {
  opacity: 1;
  animation: ivgFloat 3s ease-in-out infinite;
}
.ivg-bubble.ivg-pos-right.ivg-stay {
  animation: ivgFloatRight 3.2s ease-in-out infinite;
}

@keyframes ivgSlideFromLeft {
  from { opacity: 0; transform: translateX(-40px) scale(.88); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes ivgSlideToLeft {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(-30px) scale(.92); }
}
@keyframes ivgSlideFromRight {
  from { opacity: 0; transform: translateX(40px) scale(.88); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes ivgSlideToRight {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(30px) scale(.92); }
}
@keyframes ivgFloat {
  0%,100% { transform: translateY(0) scale(1); }
  45%     { transform: translateY(-6px) scale(1.01); }
}
@keyframes ivgFloatRight {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-5px) scale(1.01); }
}

/* ── Positionen ── */
/* 5 Slots: abwechselnd links/rechts, verteilt über die Höhe */
.ivg-slot-0 { top: 16%; left: 10px;  }
.ivg-slot-1 { top: 28%; right: 10px; }
.ivg-slot-2 { top: 41%; left: 10px;  }
.ivg-slot-3 { top: 54%; right: 10px; }
.ivg-slot-4 { top: 67%; left: 10px;  }

@media (max-width: 440px) {
  .ivg-bubble { font-size: .75rem; padding: 8px 12px 8px 9px; max-width: 180px; }
}