/* Basic dark theme + responsive layout */
body {
  background-color: #0d0d0d;
  color: #eaeaea;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #1a1a1a;
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #444;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #ff4ec9;
}

main {
  padding: 1rem;
}

#token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.token-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
  width: 280px;
  box-shadow: 0 0 10px rgba(255, 78, 201, 0.1);
  transition: transform 0.2s ease;
}

.token-card:hover {
  transform: scale(1.02);
  border-color: #ff4ec9;
}

.token-card h2 {
  margin-top: 0;
  color: #ff4ec9;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #666;
}
.badge {
  background: linear-gradient(90deg, #ff4ec9, #f97316);
  color: #fff;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  box-shadow: 0 0 12px rgba(255, 78, 201, 0.5);
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.badge:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 78, 201, 0.9);
}

.price-up {
  color: #4ade80; /* green-400 */
  font-weight: bold;
}

.price-down {
  color: #f87171; /* red-400 */
  font-weight: bold;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.hero-banner {
  background-image: url('HeroBanner.png');
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
  display: flex;
  align-items: flex-start;  /* pushes content to top-left */
  justify-content: flex-start; /* moves content to the left */
  border-bottom: 2px solid #ff4ec9;
  padding-left: 40px; /* adjust how far from the left edge */
  padding-top: 40px;  /* adjust how far from the top */
}


.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: left;           /* was centered */
  align-items: flex-start;    /* forces left alignment */
  justify-content: flex-start;/* stops center alignment */
}


.hero-banner h1 {
  color: #ff4ec9;
  font-size: 3rem;
  margin: 0;
  text-shadow: 0 0 10px #ff4ec9;
}

.hero-banner p {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* forces everything left-aligned */
  text-align: left;
}

.oni-logo {
  margin-top: 0.25rem;
  width: 60px;  /* adjust size */
  height: auto;
  filter: drop-shadow(0 0 5px #ff4ec9);
}

