* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f0f1a;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #a78bfa;
}

.subtitle {
    color: #888;
    margin-bottom: 30px;
    font-size: 1rem;
}

#connectBtn {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.2s;
}

#connectBtn:hover {
    background: #6d28d9;
}

#walletAddress {
    color: #a78bfa;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #1a1a2e;
  border: 1px solid #2e2e4d;
  border-radius: 16px;
  padding: 30px 24px;
  width: 240px;
  transition: 0.2s;
}

.card:hover {
  border-color: #7c3aed;
  transform: translateY(-4px);
}

.card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.votes {
  color: #a78bfa !important;
  font-weight: bold;
  font-size: 1rem !important;
}

.card button {
  background: #7c3aed;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
}

.card button:hover {
  background: #6d28d9;
}