body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #2f3b53, #3b4a6f);
  color: #fff;
  text-align: center;
}

header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: none;
}

.header-bg {
  background-image: url("./crypto/img/banner-top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.bg-w {
  background-color: #fff;
}

.ads {
  min-width: 500px;
}

h1 {
  font-size: 3em;
  color: #4fd1c5;
  margin-top: 20px;
}

.slogan {
  font-family: "Knewave";
  color: rgba(212, 191, 150);
}

p {
  font-size: 1.2em;
  color: #ffffff;
  margin-top: 10px;
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
}

.cta-button {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 191, 150), #e4965b);
  color: #2e1d09;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
  min-width: 150px;
  text-align: center;
  width: 100%;
  max-width: 200px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #e3c565, #fc8611);
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
}

.cta-button:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
  .header-links {
    gap: 15px;
  }

  .cta {
    flex: 1 1 calc(50% - 15px);
  }

  .cta-button {
    font-size: 0.9em;
    padding: 6px 12px;
    max-width: 140px;
  }
}

footer {
  padding: 20px;
  background: #1f2a38;
}

footer a {
  color: #4fd1c5;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

#metrics div {
  font-size: 1.5em;
  margin: 10px 0;
  color: #fff;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 250px;
  height: auto;
  border-radius: 15px;
}

.hero-image img {
  width: 30%;
  height: auto;
}

.hero-image img,
.logo-img {
  border-radius: 15px;
}

.hero-image {
  padding-top: 50px;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  font-size: 1.2em;
  margin: 10px 0;
}
