* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Orbitron', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}
header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
header h1, header p, .btn {
  position: relative;
  z-index: 1;
}
header h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  animation: glitch 1s infinite;
}
@keyframes glitch {
  0% { text-shadow: 2px 2px #ff005a, -2px -2px #00ffff; }
  20% { text-shadow: -2px -2px #ff005a, 2px 2px #00ffff; }
  40% { text-shadow: 2px -2px #ff005a, -2px 2px #00ffff; }
  60% { text-shadow: -2px 2px #ff005a, 2px -2px #00ffff; }
  80% { text-shadow: 2px 0px #ff005a, -2px 0px #00ffff; }
  100% { text-shadow: 0px 2px #ff005a, 0px -2px #00ffff; }
}
header p {
  max-width: 600px;
  margin-top: 1rem;
  font-size: 1.1rem;
}
.btn {
  margin-top: 2rem;
  padding: 10px 25px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #e0245e;
  color: #fff;
}
section {
  padding: 60px 20px;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.token-info p,
.mission p {
  max-width: 700px;
  margin: 0 auto 1rem;
}
footer {
  padding: 20px;
  text-align: center;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
}
a {
  color: #e0245e;
  text-decoration: none;
}
.trail {
  position: fixed;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: fadeOut 0.6s forwards;
  box-shadow: 0 0 8px white, 0 0 16px white;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }

  header p {
    font-size: 1rem;
    max-width: 90%;
  }

  .btn {
    padding: 8px 20px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .token-info p,
  .mission p {
    font-size: 0.95rem;
    max-width: 90%;
  }

  footer {
    font-size: 0.8rem;
  }

  .trail {
    width: 8px;
    height: 8px;
  }
}
.btn {
  margin-top: 2rem;
  padding: 12px 28px;
  background: white;
  color: black;
  border: 2px solid white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 0 0px white;
}

.btn:hover {
  background: black;
  color: white;
  border-color: white;
  box-shadow: 0 0 10px white, 0 0 20px white;
  transform: scale(1.05);
}
.arena {
  padding: 60px 20px;
  text-align: center;
}

.holder-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.holder {
  background: #111;
  border: 1px solid #222;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.holder:hover {
  background: #1a1a1a;
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.holder span {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 600;
}

.holder strong {
  font-size: 1.2rem;
  color: #ff4a7d;
  font-family: 'Orbitron', sans-serif;
}

.holder code {
  color: #aaa;
  font-size: 0.85rem;
  font-family: monospace;
}

.holder .supply {
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
}
