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

:root {
  --brand-50: #fff0f3;
  --brand-100: #fce0e5;
  --brand-400: #ec7d8f;
  --brand-500: #e9697e;
  --brand-600: #e85f75;
  --brand-700: #cd4f63;
  --brand-900: #a2364b;
  --text-primary: #1a1b1e;
  --text-secondary: #495057;
  --text-muted: #868e96;
  --bg: #ffffff;
  --radius: 12px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

/* Logo */
.logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(232, 95, 117, 0.3);
}

.logo svg {
  width: 44px;
  height: 44px;
  fill: #fff;
}

/* Typography */
.title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Buttons */
.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.store-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(232, 95, 117, 0.35);
}

.store-btn.visible {
  display: flex;
}

.store-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 6px rgba(232, 95, 117, 0.25);
}

.store-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Desktop message */
.desktop-msg {
  display: none;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--brand-50);
  border-radius: var(--radius);
}

/* Share code display */
.code-display {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.code-display code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Branding footer */
.footer {
  margin-top: 32px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
