@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --card: #111;
  --gold: #d4af37;
  --text: #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.container {
  max-width: 500px;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--gold);
}

.card {
  background: var(--card);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

.left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 45px;
}

h2 {
  font-size: 16px;
}

p {
  font-size: 14px;
  opacity: 0.8;
}

button {
  background: var(--gold);
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  color: black;
  transition: 0.2s;
}

button:hover {
  background: #f0d97a;
}

/* QR */
.column {
  flex-direction: column;
  text-align: center;
}

.qr {
  width: 200px;
  margin: 10px 0;
  border-radius: 10px;
}
.owner {
  display: block;
  font-size: 12px;
  color: #d4af37;
  margin-top: 3px;
  opacity: 0.9;
}