:root {
  --bg: #09090d;
  --bg-2: #12121a;
  --panel: #17171f;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f8;
  --muted: #c7c3d6;
  --purple: #8b5cf6;
  --purple-strong: #a78bfa;
  --purple-soft: rgba(139, 92, 246, 0.18);
  --purple-deep: #6d28d9;
  --shadow: 0 24px 60px rgba(85, 43, 180, 0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(139, 92, 246, 0.2), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
}

body {
  display: grid;
  place-items: center;
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 24px;
}

.phantom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 320px);
  padding: 18px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #1a1a22 0%, #131319 100%);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.phantom-button:hover,
.phantom-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(167, 139, 250, 0.6);
  box-shadow: 0 28px 70px rgba(109, 40, 217, 0.46);
}

.wallet-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.button-text {
  font-size: 1.05rem;
  text-transform: lowercase;
}

@media (max-width: 480px) {
  .phantom-button {
    width: 100%;
    padding: 16px 20px;
  }

  .button-text {
    font-size: 1rem;
  }
}
