* {
  box-sizing: border-box;
}

:root {
  --bg: #050507;
  --card-bg: #0d0d12;
  --border: #26232f;
  --teal: #3ee6c4;
  --purple: #9b5cf6;
  --text: #f2f0f7;
  --text-dim: #9b96ab;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
  position: relative;
}

.glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  background: var(--purple);
  top: -20vw;
  left: -15vw;
}

.glow-2 {
  background: var(--teal);
  bottom: -20vw;
  right: -15vw;
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 0 60px rgba(155, 92, 246, 0.12);
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: 0 0 30px rgba(62, 230, 196, 0.25);
}

.title {
  margin: 20px 0 4px;
  font-size: 26px;
  font-weight: 700;
}

.ticker {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  color: #050507;
}

.ca-row {
  text-align: left;
  margin-bottom: 24px;
}

.ca-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0f;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.ca-box code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: var(--text-dim);
}

#copy-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

#copy-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.links {
  display: flex;
  gap: 12px;
}

.link-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border: 1px solid var(--border);
  background: #0a0a0f;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.link-btn:hover {
  transform: translateY(-2px);
}

.link-btn.telegram:hover {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(62, 230, 196, 0.2);
}

.link-btn.twitter:hover {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(155, 92, 246, 0.2);
}

.note {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--text-dim);
}

@media (max-width: 420px) {
  .card {
    padding: 28px 20px;
  }

  .links {
    flex-direction: column;
  }
}
