/* Web build additions on top of the plugin's style.css. */

html, body { overflow: auto; }
body { display: flex; justify-content: center; }

.start-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.start-card {
  width: min(360px, 100%);
  padding: 24px 24px 18px;
  border: 1px solid var(--panel-edge);
  border-radius: 6px;
  background: var(--panel-raised);
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
}
.start-title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.14em;
}
.start-title span { color: var(--signal); }
.start-text { margin: 0 0 18px; font-size: 13px; line-height: 1.5; color: var(--ink-muted); }
.start-button {
  min-width: 160px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  background: var(--signal);
  color: #1a1109;
  font: 700 14px var(--font-ui);
  letter-spacing: 0.04em;
  cursor: pointer;
}
.start-button:hover { filter: brightness(1.08); }
.start-button:disabled { opacity: 0.6; cursor: progress; }
.start-note { min-height: 18px; margin: 12px 0 0; font-size: 12px; color: var(--ink-muted); }
