
body, html {
    height: 100%;
    margin: 0;
    padding: 1rem;
    color: white;
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
}

input, button {
    border-radius:30px;
    text-align:center;
    font-size: 1rem;
    padding: 0.5rem;
    margin: 0.5rem 0;
}

#chat-box {
    margin-bottom: 2rem;
    max-height: 50vh;
    overflow-y: auto;
    border: 1px solid #555;
    padding: 1rem;
    background: #111;
    width:90%;
    height:50%;
    
}
.logo {
  font-size: 4em;
  font-weight: bold;
  background: linear-gradient(90deg,
    red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  user-select: none;
  text-align: center;
}


.username {
    font-weight: bold;
    color: white;
}

input[readonly] {
    background-color: #333;
    color: #aaa;
}

#gif-container {
    margin-top: 4rem;
    text-align: center;
}

#gif-container img {
    max-height: 100px;
    cursor: pointer;
}

.shiny-name {
    position: relative;
    font-weight: bold;
    color: inherit; /* original color */
    display: inline-block;
}

.shiny-name::before {
    content: attr(data-text); /* copy text */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shine 3s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
}

@keyframes shine {
    0% {
        background-position: -100% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.rainbow-name {
    font-weight: bold;
    animation: rainbow 5s linear infinite;
    color: red; /* Fallback */
}

@keyframes rainbow {
    0%   { color: red; }
    14%  { color: orange; }
    28%  { color: yellow; }
    42%  { color: green; }
    57%  { color: blue; }
    71%  { color: indigo; }
    85%  { color: violet; }
    100% { color: red; }
}
#viewerContainer {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 128, 0, 0.1); /* subtle background */
    color: green;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-family: sans-serif;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.dot {
    height: 10px;
    width: 10px;
    background-color: green;
    border-radius: 50%;
    margin-right: 6px;
}
ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: #000; /* Pure black background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px; /* Small text */
    letter-spacing: 0.5px;
}

ul.menu li {
    margin: 0;
}

ul.menu li a {
  display: block;
  padding: 12px 18px;
  color: #ccc; /* Light gray text */
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

ul.menu li a:hover {
    background-color: #222; /* Darker on hover */
    color: #fff; /* Brighten text on hover */
}