@font-face {
  font-family: f;
  src: url("/media/games/quiz-games/fonts/Acme-Regular.ttf");
}
@font-face {
  font-family: f1;
  src: url("/media/games/quiz-games/fonts/Baloo-Regular.ttf");
}
* {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

*::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Opera */
}

body {
  padding: 0;
  margin: 0;
}

#full-area {
  width: 100%;
  height: 100vh;
  position: absolute;
  user-select: none;
  overflow: hidden;
}
#full-area #background-opacity {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("/media/games/quiz-games/images/background.png") #cc14ff;
  background-size: cover;
  background-position: bottom center;
}
#full-area #background-anim {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
#full-area #background-anim div {
  background: url("/media/games/quiz-games/images/anim-background.png");
  background-size: contain;
  background-position: bottom center;
  width: 100%;
  height: 9999999999px;
  transform: translate(0px, 0px);
}
#full-area #game-area {
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: f1;
  overflow: hidden;
}
#full-area #game-area #menu {
  position: absolute;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px 0;
  z-index: 9999999;
}
#full-area #game-area #menu #menu-icons {
  display: flex;
  margin-top: 35px;
}
#full-area #game-area #menu #menu-icons div {
  cursor: pointer;
  transition: 0.2s;
  height: 103px;
}
#full-area #game-area #menu #menu-icons div:active {
  transform: scale(0.95);
  opacity: 0.9;
}
#full-area #game-area #menu #menu-icons img {
  height: 83px;
  margin: 15px 15px;
}
#full-area #game-area #background-decor {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#full-area #game-area #background-decor .decor {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
}
#full-area #game-area #background-decor .decor img {
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 100%;
  user-select: none;
  pointer-events: none;
  margin-right: -0.5px;
}
#full-area #game-area #background-decor #up-decor {
  top: 0;
  left: 0;
}
#full-area #game-area #background-decor #bottom-decor {
  bottom: 0;
  left: 0;
}
#full-area #game-area #preAlexa-loader {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #preAlexa-loader div {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #preAlexa-loader div img {
  width: 200px;
  animation: infiniteRotate 2s linear infinite;
  display: inline-block;
}
#full-area #game-area #logo-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #logo-section #logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  margin-top: -10px;
}
#full-area #game-area #logo-section #logo img {
  width: 100%;
  animation: logoAnim 1.5s infinite;
}
#full-area #game-area #home-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: f1;
}
#full-area #game-area #home-section #home-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
}
#full-area #game-area #home-section #home-btns #home-btns-row-1 {
  display: flex;
  justify-content: center;
}
#full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn {
  height: 300px;
  margin: 0 25px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
