/* General Styles */
body {
  background: #000000;
  cursor: cell;
  font-family: 'Arial', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

/* Topbar Navigation Styles */
.topbar-navigation {
  background: #1b2f31;
  background: linear-gradient(90deg, #000000 0%, var(--muted-color), 100%);
  overflow: hidden;
  /* Remove border-radius */
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  cursor: cell;
  z-index: 10;
  border-color: var(--main-color);
  border-bottom: 14px solid;
}

.topbar-navigation a {
  cursor: cell;
  color: #1cc49d;
  background-color: #1b2f31;
  float: left;
  display: flex;
  height: 3em;
  width: 8em;
  font-size: 16px;
  /* Remove border-radius */
  font-weight: 400;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0 5px;
  transition-duration: 0.2s;
}

.topbar-navigation a:hover {
  cursor: cell;
  color: #1b2f31;
  background-color: #1cc49d;
}

.topbar-navigation a.current-page {
  cursor: cell;
  color: #1b2f31;
  background-color: #1cc49d;
}

.topbar-navigation a.current-page:hover {
  cursor: cell;
  color: #1b2f31;
  background-color: #1cc49d;
}

/* Button Styles */
button {
  float: none;
  color: #1cc49d;
  background-color: #1b2f31;
  align-items: center;
  justify-content: center;
  margin: 4px 2px;
  font-weight: 400;
  cursor: cell;
  height: 3em;
  width: 8em;
  display: flex;
  border: none;
  border-radius: 20px;
  transition-duration: .25s;
}

button:hover {
  color: #1b2f31;
  background-color: #1cc49d;
  height: 3.1em;
  width: 8.2em;
}

/* Game Frame Styles */
.gameframe {
  height: 112px;
  width: 112px;
  border-radius: 15px;
  cursor: cell;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
}

.gameframe img {
  height: 112px;
  width: 112px;
  border-radius: 15px;
  transition: transform 0.35s;
  loading: lazy;
}

.gameframe img:hover {
  transform: scale(0.925);
}

.gameframetext {
  display: none;
  clear: both;
  text-align: center;
  color: white;
  font-size: 14px;
  width: 100%;
  position: absolute;
  z-index: 2;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}

.gameframetext:hover {
  display: block;
  opacity: 1;
}

/* Color Bar Styles */
#color-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
}

#hue-slider {
  width: 200px;
  margin-left: 10px;
}
