:root {
  --neon-purple: #b026ff;
  --safety-yellow: #eaff00;
  --bg-color: #0a0a0a;
  --text-color: #ffffff;
  --link-color: #00ffcc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  background-image: 
    linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111),
    linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  color: var(--text-color);
  font-family: "Courier New", Courier, monospace;
  line-height: 1.6;
  overflow-x: hidden;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  text-transform: uppercase;
  color: var(--safety-yellow);
  text-shadow: 3px 3px 0px var(--neon-purple), -2px -2px 0px #00ffcc;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px dashed var(--neon-purple);
  transition: all 0.1s;
}

a:hover {
  color: var(--bg-color);
  background-color: var(--safety-yellow);
  border-bottom: 2px solid var(--bg-color);
}

.marquee-text {
  background: var(--neon-purple);
  color: var(--safety-yellow);
  font-weight: bold;
  padding: 10px;
  border: 3px solid var(--safety-yellow);
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 20px 0;
  box-shadow: 5px 5px 0 #000;
}

.misaligned-box {
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid var(--safety-yellow);
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 8px 8px 0 var(--neon-purple), -4px -4px 0 #00ffcc;
  position: relative;
}

.misaligned-box::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed var(--link-color);
  z-index: -1;
  pointer-events: none;
}

.misaligned-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.misaligned-nav li a {
  display: block;
  padding: 10px 15px;
  background: var(--bg-color);
  border: 2px solid var(--neon-purple);
  color: var(--safety-yellow);
  box-shadow: 4px 4px 0 var(--link-color);
  text-transform: uppercase;
  font-size: 1.1rem;
}

.misaligned-nav li a:hover {
  transform: translate(2px, 2px) skew(-5deg);
  box-shadow: 2px 2px 0 var(--link-color);
  background: var(--neon-purple);
  color: #fff;
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-purple);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--link-color);
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%); }
  20% { clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%); }
  40% { clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%); }
  60% { clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%); }
  80% { clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%); }
  100% { clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%); }
}

.jitter-text {
  display: inline-block;
  animation: jitter 0.3s infinite;
}

@keyframes jitter {
  0% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  75% { transform: translate(2px, 0); }
  100% { transform: translate(-1px, -1px); }
}

.glitch-hover:hover {
  animation: jitter 0.2s infinite;
  background-color: var(--safety-yellow);
  color: #000;
}

details.misaligned-details {
  background: #111;
  border: 2px solid var(--neon-purple);
  padding: 10px;
  margin-top: 15px;
}

summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--safety-yellow);
}

summary:hover {
  color: var(--link-color);
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #000;
  border: 2px solid var(--link-color);
  padding: 15px;
  box-shadow: 4px 4px 0 var(--neon-purple);
  transition: transform 0.1s;
}

.service-card:hover {
  transform: scale(1.05) rotate(-1deg);
  border-color: var(--safety-yellow);
  box-shadow: 6px 6px 0 var(--neon-purple);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
  border-bottom: 1px solid var(--neon-purple);
  padding-bottom: 5px;
}

.service-card p {
  font-size: 0.9rem;
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  background: var(--neon-purple);
  color: #fff;
  padding: 5px 10px;
  border: none;
}

.service-card a:hover {
  background: var(--safety-yellow);
  color: #000;
}

.crypto-item {
  background: #222;
  border: 1px dashed var(--safety-yellow);
  padding: 10px;
  margin-bottom: 10px;
  word-break: break-all;
}

.crypto-address {
  color: var(--link-color);
  font-size: 0.85rem;
}

.qr-container img {
  max-width: 100px;
  border: 2px solid var(--neon-purple);
  margin-top: 10px;
  filter: contrast(150%) sepia(100%) hue-rotate(250deg);
}

footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  border-top: 4px double var(--safety-yellow);
}

.under-construction {
  display: inline-block;
  background: repeating-linear-gradient(
    45deg,
    var(--safety-yellow),
    var(--safety-yellow) 10px,
    #000 10px,
    #000 20px
  );
  color: #fff;
  padding: 5px 15px;
  font-weight: bold;
  border: 2px solid #000;
  text-shadow: 1px 1px 0 #000;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.5; }
}