body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: white;
  scroll-behavior: smooth;
}

.navbar {
  position: sticky;
  top: 0;
  background: #000;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-links {
  display: none;
  flex-direction: column;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0.5rem 0;
}

.hamburger {
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 2rem;
  }

  .hamburger {
    display: none;
  }
}

.section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.alt {
  background: #1c1c1c;
}

.about-coin {
  max-width: 220px;
  animation: float 3s infinite ease-in-out;
}

.dray-img {
  max-width: 300px;
  border-radius: 1rem;
  margin-top: 1rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}

.copy-box {
  background: #222;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin: 0.5rem 0;
}

.social-buttons img {
  width: 30px;
  margin: 0.5rem;
  transition: transform 0.3s ease;
}

.social-buttons img:hover {
  transform: scale(1.2);
}

.slider img {
  max-width: 600px;
  display: none;
  transition: transform 0.5s ease;
}

.slide.active {
  display: block;
  transform: scale(1.05);
}

footer {
  background: #000;
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

/* Scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.marquee {
  display: flex;
  gap: 2rem;
  animation: scroll-marquee 20s linear infinite;
}

.marquee img {
  height: 100px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.roadmap-block {
  margin: 2rem auto;
  max-width: 700px;
  text-align: left;
}

.roadmap-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: gold;
}

.roadmap-block p {
  line-height: 1.8;
  margin-left: 1rem;
}

.roadmap-note {
  margin-top: 3rem;
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}


@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