#full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn:active {
  transform: scale(0.99);
  opacity: 0.9;
}
#full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn img {
  height: 100%;
}
#full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn div {
  height: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  margin-top: -50px;
}
#full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn div img {
  height: 100%;
  margin-top: 10px;
  animation: logoAnim 2s infinite;
}
#full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn p {
  color: white;
  text-transform: uppercase;
  font-size: 38px;
  width: 100%;
  text-align: center;
  transform: translateY(-100%);
  height: 75px;
  margin-top: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 89%;
  margin-left: 5%;
}
#full-area #game-area #home-section #home-btns #home-btns-row-2 {
  display: none;
}
#full-area #game-area #home-section #home-alexa-msg {
  width: 800px;
  height: 96px;
  background: url("/media/games/quiz-games/images/home/home-alexa-container.png");
  background-size: cover;
  position: absolute;
  top: 85%;
  left: 50%;
  margin-left: -400px;
  animation: transY 2.5s infinite ease-out;
}
#full-area #game-area #home-section #home-alexa-msg p {
  color: white;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  width: 100%;
  letter-spacing: 2px;
  text-align: center;
  line-height: 30px;
}
#full-area #game-area #upsell-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #upsell-section #upsell-anim {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #upsell-section #upsell-container {
  width: 934px;
  height: 490px;
  background: url("/media/games/quiz-games/images/upsell.png");
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 10px;
}
#full-area #game-area #upsell-section #upsell-container h1 {
  text-align: center;
  width: 70%;
  left: 15%;
  line-height: 45px;
  height: 96px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-left: -5px;
  position: absolute;
  font-weight: bold;
}
#full-area #game-area #upsell-section #upsell-container h2 {
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}
#full-area #game-area #upsell-section #upsell-container h3 {
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 240px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
}
#full-area #game-area #upsell-section #upsell-container h3 span {
  margin-left: 8px;
  color: lime;
}
#full-area #game-area #upsell-section #upsell-container div {
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 380px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
  text-transform: uppercase;
  width: 450px;
  border-radius: 200px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: 0.1s;
  line-height: 40px;
  padding: 0 10px;
}
#full-area #game-area #upsell-section #upsell-container div:active {
  background: rgba(255, 255, 255, 0.055);
}
#full-area #game-area #categories-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #categories-section #categories-list {
  display: flex;
  justify-content: left;
  margin-top: 150px;
  height: 500px;
  overflow: hidden;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 170px;
  transform: scale(0.9);
  width: 110%;
  margin-left: -5%;
}
#full-area #game-area #categories-section #categories-list .category-option {
  min-width: 450px;
  height: 386px;
  background: url("/media/games/quiz-games/images/categories/cat-container.png");
  background-size: cover;
  margin: 10px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #categories-section #categories-list .category-option p {
  text-align: center;
  font-size: 47px;
  color: white;
  top: 319px;
  position: relative;
  height: 51px;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
}
#full-area #game-area #categories-section #categories-list .category-option div {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0.9);
}
#full-area #game-area #categories-section #categories-list .category-option img {
  height: 74%;
  width: 100%;
  animation: logoAnim 2s infinite;
  position: absolute;
  margin-left: -2px;
  margin-top: -3px;
}
#full-area #game-area #categories-section #categories-list .category-option:active {
  transform: scale(0.95);
  opacity: 0.9;
}
#full-area #game-area #categories-section #arrow-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 99;
  margin-top: -20px;
}
#full-area #game-area #categories-section #arrow-btn:active {
  transform: translateX(-50%) scale(0.98);
  opacity: 0.95;
}
#full-area #game-area #subcategories-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #subcategories-section #selected-category {
  width: 262px;
  height: 230px;
  background: url("/media/games/quiz-games/images/categories/cat-container.png");
  background-size: cover;
  margin-top: 100px;
  left: 50%;
  margin-left: -125px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #subcategories-section #selected-category:active {
  transform: scale(0.97);
  opacity: 0.9;
}
#full-area #game-area #subcategories-section #selected-category div {
  transform: scale(0.95);
}
#full-area #game-area #subcategories-section #selected-category img {
  width: 100%;
  height: auto;
  animation: logoAnim 2s infinite;
}
#full-area #game-area #subcategories-section #selected-category p {
  display: flex;
  justify-content: center;
  width: 100%;
  color: white;
  font-size: 30px;
  height: 47px;
  text-wrap: nowrap;
  align-items: center;
  text-transform: capitalize;
}
#full-area #game-area #subcategories-section #arrow-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#full-area #game-area #subcategories-section #arrow-btn:active {
  transform: translateX(-50%) scale(0.98);
  opacity: 0.95;
}
#full-area #game-area #subcategories-section #list-subcategories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 189.5px;
  overflow: hidden;
  overflow-y: scroll;
  justify-content: center;
  scroll-behavior: smooth;
  transform: scale(0.95);
  margin-top: 20px;
}
#full-area #game-area #subcategories-section #list-subcategories div {
  width: 370px;
  height: 95px;
  background: url("/media/games/quiz-games/images/categories/sub-container.png");
  background-size: cover;
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #subcategories-section #list-subcategories div:active {
  transform: scale(0.98);
  opacity: 0.9;
}
#full-area #game-area #subcategories-section #list-subcategories div p {
  height: 100%;
  width: 91%;
  margin-left: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  color: white;
  font-size: 30px;
  margin-top: -3px;
  text-align: center;
  line-height: 30px;
  padding: 0 3px;
}
#full-area #game-area #custom-quiz-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #custom-quiz-section #custom-back-arrow {
  position: absolute;
  display: flex;
  margin-top: 35px;
  cursor: pointer;
  transition: 0.2s;
  z-index: 9;
}
#full-area #game-area #custom-quiz-section #custom-back-arrow:active {
  transform: scale(0.95);
  opacity: 0.9;
}
#full-area #game-area #custom-quiz-section #custom-back-arrow img {
  height: 83px;
  margin: 15px 15px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container {
  width: 100%;
  height: 100%;
  position: relative;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-screen {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-screen.active {
  display: block;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section #ask-question-container {
  position: relative;
  display: flex;
  left: 50%;
  margin-left: -595px;
  width: 1020px;
  height: 250px;
  text-transform: uppercase;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section #mark {
  position: absolute;
  top: 20px;
  margin-left: 945px;
  width: 30px;
  animation: mark-float 2.2s ease-in-out infinite;
}
@keyframes mark-float {
  0% {
    transform: translateY(3px);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(3px);
  }
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section #start-custom-btn {
  width: 260px;
  height: auto;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic {
  margin-bottom: 20px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic #customTopicInput {
  width: 630px;
  height: 79px;
  font-size: 30px;
  background: url("/media/games/quiz-games/images/input-custom-quiz.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 20px;
  color: white;
  font-family: f1;
  border: none;
  outline: none;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic #customTopicInput:focus {
  outline: none;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic #customTopicInput::placeholder {
  color: #a975bc;
  opacity: 1;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic #customTopicInput::-webkit-input-placeholder {
  color: #a975bc;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic #customTopicInput::-moz-placeholder {
  color: #a975bc;
  opacity: 1;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic #customTopicInput:-ms-input-placeholder {
  color: #a975bc;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section .custom-quiz-input-with-mic #customTopicInput:-moz-placeholder {
  color: #a975bc;
  opacity: 1;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 700px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section .custom-quiz-confirm-text {
  color: white;
  font-size: 45px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section .custom-quiz-confirm-text span {
  color: #38ff12;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section .custom-quiz-button-group {
  display: flex;
  justify-content: center;
  gap: 30px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-loading-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-loading-section #customLoadingText {
  color: white;
  font-size: 35px;
  margin-top: 30px;
  text-transform: uppercase;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-loading-section .custom-quiz-spinner {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(0, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header h2 {
  color: white;
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header .custom-quiz-progress-bar {
  width: 80%;
  max-width: 600px;
  height: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  border-radius: 10px;
  margin: 0 auto 15px;
  overflow: hidden;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header .custom-quiz-progress-bar .custom-quiz-progress-fill {
  height: 100%;
  background: #38ff12;
  transition: width 0.3s ease;
  width: 0%;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header .custom-quiz-question-counter {
  color: white;
  font-size: 30px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section #customQuestionText {
  color: white;
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container .option {
  background: url("/media/games/quiz-games/images/play/normal.png");
  background-size: cover;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 80px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container .option.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container .option.selected {
  background: url("/media/games/quiz-games/images/play/normal.png");
  filter: brightness(1.2);
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container .option.correct {
  background: url("/media/games/quiz-games/images/play/correct.png");
  background-size: cover;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container .option.incorrect {
  background: url("/media/games/quiz-games/images/play/wrong.png");
  background-size: cover;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container .option .option-label {
  color: white;
  font-size: 40px;
  font-weight: bold;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-options-container .option .option-text {
  color: white;
  font-size: 35px;
  flex: 1;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-answer-input-section {
  text-align: center;
  margin-bottom: 20px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-answer-input-section .custom-quiz-or-text {
  display: block;
  color: white;
  font-size: 25px;
  margin-top: 10px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-feedback {
  display: none;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-feedback.show {
  display: block;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-feedback.correct {
  background: rgba(56, 255, 18, 0.2);
  border: 2px solid #38ff12;
  color: #38ff12;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-feedback.incorrect {
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid #ff0000;
  color: #ff0000;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-feedback strong {
  font-size: 35px;
  display: block;
  margin-bottom: 10px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-feedback p {
  font-size: 28px;
  margin: 10px 0;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-question-section .custom-quiz-feedback .feedback-explanation {
  color: white;
  font-size: 25px;
  margin-top: 15px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-controls {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section h2 {
  color: white;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display {
  margin-bottom: 40px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-circle {
  width: 200px;
  height: 200px;
  border: 5px solid white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-circle #customScoreValue {
  color: #38ff12;
  font-size: 60px;
  font-weight: bold;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-circle .custom-quiz-score-total {
  color: white;
  font-size: 40px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-percentage {
  color: white;
  font-size: 40px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details {
  margin-bottom: 30px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details h3 {
  color: white;
  font-size: 35px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList {
  max-height: 300px;
  overflow-y: auto;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item.correct {
  background: rgba(56, 255, 18, 0.2);
  border: 2px solid #38ff12;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item.incorrect {
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid #ff0000;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item .result-icon {
  font-size: 30px;
  font-weight: bold;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item .result-text {
  color: white;
  font-size: 25px;
  flex: 1;
  text-align: left;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn {
  padding: 15px 40px;
  font-size: 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: f1;
  text-transform: uppercase;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn:active {
  transform: scale(0.95);
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-primary {
  background: white;
  color: #130236;
  font-weight: bold;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-primary:hover {
  background: #38ff12;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-secondary {
  background: rgba(0, 255, 255, 0.3);
  color: white;
  border: 2px solid white;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-secondary:hover {
  background: rgba(0, 255, 255, 0.5);
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-mic {
  background: rgba(255, 0, 0, 0.3);
  color: white;
  border: 2px solid #ff0000;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-mic.recording {
  background: #ff0000;
  animation: pulse 1s infinite;
}
#full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-error-message {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 25px;
  z-index: 1000;
  max-width: 80%;
  text-align: center;
}
#full-area #game-area #fact-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99999;
  top: 0;
  left: 0;
}
#full-area #game-area #fact-screen #fact-content {
  width: 1020px;
  height: 250px;
  background-color: #e8adfa;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.303);
  position: relative;
  left: 50%;
  margin-left: -512px;
  margin-top: 230px;
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #fact-screen #fact-content #fact-header {
  position: absolute;
  display: inline-block;
  margin-top: 32px;
  margin-left: -50px;
}
#full-area #game-area #fact-screen #fact-content #fact-header #title-fact {
  display: block;
  height: 60px;
}
#full-area #game-area #fact-screen #fact-content #fact-header #fact-qst-meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40px;
  justify-content: baseline;
  padding-left: 30px;
  text-align: left;
  font-weight: 700;
  pointer-events: none;
}
#full-area #game-area #fact-screen #fact-content #fact-header #fact-qst-meta #fact-data {
  font-size: 32px;
  white-space: nowrap;
  color: white;
}
#full-area #game-area #fact-screen #fact-content p {
  position: relative;
  color: white;
  font-size: 40px;
  text-wrap: wrap;
  text-align: center;
  width: 90%;
  overflow: hidden;
  height: 63%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.103);
  line-height: 100%;
  padding: 0 10px;
  top: 92px;
}
#full-area #game-area #play-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #play-section #choosen-cat {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 {
  width: 262px;
  height: 230px;
  background: url("/media/games/quiz-games/images/categories/cat-container.png");
  background-size: cover;
  margin-top: 0px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.6);
  position: relative;
  transition: 0.2s;
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 div {
  transform: scale(0.95);
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 img {
  width: 100%;
  height: auto;
  animation: logoAnim 2s infinite;
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 p {
  display: flex;
  justify-content: center;
  width: 100%;
  color: white;
  font-size: 30px;
  height: 47px;
  text-wrap: nowrap;
  align-items: center;
  text-transform: capitalize;
}
#full-area #game-area #play-section #quiz-question {
  width: 1020px;
  height: 297px;
  position: relative;
  left: 50%;
  margin-left: -510px;
  margin-top: 200px;
  background: url("/media/games/quiz-games/images/play/question-container.png");
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #play-section #quiz-question #custom-mark {
  position: absolute;
  top: 20px;
  margin-left: 962px;
  width: 30px;
  animation: mark-float 2.2s ease-in-out infinite;
}
#full-area #game-area #play-section #quiz-question #quiz-qst-header {
  position: absolute;
  display: inline-block;
  margin-top: 32px;
  margin-left: -50px;
}
#full-area #game-area #play-section #quiz-question #quiz-qst-header #title-qst {
  display: block;
  height: 60px;
  transform: scaleX(1);
  transform-origin: left center;
}
#full-area #game-area #play-section #quiz-question #quiz-qst-header #quiz-qst-meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40px;
  justify-content: baseline;
  padding-left: 30px;
  text-align: left;
  font-weight: 700;
  pointer-events: none;
}
#full-area #game-area #play-section #quiz-question #quiz-qst-header #quiz-qst-meta #quiz-qst-number {
  font-size: 32px;
  color: #e8adfa;
}
#full-area #game-area #play-section #quiz-question #quiz-qst-header #quiz-qst-meta #quiz-qst-subcategory {
  font-size: 32px;
  white-space: nowrap;
  color: white;
}
#full-area #game-area #play-section #quiz-question p {
  position: relative;
  color: white;
  font-size: 40px;
  text-wrap: wrap;
  text-align: center;
  width: 90%;
  overflow: hidden;
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.103);
  line-height: 100%;
  padding: 0px 20px;
  top: 92px;
}
#full-area #game-area #play-section #quiz-answers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 25px;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer {
  width: 325px;
  height: 83px;
  background: url("/media/games/quiz-games/images/play/normal.png");
  background-size: cover;
  position: relative;
  transition: 0.3s background, 0.1s all;
  margin-bottom: 20px;
  opacity: 0;
  text-transform: capitalize;
  cursor: pointer;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer h1 {
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 25px;
  margin-left: 7PX;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer p {
  position: absolute;
  top: 0;
  left: 35px;
  width: calc(100% - 35px);
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  line-height: 0.8;
  overflow: hidden;
  z-index: 2;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer:active {
  transform: scale(0.98);
  opacity: 0.9;
}
#full-area #game-area #play-section #quiz-answers .correct {
  background: url("/media/games/quiz-games/images/play/correct.png");
  background-size: cover;
}
#full-area #game-area #play-section #quiz-answers .incorrect {
  background: url("/media/games/quiz-games/images/play/wrong.png");
  background-size: cover;
}
#full-area #game-area #game-over-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #game-over-section #game-over-container {
  width: 800px;
  height: 429px;
  background: url("/media/games/quiz-games/images/game-over/container.png");
  background-size: cover;
  top: 0px;
  position: relative;
}
#full-area #game-area #game-over-section #game-over-container h1 {
  font-size: 50px;
  color: #130236;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 140px;
  text-transform: uppercase;
  height: 130px;
  overflow: hidden;
  font-weight: 600;
}
#full-area #game-area #game-over-section #game-over-container #game-over-category {
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 120px;
  height: 45px;
  color: #4b056b;
}
#full-area #game-area #game-over-section #game-over-container #game-over-category p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
}
#full-area #game-area #game-over-section #game-over-container #game-over-category span {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  padding-right: 28px;
  font-size: 47px;
  text-transform: capitalize;
}
#full-area #game-area #game-over-section #game-over-container #game-over-category span img {
  position: absolute;
  top: -6px;
  right: -18px;
  height: 25px;
  animation: logoAnim 2s infinite;
  pointer-events: none;
}
#full-area #game-area #game-over-section #game-over-container #game-over-score {
  display: flex;
  text-transform: capitalize;
  color: white;
  justify-content: center;
  text-wrap: inherit;
  height: 50px;
  position: absolute;
  width: 100%;
  top: 187.5px;
}
#full-area #game-area #game-over-section #game-over-container #game-over-score p {
  height: 100%;
  font-size: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#full-area #game-area #game-over-section #game-over-container #game-over-score span {
  font-weight: bold;
  font-size: 55px;
  margin-left: 10px;
  margin-top: -16px;
}
#full-area #game-area #game-over-section #game-over-btns {
  left: 50%;
  top: 68%;
  transform: translate(-50%, -50%) scale(1);
  position: absolute;
  padding-top: 0px;
  display: flex;
  margin-left: 5px;
  justify-content: center;
  width: 50%;
  border-radius: 50px;
  gap: 45px;
}
#full-area #game-area #game-over-section #game-over-btns img {
  height: 80px;
  cursor: pointer;
  margin-bottom: -20px;
  display: flex;
  animation: scale 1.5s infinite;
}

@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes choosenCatAnim {
  0% {
    transform: translate(-50%, -50%) scale(1.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
  }
}
@keyframes transY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes infiniteRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#custom-quiz-play-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#custom-quiz-play-screen #custom-choosen-cat {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  transform: scale(0);
  opacity: 0;
}
#custom-quiz-play-screen #custom-choosen-cat #custom-selected-category-2 {
  width: 262px;
  height: 230px;
  background: url("/media/games/quiz-games/images/categories/cat-container.png");
  background-size: cover;
  margin-top: 0px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.6);
  position: relative;
  transition: 0.2s;
}
#custom-quiz-play-screen #custom-choosen-cat #custom-selected-category-2 div {
  transform: scale(0.95);
}
#custom-quiz-play-screen #custom-choosen-cat #custom-selected-category-2 img {
  width: 100%;
  height: auto;
  animation: logoAnim 2s infinite;
}
#custom-quiz-play-screen #custom-choosen-cat #custom-selected-category-2 p {
  display: flex;
  justify-content: center;
  width: 100%;
  color: white;
  font-size: 30px;
  height: 47px;
  text-wrap: nowrap;
  align-items: center;
  text-transform: capitalize;
}
#custom-quiz-play-screen #custom-quiz-question {
  width: 1020px;
  height: 250px;
  background-color: #e8adfa;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.303);
  position: relative;
  left: 50%;
  margin-left: -512px;
  margin-top: 200px;
  transform: scale(0);
  opacity: 0;
}
#custom-quiz-play-screen #custom-quiz-question #custom-quiz-qst-header {
  position: absolute;
  display: inline-block;
  margin-top: 32px;
  margin-left: -50px;
}
#custom-quiz-play-screen #custom-quiz-question #custom-quiz-qst-header #custom-title-qst {
  display: block;
  height: 60px;
  transform: scaleX(1);
  transform-origin: left center;
}
#custom-quiz-play-screen #custom-quiz-question #custom-quiz-qst-header #custom-quiz-qst-meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40px;
  justify-content: baseline;
  padding-left: 30px;
  text-align: left;
  font-weight: 700;
  pointer-events: none;
}
#custom-quiz-play-screen #custom-quiz-question #custom-quiz-qst-header #custom-quiz-qst-meta #custom-quiz-qst-number {
  font-size: 32px;
  color: #e8adfa;
}
#custom-quiz-play-screen #custom-quiz-question #custom-quiz-qst-header #custom-quiz-qst-meta #custom-quiz-qst-subcategory {
  font-size: 32px;
  white-space: nowrap;
  color: white;
}
#custom-quiz-play-screen #custom-quiz-question p {
  position: relative;
  color: white;
  font-size: 40px;
  text-wrap: wrap;
  text-align: center;
  width: 90%;
  overflow: auto;
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.103);
  line-height: 100%;
  padding: 0px 20px;
  top: 102px;
}
#custom-quiz-play-screen #custom-quiz-answers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 25px;
  transition: 0.3s background, 0.1s all;
}
#custom-quiz-play-screen #custom-quiz-answers .quiz-answer {
  width: 325px;
  height: 83px;
  background: url("/media/games/quiz-games/images/play/normal.png");
  background-size: cover;
  position: relative;
  transition: 0.3s background, 0.1s all;
  margin-bottom: 20px;
  opacity: 0;
  text-transform: capitalize;
  cursor: pointer;
}
#custom-quiz-play-screen #custom-quiz-answers .quiz-answer h1 {
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 25px;
  margin-left: 7PX;
}
#custom-quiz-play-screen #custom-quiz-answers .quiz-answer p {
  color: white;
  font-size: 34px;
  height: 96.5%;
  width: 88%;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: -91px;
  margin-left: 35px;
  line-height: 0.8;
}
#custom-quiz-play-screen #custom-quiz-answers .quiz-answer:active {
  transform: scale(0.98);
  opacity: 0.9;
}
#custom-quiz-play-screen #custom-quiz-answers .correct {
  background: url("/media/games/quiz-games/images/play/correct.png");
  background-size: cover;
}
#custom-quiz-play-screen #custom-quiz-answers .incorrect {
  background: url("/media/games/quiz-games/images/play/wrong.png");
  background-size: cover;
}

