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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.container {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

h1 { font-size: 24px; margin-bottom: 8px; }
p { font-size: 16px; color: #94a3b8; margin-bottom: 24px; }

.btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  margin-bottom: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn-google {
  background: #ffffff;
  color: #1f2937;
}

.btn-secondary {
  background: #1e293b;
  color: #e2e8f0;
  border: 1px solid #334155;
}

.a2hs-steps {
  text-align: left;
  background: #1e293b;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.a2hs-steps li {
  font-size: 18px;
  margin-bottom: 16px;
  list-style: none;
  padding-left: 36px;
  position: relative;
}

.a2hs-steps li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
}

.share-icon { font-size: 20px; }

.status-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.status-card dt { font-size: 12px; color: #64748b; text-transform: uppercase; margin-top: 12px; }
.status-card dd { font-size: 16px; color: #e2e8f0; }

.hidden { display: none; }
