.vx-support-root {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.vx-support-menu {
  position: fixed;
  z-index: 200;
  width: min(21rem, calc(100vw - 1.25rem));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(10, 8, 24, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.vx-support-menu[data-state="closed"] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.vx-support-menu[data-state="open"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vx-support-menu__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(88, 101, 242, 0.12), transparent);
}

.vx-support-menu__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
}

.vx-support-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  background: #5865f2;
  color: #fff;
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.35);
}

.vx-support-menu__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.vx-support-menu__eyebrow {
  margin: 0;
  color: hsl(var(--primary));
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vx-support-menu__title {
  margin: 0.2rem 0 0;
  color: #fff;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.vx-support-menu__desc {
  margin: 0.3rem 0 0;
  color: rgb(var(--muted-foreground));
  font-size: 0.78rem;
  line-height: 1.4;
}

.vx-support-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgb(var(--muted-foreground));
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.vx-support-menu__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vx-support-menu__body {
  padding: 0.85rem 1rem 1rem;
}

.vx-support-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.vx-support-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
}

.vx-support-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.22);
  color: #c4b5fd;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.vx-support-steps__copy {
  min-width: 0;
}

.vx-support-steps strong {
  display: block;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.vx-support-steps p {
  margin: 0.2rem 0 0;
  color: rgb(var(--muted-foreground));
  font-size: 0.76rem;
  line-height: 1.4;
}

.vx-support-ticket {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.vx-support-ticket__channel {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(88, 101, 242, 0.18);
  color: #ddd6fe;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.vx-support-ticket__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgb(var(--muted-foreground));
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.vx-support-ticket__copy:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vx-support-ticket__copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

.vx-support-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.75rem;
  min-height: 2.65rem;
  border-radius: 0.75rem;
  background: #5865f2;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(88, 101, 242, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.vx-support-menu__cta:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.vx-support-menu__cta svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.vx-support-menu__foot {
  margin: 0.65rem 0 0;
  color: rgb(var(--muted-foreground));
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}
