body {
  margin: 0;
  font-family: 'Orbitron', 'Roboto Mono', monospace;
  background: #0a0f1a;
  color: #e0e6f0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.logo img {
  width: 120px;
  height: auto;
}

.nav-menu a {
  margin-left: 20px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.hero {
  background: url('assets/bg-stars.jpg') no-repeat center center / cover;
  text-align: center;
  padding: 100px 20px;
}

.hero-icon {
  width: 120px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 36px;
  color: #fff;
}

.hero-content p {
  font-size: 16px;
  color: #bbb;
  margin: 10px 0 30px;
}

.btn-group button {
  background: #0f62fe;
  border: none;
  color: white;
  margin: 5px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'Orbitron', monospace;
}

.btn-group button:hover {
  box-shadow: 0 0 8px #79c0ff;
}

.stats {
  display: flex;
  justify-content: space-around;
  background: #0d1220;
  padding: 40px 20px;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  color: #79c0ff;
  margin-bottom: 10px;
}

#hashrate, #rewards, #live-earnings {
  font-size: 20px;
  font-weight: bold;
}

.chart-section {
  text-align: center;
  background: #0a0f1a;
  padding: 40px 20px;
}

#wallet-support {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.wallets {
  background: #000;
  padding: 30px 20px;
  text-align: center;
}

.wallet-icons img {
  height: 64px;
  width: 64px;
  margin: 0 10px;
  filter: brightness(1.2);
}

.floating-banner {
  background: #111f3a;
  color: #ffce56;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  animation: scrollBanner 20s linear infinite;
}

@keyframes scrollBanner {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    align-items: center;
  }
  .nav-menu a {
    display: block;
    margin: 10px 0;
  }
  #wallet-support {
    flex-direction: column;
  }
}
