/* ============================================================================
   BV LOGIN TOUR BUTTON — "Tour mit Vita ansehen" auf der Login-Seite
   ============================================================================
   Prominenter, aber dezenter Knopf oberhalb der Login-Buttons. Gold-Akzent,
   klare Call-to-Action. Klick → Vita startet Tour direkt von der Login-Seite.
   ---------------------------------------------------------------------------- */

/* Login-Card: Inhalt oben ausrichten + scrollen, damit der Tour-Knopf immer
   sichtbar ist (vorher: justify-content:center hat ihn bei viel Inhalt raus-
   geschoben). */
.login-page .login-card {
  justify-content: flex-start !important;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow-y: auto;
}
@media (max-width: 640px) {
  .login-page .login-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.bv-login-tour-btn {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  margin: 0 0 18px 0;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(244, 217, 123, 0.06) 0%, rgba(212, 175, 55, 0.10) 100%),
    #fff;
  color: #0f1d3f;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition:
    transform 200ms cubic-bezier(.2,.8,.2,1),
    border-color 220ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  box-shadow: 0 2px 8px rgba(15, 29, 63, 0.05);
}
.bv-login-tour-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.95);
  box-shadow:
    0 10px 24px rgba(212, 175, 55, 0.22),
    0 0 0 1px rgba(212, 175, 55, 0.4);
  background:
    linear-gradient(135deg, rgba(244, 217, 123, 0.12) 0%, rgba(212, 175, 55, 0.18) 100%),
    #fff;
}
.bv-login-tour-btn:active {
  transform: translateY(0);
}
.bv-login-tour-btn__ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1a1305;
  background: radial-gradient(circle at 35% 30%, #f4d97b 0%, #d4af37 55%, #a27c14 100%);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  animation: bv-ltb-pulse 2.6s ease-in-out infinite;
}
@keyframes bv-ltb-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 0 22px rgba(212, 175, 55, 0.72), inset 0 1px 0 rgba(255,255,255,0.3); }
}
.bv-login-tour-btn__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bv-login-tour-btn__main {
  font-family: var(--bv-font-serif, "Cormorant Garamond", "Playfair Display", Georgia, serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: #0f1d3f;
}
.bv-login-tour-btn__sub {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(15, 29, 63, 0.6);
  font-weight: 400;
}
.bv-login-tour-btn__arrow {
  flex: 0 0 auto;
  font-size: 22px;
  color: #d4af37;
  opacity: 0.7;
  transition: transform 220ms ease, opacity 220ms ease;
}
.bv-login-tour-btn:hover .bv-login-tour-btn__arrow {
  transform: translateX(3px);
  opacity: 1;
}
@media (max-width: 560px) {
  .bv-login-tour-btn {
    padding: 12px 14px;
    gap: 11px;
  }
  .bv-login-tour-btn__ico { width: 36px; height: 36px; }
  .bv-login-tour-btn__main { font-size: 16.5px; }
  .bv-login-tour-btn__sub  { font-size: 11.5px; }
}

/* ============================================================================
   BV PORTAL TOUR FAB — Immer sichtbarer "Tour mit Vita"-Knopf im Portal
   ============================================================================
   Da der Demo-Bypass die Login-Seite überspringt, brauchen wir einen
   zweiten Einstiegspunkt DIREKT im Portal. Dezenter Gold-FAB unten rechts,
   nicht verwechselbar mit echten Aktionen, aber gut sichtbar. Während der
   Tour selbst (bv-guest-mode) ausgeblendet.
   ---------------------------------------------------------------------------- */
.bv-portal-tour-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 2147483200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  background: rgba(18, 22, 32, 0.94);
  color: #fdf6dd;
  font-family: var(--bv-font-sans, "Inter", system-ui, sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.45),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 0 24px rgba(212, 175, 55, 0.18);
  transition:
    transform 220ms cubic-bezier(.2,.8,.2,1),
    box-shadow 260ms ease,
    border-color 220ms ease,
    background 220ms ease,
    opacity 260ms ease;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
}
.bv-portal-tour-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.bv-portal-tour-fab:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.95);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.5),
    0 0 0 1px rgba(212, 175, 55, 0.55),
    0 0 32px rgba(212, 175, 55, 0.35);
}
.bv-portal-tour-fab:active {
  transform: translateY(0) scale(1);
}
.bv-portal-tour-fab__ico {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1a1305;
  background: radial-gradient(circle at 35% 30%, #f4d97b 0%, #d4af37 55%, #a27c14 100%);
  box-shadow:
    0 0 14px rgba(212, 175, 55, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: bv-fab-pulse 2.6s ease-in-out infinite;
}
@keyframes bv-fab-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 0 22px rgba(212, 175, 55, 0.8), inset 0 1px 0 rgba(255,255,255,0.3); }
}
.bv-portal-tour-fab__label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.bv-portal-tour-fab__main {
  font-family: var(--bv-font-serif, "Cormorant Garamond", "Playfair Display", Georgia, serif);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fdf6dd;
}
.bv-portal-tour-fab__sub {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.9);
  font-weight: 600;
  margin-top: 2px;
}

