.vg-feedback {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  border-radius: 12px;
  padding: 0;
  width: min(480px, calc(100vw - 32px));
  height: fit-content;
  max-height: calc(100vh - 32px);
  background: #15171c;
  color: #e8eaed;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
.vg-feedback::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}
.vg-feedback__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.vg-feedback__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.vg-feedback__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.vg-feedback__close {
  background: transparent;
  border: 0;
  color: #b0b3b8;
  font-size: 24px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
}
.vg-feedback__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.vg-feedback__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #b0b3b8;
}
.vg-feedback__label textarea,
.vg-feedback__label input {
  background: #0d0e11;
  border: 1px solid #2a2d33;
  border-radius: 8px;
  color: #e8eaed;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  resize: vertical;
}
.vg-feedback__label textarea:focus,
.vg-feedback__label input:focus {
  outline: none;
  border-color: #41d3ff;
  box-shadow: 0 0 0 3px rgba(65, 211, 255, 0.25);
}
.vg-feedback__captcha {
  min-height: 65px;
}
.vg-feedback__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.vg-feedback__status {
  margin: 0;
  font-size: 13px;
  color: #b0b3b8;
  flex: 1;
}
.vg-feedback__status[data-kind='ok'] { color: #4ade80; }
.vg-feedback__status[data-kind='err'] { color: #f87171; }
.vg-feedback__submit {
  background: #FFD400;
  color: #0a0c12;
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.vg-feedback__submit:hover { background: #FFE03A; }
.vg-feedback__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vg-feedback-fab {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFD400;
  color: #0a0c12;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.vg-feedback-fab:hover {
  transform: scale(1.05);
  background: #FFE03A;
}

/* ============================================================================
 * Release-notes bell — header indicator + unread dot.
 * Shared across marketing main pages. Styled to sit alongside .lang-dd in tel-bar.
 * ========================================================================= */
.tel-bell {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line-2, #2f3645);
  border-radius: 2px;
  background: var(--bg-2, #15191f);
  color: var(--text-dim, #9aa0aa);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.tel-bell:hover, .tel-bell:focus-visible {
  color: var(--brand, #FFD400);
  border-color: var(--line-3, #404a5c);
  outline: none;
}
.tel-bell svg { display: block; }
.tel-bell-dot {
  position: absolute; top: 5px; right: 5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand, #FFD400);
  box-shadow: 0 0 8px rgba(255, 212, 0, 0.6);
  animation: telBellPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
.tel-bell-dot[hidden] { display: none; }
@keyframes telBellPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.8); }
}
@media (min-width: 768px) {
  .tel-bell { width: 44px; height: 44px; }
  .tel-bell-dot { top: 8px; right: 8px; }
}
