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

body {
  background: #000;
  color: #0f0;
  font-family: "Courier New", monospace;
  overflow-x: hidden;
  position: relative;
}

#matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header {
  text-align: center;
  margin-bottom: 60px;
}

h1 {
  font-size: 4rem;
  letter-spacing: 8px;
  text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
  margin-bottom: 10px;
  animation: pulse 2s ease-in-out infinite;
}

.glitch {
  position: relative;
}

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

.glitch::before {
  animation: glitch-1 2.5s infinite;
  color: #ff0;
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 3s infinite;
  color: #0ff;
  z-index: -2;
}

@keyframes glitch-1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitch-2 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  60% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 4px;
  color: #0a0;
  animation: blink 1.5s infinite;
}

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

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 80px;
}

.nav-button {
  background: rgba(0, 0, 0, 0.8);
  color: #0f0;
  border: 2px solid #0f0;
  padding: 20px 30px;
  text-decoration: none;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
  transition: left 0.5s;
}

.nav-button:hover::before {
  left: 100%;
}

.nav-button:hover {
  background: rgba(0, 255, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.6), inset 0 0 20px rgba(0, 255, 0, 0.1);
  transform: translateY(-3px);
}

.nav-button.danger {
  border-color: #f00;
  color: #f00;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  animation: danger-pulse 2s ease-in-out infinite;
}

.nav-button.danger::before {
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
}

.nav-button.danger:hover {
  background: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), inset 0 0 20px rgba(255, 0, 0, 0.1);
}

@keyframes danger-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
  }
}

.manifesto {
  max-width: 800px;
  text-align: center;
  line-height: 1.8;
  font-size: 1rem;
  color: #0c0;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.manifesto p {
  margin-bottom: 15px;
}

.text-alt-1 {
  color: #f00;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.text-alt-2 {
  color: #00f;
  text-shadow: 0 0 5px rgba(0, 0, 255, 0.5);
}

.signature {
  margin-top: 40px;
  font-style: italic;
  color: #0f0;
}

.domain {
  font-size: 0.9rem;
  color: #0a0;
  margin-top: 5px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .button-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .nav-button {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .manifesto {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .container {
    padding: 20px 15px;
  }

  header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .nav-button {
    padding: 12px 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .manifesto {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
