body {
  background: #000;
  color: #0f0;
  font-family: 'Press Start 2P', monospace;
  text-align: center;
  padding: 2rem;
}

.logo {
  width: 64px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.25rem;
  color: #0ff;
}

.subtitle {
  font-size: 0.65rem;
  color: #888;
}

.status, .monitor {
  margin: 2rem auto;
  max-width: 600px;
  background: #111;
  padding: 1rem;
  border: 1px dashed #0f0;
  border-radius: 10px;
}

.status ul {
  list-style: none;
  padding: 0;
  font-size: 0.7rem;
  text-align: left;
}

.status li {
  margin: 0.5rem 0;
}

.monitor p {
  font-size: 0.75rem;
  margin: 0.3rem 0;
}

.glitch-text {
  margin-top: 2rem;
  font-size: 0.75rem;
  animation: glitch 1.2s infinite;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, 1px); }
  80% { transform: translate(1px, -2px); }
  100% { transform: translate(0); }
}

footer {
  margin-top: 2rem;
  font-size: 0.6rem;
  color: #444;
}
.why-afyz {
  margin: 4rem auto;
  text-align: center;
  max-width: 1000px;
}

.why-afyz h2 {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #0ff;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.why-card {
  background: #111;
  border: 1px dashed #0f0;
  padding: 1.5rem;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 0 10px #0f0;
  text-align: center;
}

.why-card img {
  width: 32px;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  color: #0ff;
}

.why-card p {
  font-size: 0.6rem;
  color: #ccc;
  line-height: 1.4;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem;
  z-index: 999;
}

.logo-link {
  display: inline-block;
}

.site-logo {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
  border-radius: 50%;
  border: 1px solid rgb(2, 3, 2);
}

.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;
}

/* === HEADER & TOGGLE === */
.networks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 2rem auto 1rem;
  padding: 0 1rem;
}

.networks-header h2 {
  font-size: 1.1rem;
  color: #0f0;
  font-family: 'Press Start 2P', monospace;
}

.network-toggle {
  display: flex;
  gap: 0.5rem;
}

.toggle-btn {
  padding: 0.4rem 1rem;
  font-size: 0.6rem;
  font-family: 'Press Start 2P', monospace;
  border-radius: 20px;
  border: 2px solid #0f0;
  background: transparent;
  color: #0f0;
  cursor: pointer;
}

.toggle-btn.active {
  background: #0f0;
  color: #000;
}

/* === GRID === */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 1rem auto 2rem;
  padding: 0 1rem;
}

/* === CARD === */
.network-card {
  background: #111;
  border: 1px dashed #0f0;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
  box-shadow: 0 0 6px #0f0;
}

.network-card img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
}

.network-card h3 {
  font-size: 0.65rem;
  color: #0ff;
  margin-bottom: 0.3rem;
}

.subtext {
  font-size: 0.55rem;
  color: #ccc;
  margin-bottom: 0.25rem;
}

.address {
  font-size: 0.5rem;
  color: #0f0;
  word-break: break-all;
  margin-bottom: 0.75rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.buttons a {
  flex: 1;
  padding: 0.35rem;
  font-size: 0.5rem;
  font-family: 'Press Start 2P', monospace;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
}

.explorer {
  background: #0044ff;
}

.service {
  background: #444;
}

.hidden {
  display: none;
}
