* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #1e1e2f;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 50px;
  border-radius: 50%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

.buy-button {
  background-color: #ffd700;
  color: #000;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
}

.hero {
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  padding: 60px 30px;
  text-align: center;
}

.hero img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  color: #1e1e2f;
}

.hero p {
  font-size: 20px;
  color: #5c5c5c;
}

section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e1e2f;
  text-align: center;
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-top: 20px;
}

.about-content p {
  flex: 1;
  min-width: 280px;
}

.about-content img {
  width: 200px;
  border-radius: 10px;
}

/* How it works */
.how-content ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
.how-content li {
  margin-bottom: 10px;
}
.how-note {
  font-size: 15px;
  color: #666;
  margin-top: 5px;
  text-align: left;
}

/* Tokenomics */
.token-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.token-box div {
  margin-bottom: 12px;
  font-size: 18px;
}

.token-box ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 22px;
}

.token-img {
  width: 120px;
  margin: 30px auto 0;
  display: block;
  border-radius: 10px;
}

/* Roadmap */
.roadmap-box ul {
  padding-left: 22px;
  margin-bottom: 12px;
}
.roadmap-box li {
  margin-bottom: 10px;
}
.roadmap-note {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
  text-align: left;
}

/* Contact */
.contact-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px 30px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.contact-box a {
  color: #1e1e2f;
  font-weight: 600;
  text-decoration: underline;
}

.contact-box a:hover {
  color: #ffd700;
}

.social-links {
  margin-top: 16px;
  font-size: 18px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1e1e2f;
  color: #ccc;
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  .token-box, .contact-box {
    padding: 18px 10px;
  }
  .roadmap-box {
    padding: 10px;
  }
  section {
    padding: 0 6px;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
}