/* iPad / Tablet: FAB höher ansetzen, damit Begrüssungstext nicht verdeckt wird */
@media (min-width: 768px) and (max-width: 1180px) {
  .bv-portal-tour-fab {
    bottom: 96px;
    right: 22px;
  }
}

/* Während aktiver Tour den FAB komplett ausblenden */
body.bv-guest-mode .bv-portal-tour-fab {
  display: none !important;
}

@media (max-width: 560px) {
  /* Mobile: FAB weit nach unten mittig-rechts, über ask-fab / urgent-fab / help-fab —
     genug Abstand dass er nicht überlappt und deutlich sichtbar bleibt. */
  .bv-portal-tour-fab {
    /* ask-fab sitzt bei bottom:14px, urgent-fab bei bottom:96px —
       Tour-FAB muss weit DARÜBER sitzen, sonst nicht erreichbar. */
    bottom: 170px;
    right: 14px;
    padding: 12px 16px 12px 13px;
    gap: 9px;
    font-size: 13px;
  }
  .bv-portal-tour-fab__ico { width: 28px; height: 28px; }
  .bv-portal-tour-fab__main { font-size: 14.5px; }
  .bv-portal-tour-fab__sub { font-size: 10px; letter-spacing: 0.12em; }
}

/* ============================================================================
   BV AUDIO HINT — iPhone-Fallback-Popup wenn Autoplay blockiert wurde
   ============================================================================
   Großer mittig-platzierter Tap-Target, damit iPhone-User mit einem
   Tap den User-Gesture-Anker neu setzen und die Tour-Stimme aktivieren.
   ---------------------------------------------------------------------------- */
.bv-audio-hint {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  opacity: 0;
  transition: opacity 260ms ease;
  cursor: pointer;
}
.bv-audio-hint.is-visible { opacity: 1; }
.bv-audio-hint.is-leaving { opacity: 0; }
.bv-audio-hint__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(440px, 92vw);
  padding: 22px 22px 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(24, 30, 44, 0.98) 0%, rgba(14, 18, 28, 0.98) 100%);
  color: #fdf6dd;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 40px rgba(212, 175, 55, 0.25);
  transform: translateY(12px) scale(0.96);
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
}
.bv-audio-hint.is-visible .bv-audio-hint__inner {
  transform: translateY(0) scale(1);
}
.bv-audio-hint__ico {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1a1305;
  background: radial-gradient(circle at 35% 30%, #f4d97b 0%, #d4af37 55%, #a27c14 100%);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  animation: bv-audio-hint-pulse 1.8s ease-in-out infinite;
}
@keyframes bv-audio-hint-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 0 28px rgba(212, 175, 55, 0.95), inset 0 1px 0 rgba(255,255,255,0.3); }
}
.bv-audio-hint__text {
  flex: 1 1 auto;
  min-width: 0;
}
.bv-audio-hint__title {
  font-family: var(--bv-font-serif, "Cormorant Garamond", "Playfair Display", Georgia, serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-bottom: 5px;
  color: #fdf6dd;
}
.bv-audio-hint__sub {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(247, 239, 219, 0.72);
}
.bv-audio-hint__btn {
  flex: 0 0 auto;
  appearance: none;
  border: none;
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4d97b 0%, #d4af37 60%, #a27c14 100%);
  color: #1a1305;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 180ms ease, box-shadow 220ms ease;
}
.bv-audio-hint__btn:active {
  transform: translateY(1px);
}
@media (max-width: 520px) {
  .bv-audio-hint__inner {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
    gap: 12px;
  }
  .bv-audio-hint__title { font-size: 20px; }
  .bv-audio-hint__btn { width: 100%; padding: 13px 20px; font-size: 15.5px; }
}

/* ============================================================================
   BV PROSPECT TOUR INVITE — Vita-Einstiegs-Dialog
   ============================================================================
   Dezent, warm, nicht blockierend. Unten-rechts-Toast mit Gold-Akzent.
   ---------------------------------------------------------------------------- */

.bv-prospect-invite {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 2147483500;
  max-width: min(440px, 92vw);
  border-radius: 20px;
  background: rgba(18, 22, 32, 0.94);
  color: #f7efdb;
  box-shadow:
    0 28px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 0 38px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition:
    opacity 340ms ease,
    transform 420ms cubic-bezier(.2,.8,.2,1);
  font-family: var(--bv-font-sans, "Inter", system-ui, sans-serif);
}
.bv-prospect-invite.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bv-pi-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px 22px 22px;
}

