@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap');




body {
  background-color: #1e1e2f;
  background: #1e1e2f;
  font-family: system-ui, sans-serif;
  min-height: 100dvh;
  margin: 0;
 
}

#mainmenu{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 65px;
  background: #1e1e2f;
  
  
}
img {
  margin: 2px;
  margin-top: 15px;
  text-align: center;
  align-items: center;
  width: 580px;
  height: 150px;
}


h2 {
font-weight: bold;
text-align: center;
font-size: 30px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.btn-section{
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-top: 15px;
/* display: none; */
 }


#shop {
    position: relative;
}

.btn {
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #40B3A2;
  min-width: 150px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  color: black;
  font-weight: 900;
  font-size: 20px;
  margin-top: 20px;
}

button.btn:hover {
  background: white;
  cursor: pointer;
}

button#shop:hover {
  background: #060609;
  color: white;
  cursor: not-allowed;
}

#shop:hover::after {
  content: "Coming Soon!";
  position: absolute;
  bottom: -40px; 
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
}


.popup {
  display: none; 
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);   
  
}
.popup-content {
  background: rgb(129, 130, 183);
  color: #000;
  margin: 230px auto;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}
.close-btn {
  float: right;
  cursor: pointer;
  font-size: 18px;
  }
.popup button {
  transition: 0.3s;
  border-radius: 12px;
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 180px
  }

.popup button:hover {
  color: rgb(96, 94, 185);
  background-color: #1e1e2f;
  transition: 0.3s;
  }


#game-info{
  display: flex;
  justify-content: space-between;
  
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

#quiz-section {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* centering bluh */
  background: #1e1e2f;
}
#quiz-container {
  background: #2c2c3e;
  padding: 20px 30px;
  border-radius: 10px;
  width: 350px;
  color: #fff;
  font-family: Arial, sans-serif;
}
#quiz-container h2 {
  margin-bottom: 24px;
}
.option {
  margin: 10px 0;
  padding: 8px;
  border: 1px solid #444;
  border-radius: 5px;
  transition: background 0.3s;
}
.option:hover {
  background: #3a3a50;
}


button#nextBtn {
  display: block;
  margin-left: auto;
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #40B3A2;
  color: black;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  
}
button#nextBtn:hover {
  background: white;
}

#quiz-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(129, 130, 183);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#quiz-menu button {
  margin: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.hidden { display: none; }
#quiz-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(129, 130, 183);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  z-index: 9999;
}

.option.correct {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}
.option.wrong {
  background: #c62828;
  border-color: #c62828;
  color: #fff;
}
.option.selected {
  outline: 2px solid #40B3A2;
}


.correct {
  background-color: #4CAF50;
  color: white;
  border: 2px solid #2e7d32;
}


.wrong {
  background-color: #f44336; 
  color: white;
  border: 2px solid #b71c1c;
}



.end-menu {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.end-menu button {
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
}


#quiz-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(129, 130, 183);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  z-index: 9999;
  display: block; 
}
.hidden {
  display: none !important;
}