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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
}

.banner {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
}

.container {
  max-width: 600px;
  margin: -40px auto 0;
  padding: 0 20px 40px;
  position: relative;
}

.token-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.token-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #0a0a0a;
  object-fit: cover;
  background: #1a1a2e;
}

h1 {
  font-size: 28px;
  font-weight: 700;
}

.symbol {
  color: #888;
  font-size: 18px;
}

.description {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.ca-box {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 32px;
}

.ca-box label {
  display: block;
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca-row code {
  flex: 1;
  font-size: 13px;
  color: #4ade80;
  word-break: break-all;
  font-family: 'SF Mono', Monaco, monospace;
}

.ca-row button {
  background: #333;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.ca-row button:hover {
  background: #444;
}

.links {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.btn {
  flex: 1;
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  background: #1a1a2e;
  color: #fff;
  border: 1px solid #333;
  transition: background 0.2s;
}

.btn:hover {
  background: #222;
}

.btn-primary {
  background: #4f46e5;
  border-color: #4f46e5;
}

.btn-primary:hover {
  background: #4338ca;
}

footer {
  text-align: center;
  color: #666;
  font-size: 14px;
}

footer a {
  color: #888;
}
