.ascii-art {
  background-color: #000000;
  color: #ff69b4;
  padding: 15px;
  margin: 30px 0;
  font-family: "Courier New", monospace;
  border: 2px solid #ff69b4;
  font-size: 12px;
  white-space: pre;
  line-height: 1;
}

.scroll-container {
  background-color: #800080;
  color: #ff69b4;
  padding: 15px;
  margin: 30px 0;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
  border: 2px dashed #ff69b4;
  font-size: 24px;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-text {
  display: inline-block;
  animation: scrollText 20s linear infinite;
  padding-left: 100%;
}

@keyframes scrollText {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-200%);
  }
}

.visitor-stats {
  background-color: #800080;
  padding: 15px;
  margin: 10px 0;
  border: 2px solid #ff69b4;
  width: 100%;
  box-sizing: border-box;
}


.poem-div {
    background-color: #800080;
    color: #ff69b4;
    padding: 15px;
    margin: 20px 0;
    border: 2px solid #ff69b4;
    font-family: 'Courier New', monospace;
    text-align: left;
  }
  
  .msrant{
    background-color: #400080 !important;
    color: #ff0000;
    padding: 15px;
    margin: 20px 0;
    border: 3px solid #ff0000;
    font-family: 'Courier New', monospace;
  }

  .coollinks {
    background-color: #800080;
    color: #ff69b4;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ff69b4;
  }

.construction {
    padding: 10px;
    margin: 20px 0;
}



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

.sparkle::before {
    content: "✨";
    position: absolute;
    top: -10px;
    left: -10px;
    animation: sparkleFloat 2s infinite;
}

@keyframes sparkleFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 5px #ff69b4,
                 0 0 10px #ff69b4,
                 0 0 20px #ff69b4,
                 0 0 40px #ff69b4;
    animation: neonPulse 1.5s infinite;
}

@keyframes neonPulse {
    0% { text-shadow: 0 0 5px #ff69b4,
                      0 0 10px #ff69b4,
                      0 0 20px #ff69b4,
                      0 0 40px #ff69b4; }
    50% { text-shadow: 0 0 10px #ff69b4,
                      0 0 20px #ff69b4,
                      0 0 40px #ff69b4,
                      0 0 80px #ff69b4; }
    100% { text-shadow: 0 0 5px #ff69b4,
                      0 0 10px #ff69b4,
                      0 0 20px #ff69b4,
                      0 0 40px #ff69b4; }
}

/* DarkReader compatibility */
[data-darkreader-inline-bgcolor] {
    background-color: #1a0033 !important;
}

[data-darkreader-inline-color] {
    color: #ff69b4 !important;
}



@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

img[alt="GNU Logo"],
img[alt="Linux Logo"] {
    margin: 0 10px;
    animation: wave 2s infinite;
}

img[alt="No JavaScript"] {
    height: 30px !important;
}

/* Glitch effect on hover */
h1:hover {
    animation: glitch 0.3s infinite;
}

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

.construction-notice {
    text-align: center;
    margin: 20px 0;
}

.construction-notice img {
    max-width: 100%;
    height: auto;
} 



/* Particle effect */
.particle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    animation: particleFall 3s linear infinite;
}

@keyframes particleFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.adhd-text {
    display: inline-block;
    animation: adhd-bounce 0.5s infinite alternate, adhd-color 2s infinite;
    transform-origin: center;
}

.adhd-text:nth-child(2n) {
    animation-delay: 0.1s;
}

.adhd-text:nth-child(3n) {
    animation-delay: 0.2s;
}

.adhd-text:nth-child(4n) {
    animation-delay: 0.3s;
}

@keyframes adhd-bounce {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.2); }
    50% { transform: rotate(-5deg) scale(1); }
    75% { transform: rotate(3deg) scale(0.9); }
    100% { transform: rotate(0deg) scale(1.1); }
}

@keyframes adhd-color {
    0% { color: #ff69b4; }
    20% { color: #ff1493; }
    40% { color: #ff00ff; }
    60% { color: #9400d3; }
    80% { color: #8a2be2; }
    100% { color: #ff69b4; }
}

.construction-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: repeating-linear-gradient(
        45deg,
        #ff69b4,
        #ff69b4 10px,
        #800080 10px,
        #800080 20px
    );
    border: 3px solid #ff69b4;
}

.construction-img {
    width: 150px !important;
    height: auto !important;
    image-rendering: pixelated;
    animation: constructionBounce 1s infinite alternate;
}

@keyframes constructionBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
