body {
  background: #0b0b0b;
  color: #f0eee6;
  font-family: system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
  padding: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #f5e6d3, #d4b89b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  color: #887a6a;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.btn {
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #111;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(255,255,255,0.1);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.18);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal.hidden { display: none; }

.modal-content {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 90vw;
  width: 360px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.modal-content h2 {
  margin-top: 0;
  font-weight: 400;
}

.qr {
  width: 240px;
  height: 240px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.handle {
  font-weight: 600;
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 0.3rem;
}

.note {
  color: #555;
  font-size: 0.85rem;
  margin-top: 0;
}

.close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}

.close:hover { color: #fff; }
