/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #0052ff;
  border-radius: 20px;
  margin-top: 20px;
  color: #ffffff;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  color: #e6f0ff;
  max-width: 700px;
  margin: 0 auto 10px;
}

.bio {
  font-style: italic;
  color: #ffe9aa;
  margin-top: 10px;
}

/* Buttons / Links */
.buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.buttons a {
  background-color: #ffffff;
  color: #0052ff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s ease;
}

.buttons a:hover {
  background-color: #e6f0ff;
  color: #000;
}

/* Section Styling */
.section {
  margin-top: 60px;
  padding-bottom: 40px;
}

.section h2 {
  font-size: 2rem;
  text-align: center;
  color: #0052ff;
  margin-bottom: 20px;
}

/* Image Gallery */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 0 12px #0052ff33;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

/* Tokenomics & Roadmap */
ul, ol {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
  color: #1a1a1a;
  font-size: 1rem;
}

/* Roadmap */
.roadmap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.phase {
  background-color: #e6f0ff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 8px #0052ff44;
  width: 300px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  color: #4c4c4c;
  font-size: 0.9rem;
  border-top: 1px solid #cfdfff;
}
