:root {
  --vimini-wine: #820933;
  --vimini-wine-dark: #5c0624;
  --bg: #faf6f7;
  --text: #2a1015;
  --muted: #7a6367;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

.card {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--vimini-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 22px;
  margin: 0;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(130, 9, 51, 0.15);
  border-top-color: var(--vimini-wine);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

[data-platform="other"] .spinner {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#status-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.btn:active {
  opacity: 0.8;
}

.btn-primary {
  background: var(--vimini-wine);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--vimini-wine);
  border: 1.5px solid var(--vimini-wine);
}
