    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background: #000;
      color: #fff;
      font-family: 'Press Start 2P', monospace;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 100vh;
      text-align: center;
      padding: 2rem 1rem;
    }
    header img {
      position: absolute;
      top: 1rem;
      left: 1rem;
      height: 40px;
      image-rendering: pixelated;
    }
    .header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

    .projects-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Press Start 2P', monospace;
  color: #7effe9;
}
    .nav-bar {
      display: flex;
      gap: 1rem;
      margin-top: 6rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .coming-soon {
  font-size: 3rem;
  color: #7effe9;
  margin: 4rem 0 2rem;
  text-shadow: 0 0 5px #7effe9;
}
.twitter-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}

.twitter-float img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px #0ff);
  image-rendering: pixelated;
}
    .nav-bar a {
      padding: 0.4rem 1rem;
      border: 1px solid #999;
      color: #fff;
      text-decoration: none;
      font-size: 10px;
      background: #222;
    }
.robot-box {
  background: #111;
  padding: 3rem;
  border: 2px dotted #7effe9;
  filter: drop-shadow(0 0 6px #7effe9);
  margin-top: 2rem;
  font-family: 'Press Start 2P', monospace;
  color: #7effe9;
  font-size: 4rem;
  display: inline-block;
  animation: glow 1.5s infinite ease-in-out;
}


    .intro {
      max-width: 700px;
      background: #111;
      border: 2px dotted #fff;
      padding: 2rem;
      filter: drop-shadow(0 0 5px #fff);
      margin-bottom: 2rem;
    }
    .intro h1 {
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }
    .intro p {
      font-size: 0.7rem;
      line-height: 1.5rem;
      color: #ccc;
    }
    .projects {
      margin: 2rem 0;
      font-size: 0.7rem;
    }
    .projects a {
      display: inline-block;
      margin: 0.5rem;
      padding: 0.4rem 1rem;
      border: 1px solid #7effe9;
      color: #7effe9;
      text-decoration: none;
    }
    .projects a:hover {
      background: #7effe9;
      color: #000;
    }
    .footer {
      font-size: 10px;
      color: #888;
      padding: 2rem 0;
      margin-top: auto;
    }
    .ticker {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 #444, inset 0 -1px 0 #444;
      background: #111;
      color: #0ff;
      font-size: 10px;
      padding: 0.5rem;
      position: fixed;
      top: 60px;
      left: 0;
      z-index: 1000;
    }
    .ticker-content {
      display: inline-block;
      padding-left: 100%;
      animation: ticker-scroll 20s linear infinite;
    }
.airdrop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  padding: 0 1rem;
}


.airdrop-card {
  background: #111;
  border: 1px dotted #7effe9;
  padding: 1rem;
  text-align: center;
  filter: drop-shadow(0 0 5px #0ff);
  transition: transform 0.2s ease;
  width: 100%;
}


.airdrop-card:hover {
  transform: scale(1.03);
}

.airdrop-card h3 {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.airdrop-card p {
  font-size: 0.6rem;
  color: #ccc;
}

.airdrop-card .status {
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: bold;
}

.status.live { color: #0f0; }
.status.testnet { color: #ff0; }
.status.soon { color: #f66; }
.status.distributed { color: #00f;}
.status.none { color: #999;}
.airdrop-card a {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.6rem;
  color: #7effe9;
  text-decoration: none;
  border: 1px solid #7effe9;
  padding: 0.3rem 0.6rem;
  transition: background 0.2s ease;
}

.airdrop-card a:hover {
  background: #7effe9;
  color: #000;
}

    @keyframes glow {
  0% { text-shadow: 0 0 2px #7effe9; }
  50% { text-shadow: 0 0 10px #7effe9; }
  100% { text-shadow: 0 0 2px #7effe9; }
}
    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  border: 1px solid #999;
  padding: 0.4rem 1rem;
  font-family: 'Press Start 2P', monospace;
}

.icon-telegram {
  width: 16px;
  height: 16px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.project-logo {
  width: 20px;
  height: 20px;
  image-rendering: pixelated;
}
.badge {
  font-size: 10px;
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
}

.badge::before {
  content: " ";
}
.card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #080808;
  background: #dae509;
  font-size: 10px;
  padding: 2px 6px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1;
  box-shadow: 0 0 4px #000;
}
.airdrop-card {
  position: relative;
}