* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(rgba(156,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156,255,0,0.03) 1px, transparent 1px),
    #050505;
  background-size: 40px 40px, 40px 40px, auto;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid #1a1a1a;
  backdrop-filter: blur(10px);
  width: 100%;
}

nav {
  max-width: 1100px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

nav a.logo {
  color: #9cff00;
  font-size: 22px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(156,255,0,0.5);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  font-size: 12px;
  font-weight: bold;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #9cff00;
  text-shadow: 0 0 10px rgba(156,255,0,0.6);
}

section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 25px;
  width: 100%;
}

h1, h2, h3 {
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(48px, 9vw, 100px);
  line-height: 0.95;
}

h1 span, h2 span {
  color: #9cff00;
  text-shadow: 0 0 25px rgba(156,255,0,0.45);
}

h2 {
  font-size: clamp(35px, 6vw, 65px);
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
}

p {
  color: #888;
}

.section-label {
  color: #9cff00;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-intro {
  max-width: 650px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  margin-top: 10px;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  text-align: center;
  transition: 0.25s;
}

.btn.primary {
  background: #9cff00;
  color: #050505;
}

.btn.secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #333;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(156, 255, 0, 0.45);
}

.hero {
  min-height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.badge {
  display: inline-block;
  border: 1px solid #333;
  color: #9cff00;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(156,255,0,0.15);
}

.hero-text {
  max-width: 420px;
  margin: 20px auto;
}

.welcome {
  color: #9cff00;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(156,255,0,0.4);
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #101010;
  border: 1px solid #202020;
  border-radius: 8px;
  padding: 25px;
  transition: 0.3s;
}

.card:hover {
  border-color: #9cff00;
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(156,255,0,0.12);
}

.card small {
  color: #9cff00;
  font-weight: bold;
}

.token-box {
  background: #101010;
  border: 1px solid #202020;
  border-radius: 8px;
  margin-top: 30px;
  overflow: hidden;
  transition: 0.3s;
}

.token-box:hover {
  border-color: #9cff00;
  box-shadow: 0 0 30px rgba(156,255,0,0.1);
}

.token-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #222;
  flex-wrap: wrap;
  gap: 8px;
}

.token-row:last-child {
  border-bottom: none;
}

.token-row span {
  color: #888;
  font-size: 13px;
}

.token-row strong {
  color: #f5f5f5;
}

.roadmap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #202020;
}

.roadmap-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding: 20px 0 20px 20px;
}

.roadmap-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 26px;
  width: 12px;
  height: 12px;
  background: #9cff00;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(156,255,0,0.7);
}

.roadmap-item .number {
  color: #9cff00;
  font-weight: 900;
  font-size: 22px;
  min-width: 40px;
}

.community {
  text-align: center;
}

.community p {
  max-width: 500px;
  margin: 0 auto 25px;
}

footer {
  padding: 30px 25px;
  text-align: center;
  background: #050505;
  border-top: 1px solid #1a1a1a;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  section {
    padding: 70px 20px;
  }

  nav {
    padding: 14px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 9px;
  }

  .hero {
    min-height: 85vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 72px);
    letter-spacing: -2px;
  }

  .hero-text {
    max-width: 280px;
  }

  .buttons {
    gap: 10px;
  }

  .buttons .btn {
    min-width: 130px;
    font-size: 12px;
    padding: 12px 16px;
  }

  .roadmap {
    padding-left: 14px;
  }

  .roadmap-item {
    gap: 14px;
    padding-left: 14px;
  }

  .roadmap-item::before {
    left: -21px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    gap: 7px !important;
  }

  .nav-links a {
    font-size: 8px !important;
    letter-spacing: -0.2px;
  }

  nav a.logo {
    font-size: 18px !important;
  }
}

@media (min-width: 601px) {
  .hero {
    min-height: auto !important;
    padding-top: 140px !important;
    padding-bottom: 60px !important;
  }

  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
