/* === Dark Mode generale === */
body {
  background-color: #0d0d0d !important;
  color: #e0e0e0 !important;
  font-family: "Courier New", monospace !important;
}

/* === Testi arcobaleno animati === */
@keyframes rainbow {
  0%{color: #ff0000;}
  14%{color: #ff7f00;}
  28%{color: #ffff00;}
  42%{color: #00ff00;}
  56%{color: #0000ff;}
  70%{color: #4b0082;}
  84%{color: #8b00ff;}
  100%{color: #ff0000;}
}

body, p, span, div, h1, h2, h3, h4, a {
  animation: rainbow 7s linear infinite;
  font-weight: bold;
}

/* === Effetto glitch ai titoli === */
@keyframes glitch {
  0% { text-shadow: 2px 0 purple, -2px 0 lime; }
  25% { text-shadow: -2px 0 lime, 2px 0 purple; }
  50% { text-shadow: 2px 0 lime, -2px 0 purple; }
  75% { text-shadow: -2px 0 purple, 2px 0 lime; }
  100% { text-shadow: 2px 0 purple, -2px 0 lime; }
}

h1, h2, h3, .profile-name {
  animation: glitch 1.5s infinite;
}

/* === Link neon underground === */
a {
  text-decoration: none !important;
  transition: color 0.3s ease-in-out;
}
a:hover {
  text-decoration: underline !important;
}

/* === Box generale === */
div, .box, .content, .module {
  background: #1a1a1a !important;
  border: 1px solid #333 !important;
  border-radius: 4px !important;
  padding: 5px !important;
}

/* === Nascondi pulsante "Block" === */
a[href*="block"], button[data-action="block"], .block-button {
  display: none !important;
}

/* === Pulizia commenti === */
.comment, .comment-body, .comment-content, .comment-top {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #e0e0e0 !important;
}

/* Mantieni solo contenitore arancione dei commenti */
.comment-container {
  background: #ffcc99 !important; /* puoi cambiare colore */
  border: none !important;
  padding: 8px !important;
  border-radius: 6px !important;
}

/* Bottoni dentro i commenti */
.comment-container button, .comment-container a {
  background: #1a1a1a !important;
  color: #00ff99 !important;
  border: 1px solid #333 !important;
  border-radius: 4px !important;
}
.comment-container button:hover, .comment-container a:hover {
  background: #333 !important;
  color: #b300ff !important;
}