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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0f0f13;
  color: #e8e8f0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 32px 16px 64px;
}

.card {
  background: #1a1a24;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.logo svg { flex-shrink: 0; }

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
}

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-top: 2px;
}

.step-body h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 8px;
}

.apps {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #252535;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #d0d0e8;
  text-decoration: none;
}

.app-badge .platform {
  font-size: 11px;
  font-weight: 400;
  color: #888;
}

.screenshot-block {
  margin-top: 14px;
}

.screenshot-block p {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.screenshot-block img {
  width: 100%;
  max-width: 280px;
  border-radius: 14px;
  border: 1px solid #2a2a3a;
  display: block;
}

.screenshots-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.screenshot-item {
  flex: 1;
  min-width: 130px;
}

.screenshot-item p {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
  text-align: center;
}

.screenshot-item img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #2a2a3a;
  display: block;
}

.divider {
  height: 1px;
  background: #252535;
  margin: 4px 0 28px;
}

.highlight {
  background: #252535;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: #c0c0d8;
  margin-top: 6px;
  line-height: 1.6;
}

.highlight code {
  color: #a78bfa;
  font-family: monospace;
}

.support-box {
  margin-top: 32px;
  background: linear-gradient(135deg, #1e1e2e, #252535);
  border: 1px solid #333;
  border-radius: 14px;
  padding: 20px 20px;
  text-align: center;
}

.support-box .emoji { font-size: 28px; margin-bottom: 8px; }

.support-box p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 12px;
}

.support-box a {
  display: inline-block;
  background: linear-gradient(135deg, #6c63ff, #a78bfa);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 10px;
}
