body {
    background: linear-gradient(#000000, #a5124c);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

#title {
  font-size: 2.2em;
      margin-bottom: 10px;
      color: #ff88dd;
      font-family: "Georgia", serif;
      text-shadow: 0 0 8px #ff80c0;
    font-size: 41px;
    font-family: Georgia, serif;
}

.bttn {
    width: 200px;
    border: 1px solid #370909;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    background-color: #170509;
    color: white;
    transition: 0.3s ease;
    height: 200px;
     justify-content: center;
  align-items: center;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  gap: 10px;
}

.bttn:hover {
  transform: scale(1.06);
}

  .bttn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
      justify-content: center;
  align-items: center;
text-align: center;
    margin-left: 80px;
  padding-top: 20px;
  }

.bttn2 {
 font-family: monospace;
  font-size: 16px;
  color: white;
  background: #ff69b4;
  padding: 10px 24px;
  border-radius: 6px;
  box-shadow: 0 0 8px var(--button-border-color, #ffb6c1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
}

.bttn2:hover {
  color: white;
  box-shadow: 0 0 16px #ffb6c1;
  transform: scale(1.06);
}

img {
  width: 100px;
  height: 100px;
}

#thetime {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

input {
  background: #bf1c5b;
  color: white;
  width: 400px;
  max-width: 90vw;
  padding: 10px;
  border-radius: 20px;
  outline: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: center;
  box-shadow: 0 0 10px #ffb6c1;
  margin-bottom: 14px;
  transition: 0.3s ease;
  font-size: 16px;
  }

  #loading-screen {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000000, #a5124c);
    font-size: 2.2em;
      margin-bottom: 10px;
      color: #ff88dd;
      font-family: "Georgia", serif;
      text-shadow: 0 0 8px #ff80c0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9998;
    opacity: 1;
    transition: opacity 1s ease;
}

#sidebar {
  position: fixed;
  top: 0; 
  left: 0;
  width: 80px;
  background-color: #1e040f;
  border-radius: 0 24px 24px 0;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.4);
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
}

#sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
  border-radius: inherit;
}

#navigation {
  height: 100%;
  width: 100%;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  position: relative;
  z-index: 10;
}

.icon-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-item {
  display: block;
  color: white;
  font-size: 32px;
  text-align: center;
  text-decoration: none;
  padding: 2.5rem 0;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  cursor: pointer;
}

.icon-item:hover {
  transform: scale(1.1);
}

.star {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  animation: twinkling 5s infinite, moving linear 20s infinite;
}

@keyframes twinkling {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

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

#space {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}

#menu {
  position: fixed;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: system-ui;
  color: white;
}

#menu span {
  margin: 0;
  padding: 0;
}

#gxSearch {
  background-color: #270606;
  border: 3px #681717 solid;
  border-radius: 30px;
  padding: 10px;
  text-align: left;
  color: white;
  font-family: system-ui;
  outline: none;
  transition: all .2s ease-in-out;
  width: 350px;
  font-size: 20px;
  text-align: center;
}