body {
  background: url("tile.png") repeat;
  background-color: #1a1a1a;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

h1 {
  color: #b02bb9;
}

h3 {
  color: #aacdde;
  font-size: 2em;
}

code {
  background-color: #6a138d;
  border-radius: 3px;
  font-family: courier, monospace;
  padding: 0 3px;
  font-size: inherit;
  text-wrap-mode: nowrap;
}

.container {
  width: 80%;
  margin: auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}

.install-options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.install-box {
  background: #333;
  padding: 15px;
  width: 30%;
  border-radius: 5px;
}

a {
  color: #c33ad5;
  text-decoration: none;
  font-weight: bold;
}

.copyText {
  font-size: 0.8vw;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

.new-tag {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ff9900, #ffd700);
  background-size: 400% 400%;
  color: black;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
  margin-left: 5px;
  animation: gold-shimmer 2s infinite linear;
}

/* Gold shimmer effect */
@keyframes gold-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
