/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Navigation - Dark Glass */
.navbar {
  display: flex;
  justify-content: center;      /* center everything */
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  background: rgba(15, 15, 20, 0.85);  /* darker semi-transparent */
  backdrop-filter: blur(12px);
  box-shadow: 0 3px 12px rgba(0,0,0,0.6);
  border-bottom: 2px solid #ff66cc;
  z-index: 1000;
  border-radius: 0 0 12px 12px;
}

.logo img {
  width: 45px;
  filter: drop-shadow(0 0 6px #ff66cc);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255,102,204,0.15);
  color: #ff66cc;
  text-shadow: 0 0 6px #ff66cc;
}

.cta-button {
  background: linear-gradient(90deg, #ff66cc, #a64dff);
  color: #fff;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 0.9rem;   /* keep small */
}
.cta-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ff85d9, #b366ff);
}

.hero {
  text-align: center;
  padding: 1rem 1rem 1rem;   /* smaller padding so content is higher */
  background: radial-gradient(circle at center, #000, #0a0a0a);
}

.headline {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 
    0 0 6px #ff66cc,
    0 0 12px #ff66cc,
    0 0 20px rgba(255, 102, 204, 0.8);
}

.tagline { font-size: 1.3rem; color: #ffffff; margin-bottom: 1rem; }
.dao-highlight { color: #ff66cc; text-shadow: 0 0 6px #ff66cc; }
.image-showcase { display: flex; justify-content: center; gap: 1.5rem; }
.diva-img { width: 250px; border-radius: 6px; }

/* Sections */
.section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}
.section h2 {
  color: #ff66cc;
  margin-bottom: 1rem;
}
.dark-section {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
}
.checklist { list-style: none; padding: 0; }
.checklist li { margin: 0.8rem 0; }

/* Join */
.join-section { text-align: center; }
.join-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: #ff66cc;
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px #ff66cc;
}
.join-btn:hover { background: #e85db7; }

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: #aaa;
  margin-top: 3rem;
}
footer p:first-child { color: #fff; font-weight: 600; }
/* === Custom Scrollbar === */
::-webkit-scrollbar {
  width: 18px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;       /* dark track */
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff66cc, #a64dff);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff85d9, #b366ff);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thick;
  scrollbar-color: #ff66cc #000;
}
/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  z-index: 1100;
}

.back-to-top svg {
  fill: #fff; /* White by default */
  transition: fill 0.3s ease;
}

.back-to-top:hover {
  opacity: 1;
}

.back-to-top:hover svg {
  fill: #ff66cc; /* Pink hover effect */
}
