
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0c0c0c;
  color: #fff;
}
main {
  padding-top: 80px;
}
.kyc-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e1e1e;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  border-bottom: 1px solid #00ff99;
}
.kyc-banner p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}
.connect-btn {
  background: #00ff99;
  color: #000;
  padding: 8px 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  margin-top: 6px;
  cursor: pointer;
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #0c0c0c;
}
.hero h1 {
  font-size: 36px;
  color: #00ff99;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.countdown div {
  background: #1e1e1e;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
}
.countdown span {
  display: block;
  font-size: 24px;
  color: #00ff99;
}
.metrics {
  background: #111;
  padding: 40px 20px;
  text-align: center;
}
.metric-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.metric-row div {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
}
.progress {
  max-width: 400px;
  margin: auto;
  text-align: left;
}
.progress-bar {
  height: 12px;
  background: #333;
  border-radius: 6px;
  overflow: hidden;
}
.progress-bar > div {
  height: 100%;
  background: #00ff99;
}
.about {
  padding: 40px 20px;
  background: #0c0c0c;
  text-align: center;
}
.social-links a {
  color: #00ff99;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00ff99;
  text-align: center;
  z-index: 1000;
}
.buy-btn {
  background: none;
  border: none;
  font-size: 18px;
  padding: 14px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  width: 100%;
}
