@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background: #080a14;
  color: #fff;
  line-height: 1.5;
}

.bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, #2d1b69 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, #4c1d6a 0%, transparent 40%), #080a14;
  z-index: -1;
}

.wrap {
  max-width: 440px;
  margin: 0 auto;
  padding: 20px;
}

.lab {
  color: #a78bfa;
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.7;
}

.hero {
  text-align: center;
  padding: 20px 0;
}

.app-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #1e1e3a, #3a2a8a);
  border: 2px solid #8b5cf6;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px #8b5cf6a0;
  overflow: hidden;
}

h1 {
  font-size: 36px;
  font-weight: 800;
}

h1 span {
  color: #a78bfa;
}

.btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: #fff;
  text-align: center;
  padding: 18px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 30px #8b5cf6a0;
  margin: 20px 0 12px;
}

.btn-web {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #ffffff20;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 25px;
  transition: 0.2s;
}

.btn-web:hover {
  background: rgba(255, 255, 255, 0.14);
}

.card {
  background: rgba(22, 22, 42, 0.9);
  border: 1px solid #ffffff12;
  border-radius: 18px;
  padding: 18px;
  margin: 15px 0;
}

.card h3 {
  color: #a78bfa;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff0d;
  font-size: 14px;
  gap: 10px;
}

.row:last-child {
  border: none;
}

.row b {
  color: #c4b5fd;
  text-align: right;
}

.mono {
  font-family: monospace;
  font-size: 12px;
  word-break: break-all;
  color: #fbbf24;
}

.owner {
  text-align: center;
  font-size: 12px;
  color: #8b8baf;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .wrap {
    max-width: 900px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: start;
    padding: 40px 20px;
  }

  .lab {
    grid-column: 1 / -1;
  }

  .hero {
    position: sticky;
    top: 40px;
  }

  .app-icon {
    width: 160px;
    height: 160px;
  }

  h1 {
    font-size: 42px;
  }

  .cards {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
