body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #0f1220 0%, #21264b 100%);
  color: #fff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

header {
  width: 100%;
  padding: 32px 0 12px 0;
  background: rgba(16, 20, 40, 0.92);
  border-bottom: 1px solid #222846;
  box-shadow: 0 2px 12px 0 #0003;
  margin-bottom: 32px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  background: linear-gradient(90deg, #6ee7b7 10%, #3b82f6 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.card {
  background: rgba(22, 25, 55, 0.98);
  border: 1.5px solid #2e375c;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 #0002;
  padding: 2rem 2.5rem;
  min-width: 280px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.15s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #3b82f6;
}
.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #6ee7b7;
  margin-bottom: 0.7em;
}
.card-amount {
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 0.5em;
}
.card-desc {
  font-size: 1rem;
  color: #b8c2e0;
}
.wallet-section {
  margin: 2.5rem 0 1.5rem 0;
  background: rgba(16,20,40,0.9);
  border: 1px solid #2e375c;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  display: inline-block;
}
.wallet-label {
  color: #3b82f6;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.wallet-address {
  font-family: 'Fira Mono', monospace;
  font-size: 1.1rem;
  color: #6ee7b7;
  margin-top: 0.4em;
  word-break: break-all;
}
footer {
  margin-top: 3rem;
  color: #7a88b8;
  font-size: 0.98rem;
  opacity: 0.7;
}

.sponsor-block {
  background: rgba(33, 38, 75, 0.92);
  border: 1.5px solid #3b82f6;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #0002;
  padding: 1.2rem 2rem 1.6rem 2rem;
  margin: 2.5rem auto 1.5rem auto;
  max-width: 85%;
  text-align: center;
  opacity: 0.98;
}
.sponsor-title {
  color: #6ee7b7;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.7em;
  text-transform: uppercase;
}


.pool {
  font-size: 48px;
  margin: 30px 0;
}
.box {
  max-width: 700px;
  margin: 40px auto;
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.6;
}
.wallet {
  margin-top: 20px;
  font-family: monospace;
  word-break: break-all;
  background: #151933;
  padding: 15px;
  border-radius: 6px;
}
