body {
  background: url('../public/starsbg.gif') repeat;
  animation: slideDown 60s linear infinite;
  color: #20c9c9;
  font-family: 'Courier New', monospace;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes slideDown {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 100%;
  }
}

.container {
  border: 1px solid #1f7070;
  padding: 2rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.85);
  position: relative;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px 12px;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #1f7070;
  animation: container-glow 3s ease-in-out infinite;
}

@keyframes container-glow {
  0% { box-shadow: 0 0 10px rgba(32, 201, 201, 0.2); }
  50% { box-shadow: 0 0 20px rgba(32, 201, 201, 0.4); }
  100% { box-shadow: 0 0 10px rgba(32, 201, 201, 0.2); }
}

.buttons img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  padding: 2px;
  image-rendering: crisp-edges;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.3);
}

.buttons img:hover {
  transform: scale(1.03);
  border-color: #1f7070;
}

.ascii-art {
  text-align: center;
  font-size: 0.7rem;
  white-space: pre;
  margin: 50px 0;
  color: #2eb8b8;
  text-shadow: 0 0 10px rgba(46, 184, 184, 0.3);
}

h2 {
  border-bottom: 1px solid #1f7070;
  padding-bottom: 5px;
  margin-top: 40px;
  color: #2eb8b8;
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #1f7070 0%, transparent 100%);
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.staff-member {
  padding: 8px;
  border: 1px solid #1f7070;
  background: rgba(31, 112, 112, 0.05);
  transition: all 0.3s ease;
}

.staff-member:hover {
  background: rgba(31, 112, 112, 0.15);
  transform: translateX(5px);
}

.owner {
  color: #d54f4f;
  border-color: #d54f4f;
}

.admin {
  color: #2aa5a5;
}

.mod {
  color: #8f8f2a;
}

.helper {
  color: #666;
}

a {
  color: #1f8f8f;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:before {
  content: '»';
  margin-right: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

a:hover:before {
  opacity: 1;
}

a:hover {
  color: #2eb8b8;
}

.links {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #1f7070;
}

p {
  color: #a0a0a0;
  font-size: 0.95em;
  border-left: 3px solid #1f7070;
  padding-left: 15px;
}

.marquee-container {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  margin: 20px 0;
  border-top: 1px solid #1f7070;
  border-bottom: 1px solid #1f7070;
  background: linear-gradient(
    90deg,
    rgba(32, 201, 201, 0.1) 0%,
    rgba(32, 201, 201, 0.3) 50%,
    rgba(32, 201, 201, 0.1) 100%
  );
}

.staff-category-separator {
    border: none;
    border-top: 1px solid #ccc; 
    margin: 20px 0; 
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: #20c9c9;
  text-shadow: 0 0 5px rgba(32, 201, 201, 0.3);
  padding-right: 100%;
  box-sizing: content-box;
}

.glitched {
  position: relative;
  margin-right: 2em;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(calc(-100% - 4em));
  }
}

.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
}

.music-prompt {
  text-align: center;
  font-size: 0.8rem;
  color: #1f7070;
  margin: -30px 0 40px;
  animation: glitch-pulse 2s infinite;
  text-shadow: 0 0 5px rgba(31, 112, 112, 0.3);
}

@keyframes glitch-pulse {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.4;
  }
}

audio {
  display: none;
}
