/* ── VMC Reality Check Warning Box ──────────────────────────────────────────
   Shown always in the DNS panel after conversion.
   Amber/blue glassmorphism tint — distinct but premium.
   ─────────────────────────────────────────────────────────────────────────── */

.vmc-reality-check {
  display: none; /* Hidden until DNS panel is shown — toggled by JS */
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(66,133,244,0.06);
  border: 1px solid rgba(66,133,244,0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeSlideUp 220ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Shown when DNS panel is visible */
.dns-panel.visible .vmc-reality-check {
  display: flex;
}

.vmc-rc-icon {
  flex-shrink: 0;
  color: rgba(66,133,244,0.8);
  margin-top: 1px;
}

.vmc-rc-body {
  flex: 1;
  min-width: 0;
}

.vmc-rc-text {
  font-size: 0.8125rem;
  color: rgba(247,248,248,0.65);
  line-height: 1.6;
  letter-spacing: -0.011em;
  margin: 0 0 12px;
}
.vmc-rc-text strong {
  color: rgba(247,248,248,0.85);
  font-weight: 510;
}

/* CTA button — prominent, accent blue */
.vmc-rc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #4285F4;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 510;
  letter-spacing: -0.011em;
  text-decoration: none;
  cursor: pointer;
  transition: all 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.vmc-rc-btn:hover {
  background: #3367d6;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(66,133,244,0.35);
  color: #fff;
  text-decoration: none;
}
.vmc-rc-btn:active {
  transform: scale(0.98);
}
