* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef2f7;
  color: #111827;
  display: flex;
  justify-content: center;
  padding: 32px 16px;
}

.phone {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
  border: 1px solid #e5e7eb;
}

.topbar {
  padding: 20px 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #374151;
}

.header {
  padding: 10px 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.back {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: #f3f4f6;
  font-size: 18px;
  cursor: pointer;
}

.title {
  font-size: 18px;
  font-weight: 600;
}

.content {
  padding: 20px;
}

.demo-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.amount {
  text-align: center;
  font-size: 58px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 8px 0 18px;
}

.action {
  display: block;
  width: 100%;
  border-radius: 999px;
  padding: 16px 18px;
  text-align: center;
  border: 1px solid #d1d5db;
  color: #047857;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 26px;
}

.status-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.status-icon,
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 28px;
}

.status-icon {
  background: #22c55e;
  color: #fff;
}

.avatar {
  background: #e5e7eb;
  color: #6b7280;
  font-weight: 700;
}

.status-label {
  color: #16a34a;
  font-size: 18px;
  margin-bottom: 2px;
}

.status-main {
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.meta {
  color: #6b7280;
  font-size: 14px;
}

.section {
  border-top: 1px solid #f3f4f6;
  padding: 20px 0;
}

.label {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 4px;
}

.value {
  font-size: 22px;
  line-height: 1.35;
}

.value.small {
  font-size: 16px;
}

.menu {
  border-top: 1px solid #f3f4f6;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid #f9fafb;
  font-size: 17px;
}

.menu-icon {
  width: 28px;
  text-align: center;
  color: #6b7280;
}

.footer-note {
  padding: 18px 20px 24px;
  color: #9ca3af;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 480px) {
  body {
    padding: 0;
    background: #fff;
  }

  .phone {
    border-radius: 0;
    max-width: none;
    min-height: 100vh;
    box-shadow: none;
    border: none;
  }

  .amount {
    font-size: 50px;
  }
}