@media (max-width: 600px) {
  #full-area #game-area #menu #menu-icons {
    margin-top: 50px;
  }
  #full-area #game-area #background-decor {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
  #full-area #game-area #background-decor .decor {
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    will-change: transform;
  }
  #full-area #game-area #background-decor .decor img {
    display: block;
    width: 180%;
    height: auto;
    flex: 0 0 100%;
    user-select: none;
    pointer-events: none;
  }
  #full-area #game-area #background-decor #up-decor {
    top: 0;
    left: 0;
  }
  #full-area #game-area #background-decor #bottom-decor {
    bottom: 0;
    left: 0;
  }
  #full-area #game-area #logo-section #logo {
    width: 650px;
  }
  #full-area #game-area #home-section #home-btns {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 20px 0;
  }
  #full-area #game-area #home-section #home-btns #home-btns-row-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  #full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn {
    margin: 0;
    width: 95%;
    max-width: 340px;
  }
  #full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  #full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn p {
    font-size: 24px;
    height: 50px;
    margin-top: -15px;
    line-height: 1.2;
  }
  #full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn div {
    height: 45%;
    margin-top: -45px;
  }
  #full-area #game-area #home-section #home-btns #home-btns-row-1 #choose-quiz-btn div img {
    height: 100%;
    width: auto;
  }
  #full-area #game-area #categories-section #categories-list {
    margin-top: 370px;
    height: 440px;
    display: flex;
    transform: scale(1.2);
    margin-left: 90px;
    padding-right: 250px;
  }
  #full-area #game-area #categories-section #arrow-btn {
    display: none;
    z-index: 20;
  }
  #full-area #game-area #subcategories-section #selected-category {
    margin-top: 200px;
  }
  #full-area #game-area #subcategories-section #list-subcategories {
    margin-top: 50px;
    height: 470px;
  }
  #full-area #game-area #fact-screen #fact-content {
    width: 710px;
    margin-left: -335px;
    margin-top: 420px;
  }
  #full-area #game-area #play-section #choosen-cat {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    transform: scale(0);
    opacity: 0;
  }
  #full-area #game-area #play-section #choosen-cat #selected-category-2 {
    width: 262px;
    height: 230px;
    background: url("/media/games/quiz-games/images/categories/cat-container.png");
    background-size: cover;
    margin-top: 0px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.6);
    position: relative;
    transition: 0.2s;
  }
  #full-area #game-area #play-section #choosen-cat #selected-category-2 div {
    transform: scale(0.95);
  }
  #full-area #game-area #play-section #choosen-cat #selected-category-2 img {
    width: 100%;
    height: auto;
    animation: logoAnim 2s infinite;
  }
  #full-area #game-area #play-section #choosen-cat #selected-category-2 p {
    display: flex;
    justify-content: center;
    width: 100%;
    color: white;
    font-size: 30px;
    margin-top: 3px;
    height: 47px;
    text-wrap: nowrap;
    align-items: center;
    text-transform: capitalize;
  }
  #full-area #game-area #play-section #quiz-question {
    width: 740px;
    height: 216px;
    margin-left: -345px;
    margin-top: 220px;
  }
  #full-area #game-area #play-section #quiz-question #custom-mark {
    top: 12px;
    margin-left: 698px;
    width: 25px;
  }
  #full-area #game-area #play-section #quiz-question #quiz-qst-header #title-qst {
    height: 60px;
  }
  #full-area #game-area #play-section #quiz-question #quiz-qst-header #quiz-qst-meta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px;
    justify-content: baseline;
    padding-left: 30px;
    text-align: left;
    font-weight: 700;
    pointer-events: none;
  }
  #full-area #game-area #play-section #quiz-question #quiz-qst-header #quiz-qst-meta #quiz-qst-number {
    font-size: 32px;
    color: #e8adfa;
  }
  #full-area #game-area #play-section #quiz-question #quiz-qst-header #quiz-qst-meta #quiz-qst-subcategory {
    font-size: 32px;
    white-space: nowrap;
    color: white;
  }
  #full-area #game-area #play-section #quiz-question p {
    width: 99.5%;
    height: 120px;
    margin-left: 0%;
  }
  #full-area #game-area #play-section #quiz-answers {
    margin-top: 65px;
  }
  #full-area #game-area #play-section #quiz-answers .quiz-answer {
    width: 525px;
    height: 136px;
  }
  #full-area #game-area #play-section #quiz-answers .quiz-answer h1 {
    font-size: 40px;
    margin-left: 10px;
    margin-top: -3px;
  }
  #full-area #game-area #play-section #quiz-answers .quiz-answer p {
    font-size: 40px;
    margin-top: -142px;
    margin-left: 52px;
    padding: 10px 10px;
  }
  #full-area #game-area #game-over-section #game-over-container {
    width: 780px;
    height: 418px;
  }
  #full-area #game-area #game-over-section #game-over-btns {
    top: 61%;
  }
  #full-area #game-area #custom-quiz-section #custom-back-arrow {
    margin-top: 95px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section #ask-question-container {
    margin-left: -625px;
    width: 750px;
    height: auto;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section #mark {
    top: 12px;
    margin-left: 665px;
    width: 25px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-input-section #start-custom-btn {
    width: 340px;
    height: auto;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 700px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section .custom-quiz-confirm-text {
    color: white;
    font-size: 45px;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section .custom-quiz-confirm-text span {
    color: #38ff12;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-confirmation-section .custom-quiz-button-group {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-loading-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-loading-section #customLoadingText {
    color: white;
    font-size: 35px;
    margin-top: 30px;
    text-transform: uppercase;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-loading-section .custom-quiz-spinner {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(0, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header h2 {
    color: white;
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header .custom-quiz-progress-bar {
    width: 80%;
    max-width: 600px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 10px;
    margin: 0 auto 15px;
    overflow: hidden;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header .custom-quiz-progress-bar .custom-quiz-progress-fill {
    height: 100%;
    background: #38ff12;
    transition: width 0.3s ease;
    width: 0%;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-header .custom-quiz-question-counter {
    color: white;
    font-size: 30px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-question {
    width: 710px;
    margin-left: -335px;
    margin-top: 220px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-question #custom-quiz-qst-header #custom-title-qst {
    height: 60px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-question #custom-quiz-qst-header #custom-quiz-qst-meta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px;
    justify-content: baseline;
    padding-left: 30px;
    text-align: left;
    font-weight: 700;
    pointer-events: none;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-question #custom-quiz-qst-header #custom-quiz-qst-meta #custom-quiz-qst-number {
    font-size: 32px;
    color: #e8adfa;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-question #custom-quiz-qst-header #custom-quiz-qst-meta #custom-quiz-qst-subcategory {
    font-size: 32px;
    white-space: nowrap;
    color: white;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-question p {
    width: 100%;
    margin-left: 0%;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-answers {
    margin-top: 65px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-answers .quiz-answer {
    width: 525px;
    height: 136px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-answers .quiz-answer h1 {
    font-size: 40px;
    margin-left: 10px;
    margin-top: -3px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container #custom-quiz-answers .quiz-answer p {
    font-size: 40px;
    margin-top: -142px;
    margin-left: 52px;
    padding: 10px 10px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-controls {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section h2 {
    color: white;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display {
    margin-bottom: 40px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-circle {
    width: 200px;
    height: 200px;
    border: 5px solid white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-circle #customScoreValue {
    color: #38ff12;
    font-size: 60px;
    font-weight: bold;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-circle .custom-quiz-score-total {
    color: white;
    font-size: 40px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-score-display .custom-quiz-score-percentage {
    color: white;
    font-size: 40px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details {
    margin-bottom: 30px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details h3 {
    color: white;
    font-size: 35px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList {
    max-height: 300px;
    overflow-y: auto;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item.correct {
    background: rgba(56, 255, 18, 0.2);
    border: 2px solid #38ff12;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item.incorrect {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item .result-icon {
    font-size: 30px;
    font-weight: bold;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-results-section .custom-quiz-results-details #customResultsList .result-item .result-text {
    color: white;
    font-size: 25px;
    flex: 1;
    text-align: left;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn {
    padding: 15px 40px;
    font-size: 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: f1;
    text-transform: uppercase;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn:active {
    transform: scale(0.95);
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-primary {
    background: white;
    color: #130236;
    font-weight: bold;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-primary:hover {
    background: #38ff12;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-secondary {
    background: rgba(0, 255, 255, 0.3);
    color: white;
    border: 2px solid white;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-secondary:hover {
    background: rgba(0, 255, 255, 0.5);
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-mic {
    background: rgba(255, 0, 0, 0.3);
    color: white;
    border: 2px solid #ff0000;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-btn.custom-quiz-btn-mic.recording {
    background: #ff0000;
    animation: pulse 1s infinite;
  }
  #full-area #game-area #custom-quiz-section #custom-quiz-container .custom-quiz-error-message {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 25px;
    z-index: 1000;
    max-width: 80%;
    text-align: center;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/*# sourceMappingURL=style.css.map */
