body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  color: #39ff94;
  margin-bottom: 10px;
}

p {
  margin: 5px 0 15px;
  font-size: 14px;
  color: #ccc;
}

button,
.action-btn {
  background-color: #ffa500;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  margin: 6px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

button:hover,
.action-btn:hover {
  opacity: 0.85;
}

input[type="number"] {
  padding: 10px;
  border: 2px solid #39ff94;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  width: 280px;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.buy-stake-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #111;
  border-radius: 12px;
}

.buy-stake-box .column {
  min-width: 160px;
}

#walletAddress {
  color: #ffa500;
  margin-top: 10px;
  font-weight: bold;
  font-size: 13px;
}

.stake-section {
  margin-top: 20px;
}

#infoBox {
  background-color: #1a1a1a;
  padding: 20px;
  margin-top: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

#infoBox strong {
  color: #fff;
}

.stat-section {
  margin-top: 50px;
}

.stat-label {
  margin-top: 20px;
  font-weight: bold;
  color: #ccc;
}

.bar {
  width: 80%;
  max-width: 400px;
  height: 20px;
  background-color: #222;
  margin: 10px auto;
  border-radius: 10px;
}

.fill {
  height: 100%;
  background-color: #39ff94;
  width: 0%;
  border-radius: 10px;
  transition: width 1s ease-in-out;
  box-shadow: 0 0 10px #39ff94;
}

.value {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

h2 {
  color: #39ff94;
  margin-top: 40px;
}
