* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #000;
  color: #00ff66;
  font-family: monospace;
  line-height: 1.6;
}

.deface-header {
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 2px solid #00ff66;
}

.deface-header h1 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 4px;
  text-shadow: 0 0 10px #00ff66;
}

.subtitle {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #66ff99;
}

.content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.manifesto {
  border: 1px dashed #00ff66;
  padding: 2rem;
  margin-bottom: 3rem;
}

.manifesto h2 {
  margin-top: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.signature {
  margin-top: 1.5rem;
  font-style: italic;
  color: #66ff99;
}

.leak h2 {
  text-transform: uppercase;
  border-bottom: 1px solid #00ff66;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.warning {
  color: #ff4444;
  margin-bottom: 1.5rem;
}

.leak-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leak-item {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dotted #004422;
}

.giver {
  color: #00ffaa;
  font-weight: bold;
}

.receiver {
  color: #66aaff;
  font-weight: bold;
}

.arrow {
  color: #ffcc00;
}

.deface-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #006633;
  padding: 2rem 1rem;
  border-top: 1px solid #003322;
}

.hack-btn {
  background: transparent;
  color: #00ff66;
  font-family: monospace;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #00ff66;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: all 0.15s ease-in-out;
}

.hack-btn:hover {
  background: #00ff66;
  color: #000;
  box-shadow:
    0 0 8px #00ff66,
    0 0 16px #00ff66;
}

.hack-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 2px #000,
    0 0 0 4px #00ff66;
}

.hack-btn:active {
  transform: scale(0.96);
}

/* optionnel : effet glitch léger */
.hack-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed #00ff66;
  opacity: 0.3;
  pointer-events: none;
}

