* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  background: #111;
  color: #eee;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
}

h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

p {
  color: #666;
  margin: 1rem 0 2rem;
}

#status {
  color: #0f0;
  font-family: monospace;
}

.url {
  color: #7b68ee;
  font-family: monospace;
  text-decoration: none;
}

.url:hover {
  text-decoration: underline;
}

.box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
}

.copy-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.copy-btn:hover {
  color: #7b68ee;
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #333;
  color: #eee;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.note {
  color: #444;
  font-size: 0.8rem;
}

.get-started {
  color: #7b68ee;
  text-decoration: none;
  font-weight: 600;
}

.get-started:hover {
  text-decoration: underline;
}
