* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4em;
  height: 100%;
  overflow: hidden;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 100;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 1);
}
#container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@font-face {
  font-family: 'games';
  src: url('../fonts/Comfortaa-BOLD.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'games', sans-serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.75);
  z-index: 10;
  width: auto;
  text-align: left;
  text-shadow: 0 0 2px #ffffff; /* Applied glow effect */
}

.links-container {
  position: absolute;
  top: 85px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
  width: auto;
}

.content-container {
  position: relative;
}

.line {
  width: 2px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  order: 1; /* Position line after the links */
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.top-dot {
  top: -5px;
}

.bottom-dot {
  bottom: -5px;
}

.links {
  list-style: none;
  padding: 0;
  margin: 0 20px 0 0; /* Keep links on left side of line */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
  order: 0; /* Position links before the line */
  text-align: right; /* Right-align text against the line */
}

.links li {
  position: relative;
  margin: 20px 0;
  cursor: pointer;
  font-family: 'games', sans-serif;
  font-size: 19.2px;
}

.links li:hover {
  text-shadow: 0 0 10px #ffffff;
}

.content {
  position: absolute;
  left: 20px;
  width: 300px;
  display: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'games', sans-serif;
  font-size: 19.2px;
  text-align: left;
}

.content.active, .links li.active {
  display: block;
  text-shadow: 0 0 10px #ffffff;
}

.content a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
  #logo {
    font-size: 50px;
    width: 300px;
  }

  .links-container {
    top: 70px;
  }

  .line {
    height: 250px;
  }

  .links {
    height: 200px;
  }

  .links li {
    font-size: 20px;
  }

  .content {
    width: 250px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  #logo {
    font-size: 30px;
    width: 90%;
    text-align: center;
    top: 20px;
  }

  .links-container {
    top: 80px;
    width: 90%;
    justify-content: center;
  }

  .content-container {
    flex-basis: 50%;
  }

  .line {
    height: 200px;
  }

  .links {
    height: 180px;
    margin-right: 15px; /* Keep links on left side */
    padding: 0;
  }

  .links li {
    font-size: 18px;
    margin: 10px 0;
  }

  .content {
    width: 100%;
    left: 15px; /* Adjust back for left-side links */
    font-size: 18px;
    text-align: left;
  }
}
