:root {
  --primary-color: #161616;
  --text-color: #fff;
  --divider-color: #fff;
}

body {
  margin: 0;
  padding: 0;
  background: var(--primary-color);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-family: 'Comic Sans MS', cursive;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.section {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: center;
}

.divider {
  width: 1px;
  height: 150px;
  background-color: var(--divider-color);
  margin: 0 20px;
}

.options {
  text-align: left;
  display: none;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
}
a, a:visited {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: red; 
}

a.soon:hover {
  color: inherit;
}

a.soon{
  text-decoration: line-through;
  text-decoration-color: red;
}

#ssc-options {
  left: -150px;
}

#hsc-options {
  right: -150px;
}

.options ul {
  list-style-type: none;
  padding: 0;
  font-size: 50px;
}

.options li {
  margin: 10px 0;
  cursor: pointer;
}

.section h2 {
  transition: transform 0.2s ease;
  font-size: 40px;
  margin-right: 20px;
}

.section h2:hover {
  cursor: pointer;
}

.show-from-left {
  display: block;
  opacity: 1;
  transform: translateX(-50px); 
}

.show-from-right {
  display: block;
  opacity: 1;
  transform: translateX(50px);
}

/* Coming SOon */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px #e20f0f;
  }
  50% {
    box-shadow: 0 0 20px #e20f0f, 0 0 30px #e20f0f;
  }
  100% {
    box-shadow: 0 0 5px #e20f0f;
  }
}

#coming-soon {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #e20f0fd8;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1000;
}

#coming-soon.show {
  opacity: 1;
}

#coming-soon.glow {
  animation: glow 1.5s infinite;
}


/* For Mobile device */
@media (max-width: 768px) {
  .options {
    position: static; 
    opacity: 1; 
    transform: none;
    text-align: center; 
  }

  .show-from-left, .show-from-right {
    transform: none;
  }

  #ssc-options, #hsc-options {
    left: 0; 
    right: 0;
  }

  .options ul {
    font-size: 30px; 
  }
}
