/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f0f0; /* soft cream */
  color: #403030;
  line-height: 1.6;
  padding: 2rem;
}

.container {
  max-width: 900px;
  margin: auto;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero h1 {
  font-size: 3rem;
  color: #d6a7a1;
  letter-spacing: 1px;
  position: relative;
  animation: fadeInDown 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  color: #9e8b86;
  margin-top: 0.5rem;
}

/* Description */
.token-description {
  padding: 1.5rem 1rem;
  font-size: 1rem;
  background: #fffaf7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.feature-card {
  background: #fff0ec;
  padding: 1.5rem;
  border-radius: 12px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #ffe4dd;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
  color: #d6a7a1;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}