.top-image {
  padding-top: 40px; /* space above image */
  text-align: center;
}

.top-image img {
  max-width: 50%;
  height: auto;
}

body {
  margin: 0;
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 400px;
  margin: auto;
}

h1 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00ff66;
}

.starts-in {
  font-size: 1.1em;
  margin: 10px 0;
}

.highlight {
  display: block;
  font-size: 1.5em;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.countdown div {
  flex: 1;
  font-size: 1.5em;
}

.token-info {
  margin: 20px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stats div {
  background: #222;
  padding: 10px;
  border-radius: 5px;
}

.progress-section {
  margin-top: 20px;
}

.progress-bar-container {
  width: 100%;
  background: #333;
  border-radius: 5px;
  height: 12px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar-fill {
  height: 100%;
  background: #00ff66;
  width: 0%;
  transition: width 0.5s ease-in-out;
}


.buy-button {
  display: inline-block;
  margin-top: 20px;           /* Adds space above the button */
  padding: 16px 32px;
  font-size: 20px;
  font-weight: bold;
  background-color: white;    /* Button background */
  color: #222;                /* Dark text for contrast */
  border: 2px solid #222;     /* Optional: outline for visibility */
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.buy-button:hover {
  background-color: #f0f0f0;  /* Slight hover effect */
  color: #000;
}


