/* Global neon cyber style */

:root {
  --bg-main: radial-gradient(circle at top, #001233 0%, #000000 70%);
  --accent: #35f0ff;
  --accent-soft: #00bcd4;
  --accent-pink: #ff00ff;
  --card-bg: rgba(0, 18, 40, 0.9);
  --text-main: #c9faff;
  --text-muted: #90b9d9;
  --border-soft: #00eaff;
  --shadow-strong: 0 0 25px #00eaff, 0 0 60px #00bcd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
}

/* Layout */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 40px 16px 60px;
}

/* Nav */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 234, 255, 0.25);
  background: radial-gradient(circle at top, #020822 0%, #000000 60%);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: radial-gradient(circle at top, #35f0ff, #004d7a);
  box-shadow: 0 0 15px #00eaff;
}

.nav-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
}

.nav-sub {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-pink));
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(0, 20, 40, 0.9);
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.3);
}

/* Hero */

.hero {
  max-width: 1080px;
  margin: 30px auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.hero-main-title {
  font-size: 38px;
  margin-bottom: 10px;
  text-shadow: var(--shadow-strong);
}

.hero-tagline {
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.5;
  font-size: 15px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.badge {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 234, 255, 0.5);
  color: var(--text-muted);
}

.badge-rare {
  border-color: var(--accent-pink);
  color: #ffc4ff;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, #00d5ff, #006eff);
  color: #001322;
  font-weight: 700;
  box-shadow: var(--shadow-strong);
  font-size: 14px;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn-outline {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 234, 255, 0.4);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  opacity: 0.7;
}

.stat-value {
  font-weight: 600;
  color: var(--accent);
  font-size: 14px;
}

/* Hero image */

.hero-card {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: radial-gradient(circle at top, #112244, #020312);
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.4);
}

.hero-glow-ring {
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 234, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.5);
  pointer-events: none;
}

.hero-nft-box {
  position: relative;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #002f4f, #004b8c, #5c0eb8);
}

.hero-nft-box img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.hero-nft-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

/* Sections */

.section {
  max-width: 1080px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Roadmap */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.roadmap-card {
  padding: 16px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid rgba(0, 234, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 234, 255, 0.2);
  font-size: 13px;
}

.roadmap-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.roadmap-title {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Gallery */

.gallery-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.gallery-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(0, 234, 255, 0.3);
  font-size: 11px;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-bottom: 6px;
}

.gallery-id {
  color: var(--accent);
  font-weight: 600;
}

.gallery-meta {
  color: var(--text-muted);
  font-size: 10px;
}

/* Mint card */

.mint-card-outer {
  max-width: 520px;
  margin: 20px auto 0;
}

.mint-card {
  padding: 26px 20px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
}

.mint-label {
  font-size: 13px;
  margin-bottom: 4px;
}

.mint-input {
  width: 90px;
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: #001a2a;
  color: var(--text-main);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(0, 234, 255, 0.2);
  padding: 14px 18px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  background: #020617;
}

/* Responsive */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  main {
    padding-top: 24px;
  }
}
