:root {
  --green: #3bff6b;
  --purple: #810ef8;
  --graphite: #363736;
  --white: #ffffff;
  --dark: #05070b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Figtree", sans-serif;
  background: radial-gradient(circle at top, #10202a 0%, #05070b 58%, #000 100%);
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.vbHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}


.vbHeaderText {
  text-align: left;
}

.vbTitleMain {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
}

.vbTitleMain span {
  color: var(--green);
}

.vbSubtitle {
  font-size: 18px;
  font-weight: 600;
  opacity: .88;
  margin-top: 5px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.card {
  background: rgba(35, 35, 35, 0.92);
  padding: 2rem;
  width: 90%;
  max-width: 480px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 30px rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.card p {
  margin-top: 0;
  opacity: .92;
}

input[type="file"],
select {
  background: #151515;
  color: #eee;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px;
  margin-top: 12px;
  width: 100%;
  font-family: "Figtree", sans-serif;
}

.btn {
  background: var(--green);
  color: #050505;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  padding: 13px 22px;
  margin-top: 1rem;
  cursor: pointer;
  transition: .25s;
  box-shadow: 0 0 16px rgba(59,255,107,.28);
  width: 100%;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(.95);
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.progress-wrap {
  width: 100%;
  background: #444;
  border-radius: 999px;
  height: 10px;
  margin-top: 1rem;
  overflow: hidden;
  display: none;
}

.progress-bar {
  background: var(--green);
  height: 100%;
  width: 0%;
  transition: width .25s ease-in-out;
  box-shadow: 0 0 8px var(--green);
}

#progressText {
  margin-top: .5rem;
  color: var(--green);
  font-weight: 800;
}

#err {
  color: #ff6b6b;
  margin-top: .7rem;
}

#done {
  color: var(--green);
  margin-top: .8rem;
  display: none;
  font-weight: 800;
}

.securityNote {
  display: block;
  margin-top: 1rem;
  opacity: .62;
  line-height: 1.35;
}

#fogCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.hidden {
  display: none !important;
}

@media (max-width: 560px) {
  .vbHeader {
    flex-direction: column;
    text-align: center;
  }

  .vbHeaderText {
    text-align: center;
  }

  .vbTitleMain {
    font-size: 30px;
  }

  .vbSubtitle {
    font-size: 14px;
  }
}
.logoWrap {
  position: relative;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
}

.vbBrandLogo {
  position: absolute;
  inset: 13px;
  width: 56px;
  height: 56px;
  object-fit: contain;
  z-index: 2;
}

.logoRing {
  position: absolute;
  inset: 0;
  width: 82px;
  height: 82px;
  object-fit: contain;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.logoRing.active {
  opacity: 0.8;
  visibility: visible;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
