/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Body & Background ===== */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0d0d0d;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Subtle radial glow behind nav */
body::before {
  content: "";
  position: fixed;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 70vh;
  background: radial-gradient(ellipse,
    rgba(212, 165, 32, 0.08) 0%,
    rgba(212, 165, 32, 0.03) 20%,
    transparent 40%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

#pagecontent {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ===== Navigation - Glassmorphism ===== */
nav {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 165, 32, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A520, transparent);
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  color: #D4A520;
  background: rgba(212, 165, 32, 0.05);
  text-shadow: 0 0 20px rgba(212, 165, 32, 0.3);
}

nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

nav ul li a img {
  height: 30px;
  display: block;
  transition: filter 0.3s ease;
}

nav ul li a:hover img {
  filter: drop-shadow(0 0 6px rgba(212, 165, 32, 0.4));
}

.narrowli {
  display: none;
}

/* ===== Section / Content ===== */
section {
  padding: 56px 40px 80px;
}

/* ===== Headings ===== */
section h1 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 56px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}

section h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #D4A520, #a07818);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(212, 165, 32, 0.4);
}

section h1:first-child {
  margin-top: 0;
}

section h2 {
  font-size: 19px;
  font-weight: 600;
  color: #D4A520;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 20px;
}

section h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ccc;
  margin-top: 20px;
  margin-bottom: 8px;
  padding-left: 28px;
}

/* ===== Paragraphs ===== */
section p {
  padding: 0 20px;
  margin-bottom: 14px;
  color: #b0b0b0;
  text-align: justify;
  max-width: 860px;
}

section p strong {
  color: #ddd;
  font-weight: 600;
}

/* ===== Content Cards ===== */
.card {
  background: linear-gradient(145deg, #1a1a1a, #141414);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(212, 165, 32, 0.1);
}

.whitelist-page .card:hover {
  transform: none;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.card h2 {
  padding-left: 0;
  margin-top: 0;
}

.card p {
  padding: 0;
  max-width: none;
}

.mission-page p {
  max-width: none;
}

.card p:last-child {
  margin-bottom: 0;
}

/* ===== Hero Section (homepage) ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 60px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212, 165, 32, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== Center Image (homepage logo) ===== */
.center-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  max-height: 50vh;
  filter: drop-shadow(0 8px 40px rgba(212, 165, 32, 0.2));
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* ===== Soon Badge ===== */
.soon-text {
  text-align: center;
  font-size: 8vh;
  margin: 24px 0 0;
  font-weight: 800;
  letter-spacing: 12px;
  background: linear-gradient(180deg, #D4A520, #a07818);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(212, 165, 32, 0.25));
}

/* ===== Links ===== */
.cleanlink {
  color: #D4A520;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  text-shadow: none;
}

.cleanlink:hover {
  color: #e8b830;
  text-shadow: 0 0 12px rgba(212, 165, 32, 0.3);
}

a {
  color: #D4A520;
  transition: all 0.2s ease;
}

a:hover {
  color: #e8b830;
}

/* ===== Lists ===== */
section ul {
  padding-left: 40px;
  margin-bottom: 14px;
}

section ul li {
  margin-bottom: 6px;
  color: #b0b0b0;
}

/* ===== Whitelist Steps ===== */
.steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.steps li {
  background: linear-gradient(145deg, #1a1a1a, #141414);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps li:hover {
  transform: translateX(4px);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.whitelist-page .steps li:hover {
  transform: none;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #D4A520, #a07818);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #0d0d0d;
  box-shadow: 0 4px 12px rgba(212, 165, 32, 0.25);
}

/* ===== Divider ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.2), transparent);
  margin: 40px 0;
  border: none;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 32px 20px;
  color: #555;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 0;
  }

  nav ul li a {
    font-size: 12px;
    padding: 14px 14px;
    letter-spacing: 1px;
  }

  nav ul li a img {
    height: 24px;
  }

  section {
    padding: 36px 20px 56px;
  }

  section h1 {
    font-size: 22px;
  }

  section h2 {
    font-size: 17px;
    padding-left: 12px;
  }

  section p {
    padding: 0 12px;
  }

  .card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .hero {
    min-height: 50vh;
    padding: 40px 16px;
  }

  .soon-text {
    font-size: 6vh;
    letter-spacing: 8px;
  }

  .steps li {
    padding: 16px 18px;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  nav ul li a {
    font-size: 11px;
    padding: 12px 10px;
    letter-spacing: 0.5px;
  }

  section {
    padding: 24px 16px 40px;
  }

  section h1 {
    font-size: 19px;
    letter-spacing: 1px;
  }

  .soon-text {
    font-size: 5vh;
    letter-spacing: 4px;
  }
}
