body {
    background-color: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-family: monospace;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 0px rgba(8,230,255,0.4), -1px -1px 0px rgba(255,0,0,0.4);
}
#center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: #000;
}
#marquee {
    width: 400px;
    overflow: hidden;
    display: inline-block;
    margin-bottom: -3px;
}
 video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    filter: contrast(1.1) brightness(0.9) saturate(1.2);
 }

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
  padding: 10px;
  color: rgba(255,255,255,0.6);
  z-index: 10;
}

.subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #0ff;
  margin-top: -20px;
  text-shadow: 1px 1px 0px rgba(255,0,0,0.7);
  animation: flicker 3s linear infinite;
}

.ascii-art {
    text-align: center;
    font-family: monospace;
    line-height: 1.1;
    transform: scale(0.8);
    display: inline-block;
}

.ascii-art pre {
    text-align: center;
    font-family: monospace;
    font-size: 16px;
    line-height: 1.1;
    margin: 0;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
}

/* Glitch animation for the ASCII art */
@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); }
}

.ascii-art:hover pre {
  animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
  text-shadow: 2px 2px 0px rgba(255,0,255,0.7), -2px -2px 0px rgba(0,255,255,0.7);
}

/* Subtitle flicker animation */
@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 1;
    text-shadow: 1px 1px 0px rgba(255,0,0,0.7);
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.5;
    text-shadow: none;
  }
}

/* Hver effect for social links */
.social-link {
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
  color: #0ff;
  text-shadow: 0 0 5px #f0f, 0 0 10px #00f;
}

/* Subtle pulse effect for the center container */
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.02); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

#center {
  animation: pulse 4s ease-in-out infinite;
}

.creator a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  letter-spacing: 1px;
}

.creator a:hover {
  transform: scale(1.1);
  color: #0ff;
  text-shadow: 0 0 5px #f0f, 0 0 10px #00f;
}

.twemoji-disclaimer {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}