:root {
  --cd-bg: #050505;
  --cd-panel: #1a1a1a;
  --cd-border: #333;
  --cd-text: #fafafa;
  --cd-muted: #a3a3a3;
  --cd-accent: #b4d142;
  --cd-err: #ffb4b4;
  --cd-radius: 10px;
}
* { box-sizing: border-box; }
html { background: var(--cd-bg); color-scheme: dark; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--cd-bg);
  color: var(--cd-text);
  margin: 0;
  min-height: 100vh;
  line-height: 1.45;
}
a { color: var(--cd-accent); }
.cd-shell { max-width: 56rem; margin: 0 auto; padding: 1.25rem; }
.cd-brand {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--cd-border);
}
.cd-logo {
  display: block; height: 34px; width: min(14rem, 60vw);
  background: var(--cd-accent);
  -webkit-mask: url('https://cdn11.bigcommerce.com/s-ghuoctctav/content/img/VR-Long2.svg') center/contain no-repeat;
  mask: url('https://cdn11.bigcommerce.com/s-ghuoctctav/content/img/VR-Long2.svg') center/contain no-repeat;
}
.cd-title { margin: 0; font-size: 1.35rem; font-weight: 600; }
.cd-sub { color: var(--cd-muted); font-size: 0.9rem; margin: 0.35rem 0 0; }
.cd-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; font-size: 0.85rem; }
.cd-nav a { text-decoration: none; color: var(--cd-muted); padding: 0.3rem 0.65rem; border-radius: 999px; border: 1px solid transparent; }
.cd-nav a:hover { color: var(--cd-text); border-color: var(--cd-border); }
.cd-card {
  background: var(--cd-panel); border: 1px solid var(--cd-border);
  border-radius: var(--cd-radius); padding: 1.25rem; max-width: 24rem; margin: 2rem auto;
}
.cd-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.85rem; }
.cd-field span { font-size: 0.82rem; color: var(--cd-muted); }
.cd-field input {
  background: #111; border: 1px solid var(--cd-border); border-radius: 8px;
  color: var(--cd-text); padding: 0.55rem 0.7rem; font-size: 1rem;
  width: 100%;
}
.cd-password-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.cd-password-wrap input {
  padding-right: 2.75rem;
}
.cd-password-toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--cd-muted);
  cursor: pointer;
}
.cd-password-toggle:hover,
.cd-password-toggle:focus-visible {
  color: var(--cd-text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.cd-password-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cd-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cd-accent); color: #111; border: none; border-radius: 8px;
  padding: 0.55rem 1rem; font-weight: 600; cursor: pointer; text-decoration: none;
}
.cd-btn:hover { filter: brightness(1.05); }
.cd-btn.ghost { background: transparent; color: var(--cd-text); border: 1px solid var(--cd-border); }
.cd-err { color: var(--cd-err); font-size: 0.85rem; margin: 0.5rem 0; }
.cd-msg { color: var(--cd-muted); font-size: 0.85rem; }
.cd-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  margin-top: 1.25rem;
}
.cd-tile {
  display: block; text-decoration: none; color: inherit;
  background: var(--cd-panel); border: 1px solid var(--cd-border);
  border-radius: var(--cd-radius); padding: 1rem;
}
.cd-tile:hover { border-color: var(--cd-accent); }
.cd-tile h2 { margin: 0 0 0.35rem; font-size: 1rem; color: var(--cd-accent); }
.cd-tile p { margin: 0; font-size: 0.85rem; color: var(--cd-muted); }
.cd-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.cd-table th, .cd-table td { padding: 0.5rem 0.4rem; border-bottom: 1px solid var(--cd-border); text-align: left; vertical-align: top; }
.cd-table th { color: var(--cd-muted); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; }
.cd-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
