/* === Global Styles === */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at center, #0c0f16 0%, #000000 100%);
  color: #00ffea;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* === Header === */
header {
  background: #050714cc;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px #00ffe0aa;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 2rem;
  color: #00ffe0;
  text-shadow: 0 0 15px #00ffe0, 0 0 30px #00ffe0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #00ffe0;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  text-shadow: 0 0 6px #00ffe0;
}

nav a:hover {
  color: #00fff8;
  text-shadow: 0 0 15px #00fff8;
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #002233 0%, #000a12 100%);
  box-shadow: inset 0 0 100px #00ffe0cc;
  border-radius: 15px;
  margin-bottom: 4rem;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 25px #00ffe0, 0 0 50px #00ffe0aa;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #00ccc9cc;
  text-shadow: 0 0 8px #00ccc9aa;
}

.btn {
  background: #00ffe0;
  color: #000;
  padding: 0.85rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 0 15px #00ffe0, 0 0 30px #00ffe0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: #00b3a9;
  box-shadow: 0 0 30px #00fff8, 0 0 60px #00fff8;
}

/* === Tokens Section === */
.tokens {
  padding: 2rem 0 6rem 0;
}

.tokens h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #00fff8;
  text-shadow: 0 0 20px #00fff8;
}

.token-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.token-card {
  background: #01121fdd;
  border: 1px solid #00ffe0;
  border-radius: 15px;
  padding: 2rem 3rem;
  width: 240px;
  text-align: center;
  box-shadow: 0 0 20px #00ffe0cc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #00fff8cc;
}

.token-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #00fff8;
  text-shadow: 0 0 10px #00fff8;
  letter-spacing: 0.1em;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00ffea;
  text-shadow: 0 0 10px #00ffea;
}

/* === About Section === */
.about {
  background: #020811dd;
  padding: 4rem 2rem 6rem 2rem;
  border-radius: 15px;
  box-shadow: 0 0 50px #00ffe0bb inset;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #00fff8;
  text-shadow: 0 0 15px #00fff8;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #66fffccc;
  text-shadow: 0 0 8px #66fffccc;
}

/* === Footer === */
footer {
  background: #010712;
  text-align: center;
  padding: 1.5rem 0;
  color: #004d44cc;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 3px #00ffe0aa;
}

/* === Responsive === */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .token-list {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