.bv-pi-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0c0f16;
  background: radial-gradient(circle at 35% 30%, #f4d97b 0%, #d4af37 55%, #a27c14 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.55), 0 2px 4px rgba(0,0,0,0.3);
  animation: bv-pi-pulse 2.6s ease-in-out infinite;
  margin-top: 2px;
}
@keyframes bv-pi-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(212, 175, 55, 0.5), 0 2px 4px rgba(0,0,0,0.3); }
  50%      { box-shadow: 0 0 30px rgba(212, 175, 55, 0.85), 0 2px 4px rgba(0,0,0,0.3); }
}

.bv-pi-body { min-width: 0; }

.bv-pi-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 4px;
  font-weight: 600;
}

.bv-pi-title {
  margin: 0 0 8px 0;
  font-family: var(--bv-font-serif, "Cormorant Garamond", "Playfair Display", Georgia, serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #fdf6dd;
  letter-spacing: -0.005em;
}

.bv-pi-text {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 239, 219, 0.82);
}

.bv-pi-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bv-pi-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.bv-pi-btn--gold {
  background: linear-gradient(135deg, #f4d97b 0%, #d4af37 60%, #a27c14 100%);
  color: #1a1305;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.bv-pi-btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

.bv-pi-btn--ghost {
  background: transparent;
  color: rgba(247, 239, 219, 0.7);
  border: 1px solid rgba(247, 239, 219, 0.22);
}
.bv-pi-btn--ghost:hover {
  background: rgba(247, 239, 219, 0.08);
  color: #fdf6dd;
}

.bv-pi-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: rgba(247, 239, 219, 0.5);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 180ms ease, color 180ms ease;
}
.bv-pi-close:hover {
  background: rgba(247, 239, 219, 0.08);
  color: #fdf6dd;
}

@media (max-width: 560px) {
  .bv-prospect-invite {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .bv-pi-inner {
    padding: 18px 18px 18px 16px;
    gap: 12px;
  }
  .bv-pi-avatar { width: 38px; height: 38px; }
  .bv-pi-title { font-size: 18px; }
  .bv-pi-actions { gap: 8px; }
  .bv-pi-btn { flex: 1 1 auto; padding: 10px 12px; font-size: 13.5px; }
}

/* ============================================================================
   GAST-MODUS — Sperrzonen während der Vita-geführten Tour
   ============================================================================
   Während ein Interessent die Tour anschaut, wird der Buyer-Kontext (Markus)
   geladen. Folgende Bereiche sind dabei bewusst verdeckt/deaktiviert:
   - Tresorraum (Finanzen, Kaufvertrag, Secrets) — keine echten Finanzdaten
   - Chat & Nachrichten — Interessent darf nicht in echte Konversationen
   - Vita-Suchleiste (Ask-Chat) — kein echter Team-Dialog möglich
   - Benachrichtigungs-Glocke — keine persönlichen Notifications
   Die Tour selbst steuert, was gezeigt wird. Alles andere ist sanft inaktiv.
   ---------------------------------------------------------------------------- */

/* Kein Klick auf Tresor-Gruppe (Finanzen / Kaufvertrag / Secrets) */
body.bv-guest-mode .nav__group--tresor {
  position: relative;
  opacity: 0.42;
  pointer-events: none;
  filter: saturate(0.6);
}
body.bv-guest-mode .nav__group--tresor::after {
  content: 'Demo';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.85);
  font-weight: 600;
  pointer-events: none;
}

/* Chat & Nachrichten: keine echten Gespräche — Links inaktiv */
body.bv-guest-mode .nav__item[data-section="chat"],
body.bv-guest-mode .nav__item[data-section="nachrichten"] {
  opacity: 0.55;
  pointer-events: none;
}

/* Vita-Suchleiste (Team-Modus) während Tour verstecken —
   Vita "spricht" schon via Cinema-Script, keine zweite Instanz. */
body.bv-guest-mode .bv-vita-bar,
body.bv-guest-mode .bv-ask-btn,
body.bv-guest-mode .bv-ask-overlay {
  display: none !important;
}

/* Glocke (Benachrichtigungen) — persönliche Daten, wegblenden */
body.bv-guest-mode .bell,
body.bv-guest-mode #bell {
  visibility: hidden;
  pointer-events: none;
}

