:root {
  --vxc-bg: #070711;
  --vxc-card: rgba(14, 14, 28, 0.96);
  --vxc-border: rgba(255,255,255,0.14);
  --vxc-text: #ffffff;
  --vxc-muted: #c8c8d8;
  --vxc-green: #00ffa3;
  --vxc-blue: #65ecff;
  --vxc-purple: #8b3dff;
  --vxc-yellow: #ffd166;
}

.vxc-root,
.vxc-root * {
  box-sizing: border-box;
}

.vxc-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,0.64);
  backdrop-filter: blur(10px);
}

.vxc-banner {
  width: min(980px, 100%);
  max-height: min(88vh, 850px);
  overflow: auto;
  color: var(--vxc-text);
  border: 1px solid var(--vxc-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(0,255,163,0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(139,61,255,0.22), transparent 38%),
    linear-gradient(135deg, rgba(7,7,17,0.98), rgba(18,14,36,0.98));
  box-shadow: 0 36px 120px rgba(0,0,0,0.58);
  font-family: Arial, sans-serif;
  position: relative;
}

.vxc-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.vxc-content {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.vxc-head {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.vxc-logo-wrap {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 0 35px rgba(139,61,255,0.25);
}

.vxc-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vxc-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,163,0.32);
  color: var(--vxc-green);
  background: rgba(0,255,163,0.09);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.vxc-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  background: linear-gradient(90deg, #fff, var(--vxc-green), var(--vxc-blue), var(--vxc-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vxc-text,
.vxc-small {
  color: var(--vxc-muted);
  line-height: 1.65;
  margin: 0 0 14px;
  font-size: 15px;
}

.vxc-small {
  font-size: 13px;
}

.vxc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.vxc-links a,
.vxc-inline-settings {
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  padding: 9px 12px;
  font-size: 13px;
  cursor: pointer;
}

.vxc-links a:hover,
.vxc-inline-settings:hover {
  border-color: rgba(0,255,163,0.45);
}

.vxc-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.vxc-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 15px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255,255,255,0.07);
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 15px;
}

.vxc-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0,255,163,0.52);
}

.vxc-btn-accept {
  color: #05050b;
  background: linear-gradient(135deg, var(--vxc-green), var(--vxc-blue), var(--vxc-purple));
  border-color: transparent;
}

.vxc-btn-reject {
  background: rgba(255,255,255,0.10);
}

.vxc-btn-save {
  color: #05050b;
  background: linear-gradient(135deg, var(--vxc-yellow), var(--vxc-green));
  border-color: transparent;
}

.vxc-details {
  margin-top: 20px;
  display: none;
}

.vxc-details.is-open {
  display: block;
}

.vxc-category-list {
  display: grid;
  gap: 12px;
}

.vxc-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
}

.vxc-category h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.vxc-category p {
  margin: 0;
  color: var(--vxc-muted);
  line-height: 1.55;
  font-size: 13px;
}

.vxc-switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 32px;
}

.vxc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.vxc-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
  transition: .2s;
  border-radius: 999px;
}

.vxc-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background: #fff;
  transition: .2s;
  border-radius: 50%;
}

.vxc-switch input:checked + .vxc-slider {
  background: linear-gradient(135deg, var(--vxc-green), var(--vxc-blue));
}

.vxc-switch input:checked + .vxc-slider:before {
  transform: translateX(26px);
}

.vxc-switch input:disabled + .vxc-slider {
  opacity: 0.8;
  cursor: not-allowed;
}

.vxc-floating {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999998;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(10,10,20,0.9);
  color: #fff;
  padding: 10px 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  cursor: pointer;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.vxc-floating:hover {
  border-color: rgba(0,255,163,0.5);
}

@media (max-width: 700px) {
  .vxc-overlay {
    padding: 12px;
    align-items: end;
  }

  .vxc-content {
    padding: 22px;
  }

  .vxc-head {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .vxc-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .vxc-actions {
    grid-template-columns: 1fr;
  }

  .vxc-category {
    grid-template-columns: 1fr;
  }
}