/* User-Switcher: Prospect darf nicht zwischen Käufer-Accounts wechseln */
body.bv-guest-mode #userSwitch {
  pointer-events: none;
  opacity: 0.7;
}
body.bv-guest-mode #userSwitch .user-switch__chev {
  display: none;
}

/* "Willkommen zurück"-Newsbar: bezieht sich auf echten Käufer-Verlauf,
   im Demo-Rundgang irreführend — ausblenden */
body.bv-guest-mode #newsbar {
  display: none !important;
}

/* Dezentes Gast-Banner: kleiner Hinweis oben, dass dies eine Demo ist.
   Wird vom JS eingefügt (.bv-guest-banner). Rein kosmetisch. */
.bv-guest-banner {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483400;
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
  background: rgba(18, 22, 32, 0.88);
  color: #f7efdb;
  font-family: var(--bv-font-sans, "Inter", system-ui, sans-serif);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.35),
    0 0 0 1px rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease;
}
.bv-guest-banner.is-visible { opacity: 1; }
.bv-guest-banner::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f4d97b, #d4af37);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  animation: bv-guest-dot 1.8s ease-in-out infinite;
}
@keyframes bv-guest-dot {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Beenden-Button im Banner (erst sichtbar nach der Tour bzw. immer klickbar) */
.bv-guest-banner__text { display: inline-block; }
.bv-guest-banner__btn {
  pointer-events: auto;
  margin-left: 4px;
  padding: 4px 11px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.12);
  color: #f4d97b;
  border-radius: 999px;
  font: inherit;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.bv-guest-banner__btn:hover {
  background: rgba(212, 175, 55, 0.22);
  color: #fff3cf;
  border-color: rgba(212, 175, 55, 0.85);
}
.bv-guest-banner__btn:focus-visible {
  outline: 2px solid #f4d97b;
  outline-offset: 2px;
}
.bv-guest-banner__btn--sound {
  background: rgba(212, 175, 55, 0.28);
  border-color: rgba(212, 175, 55, 0.9);
  color: #fff3cf;
  animation: bv-guest-sound-pulse 1.8s ease-in-out infinite;
}
.bv-guest-banner__btn--sound.is-active {
  background: rgba(100, 170, 90, 0.25);
  border-color: rgba(140, 210, 120, 0.9);
  color: #d9f3c9;
  animation: none;
}
@keyframes bv-guest-sound-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
}
/* Im Free-Roam-Modus etwas prominenter: Banner bleibt, Button leuchtet */
.bv-guest-banner.is-freeroam {
  background: rgba(26, 32, 46, 0.92);
  box-shadow:
    0 10px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(212, 175, 55, 0.5);
}

/* Mobile: Banner etwas kleiner */
@media (max-width: 560px) {
  .bv-guest-banner {
    font-size: 10.5px;
    padding: 6px 8px 6px 11px;
    letter-spacing: 0.12em;
    gap: 6px;
  }
  .bv-guest-banner__btn {
    font-size: 9.5px;
    padding: 3px 8px;
    letter-spacing: 0.1em;
  }
}
