@font-face {
  font-family: f;
  src: url("/media/games/beat-the-buzzer/fonts/LEMONMILK-Regular.otf");
}
#full-area {
  width: 100%;
  height: 100vh;
  background: #000;
  position: absolute;
  overflow: hidden;
  user-select: none;
  font-family: f;
}
#full-area ::-webkit-scrollbar {
  width: 10px;
  background: transparent;
  height: 7px;
}
#full-area ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.327);
  height: 7px;
  border-radius: 100px;
}
#full-area ::-webkit-scrollbar-thumb {
  background: #8ec3de;
  border-radius: 100px;
}
#full-area .screamAnim {
  animation: screamAnim 0.2s infinite;
}
#full-area #game-area {
  position: absolute;
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#full-area #game-area #content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  padding: 20px;
  z-index: 9999;
  background: url("/media/games/beat-the-buzzer/images/btb-background-v2.jpg") center/cover no-repeat;
}
@keyframes scroll-bg {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-2000px);
  }
}
#full-area #game-area #content #home-section {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999999;
  left: 0;
}
#full-area #game-area #content #home-section #home-right {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 77%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
}
#full-area #game-area #content #home-section #home-right #logo {
  height: 300px;
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #home-section #home-right #home-btns {
  width: 100%;
  display: none;
  justify-content: space-around;
  margin-top: 80px;
}
#full-area #game-area #content #home-section #home-right #home-btns img {
  width: 350px;
  cursor: pointer;
}
#full-area #game-area #content #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999999;
  background-position: bottom center;
}
#full-area #game-area #content #end-section .content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #content #end-section .content #end-container,
#full-area #game-area #content #end-section .content #end-btns img {
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
#full-area #game-area #content #end-section .content #end-container {
  margin-top: -200px;
}
#full-area #game-area #content #end-section .content #end-btns {
  position: absolute;
  left: 50%;
  top: 70.5%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  width: 55%;
  gap: 65px;
}
#full-area #game-area #content #end-section .content #end-btns img {
  height: 120px;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: -20px;
  display: flex;
  animation: floatY 3s ease-in-out infinite;
  transform-origin: center;
}
#full-area #game-area #content #end-section .content #end-btns img:active {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
#full-area #game-area #content #end-section .content #end-container.visible,
#full-area #game-area #content #end-section .content #end-btns img.visible {
  opacity: 1;
  transform: scale(1);
}
#full-area #game-area #content #end-section .content .sc,
#full-area #game-area #content #end-section .content #end-btns img,
#full-area #game-area #content #end-section .content #end-container {
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #content #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 0;
  background-position: bottom center;
}
#full-area #game-area #content #play-section .content {
  position: relative;
  height: 100%;
  width: 100%;
}
#full-area #game-area #content #play-section .content #questions #question, #full-area #game-area #content #play-section .content #questions #a1, #full-area #game-area #content #play-section .content #questions #a2 {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#full-area #game-area #content #play-section .content #questions #steps {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}
#full-area #game-area #content #play-section .content #questions #question-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#full-area #game-area #content #play-section .content #questions #question-box img {
  height: 300px;
}
#full-area #game-area #content #play-section .content #questions #question-box p {
  position: absolute;
  color: white;
  text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.6);
  width: 720px;
  height: 300px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 35px;
  opacity: 0;
  transition: 0.5s ease-out;
}
#full-area #game-area #content #play-section .content #questions #answers {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  width: 100%;
  gap: 120px;
  opacity: 0.4;
  pointer-events: none;
}
#full-area #game-area #content #play-section .content #questions #answers img {
  height: 130px;
  cursor: pointer;
  animation: floatY 3s ease-in-out infinite;
  transform-origin: center;
}
#full-area #game-area #content #play-section .content #dailyCategory {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/media/games/beat-the-buzzer/images/btb-background-v2.jpg") center/cover no-repeat;
}
#full-area #game-area #content #play-section .content #dailyCategory .content {
  width: 600px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.527);
  border: 4px solid #1a1a7e;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
}
#full-area #game-area #content #play-section .content #dailyCategory .content img {
  width: 270px;
  height: auto;
}
#full-area #game-area #content #play-section .content #dailyCategory .content h4 {
  font-size: 55px;
}
#full-area #game-area #content #play-section .content #information {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#full-area #game-area #content #play-section .content #information.visible {
  display: flex;
}
#full-area #game-area #content #play-section .content #information.correct {
  background-image: url("/media/games/beat-the-buzzer/images/correct-fact-backer.jpg");
}
#full-area #game-area #content #play-section .content #information.incorrect {
  background-image: url("/media/games/beat-the-buzzer/images/incorrect-fact-backer.jpg");
}
#full-area #game-area #content #play-section .content #information.visible.correct::before, #full-area #game-area #content #play-section .content #information.visible.incorrect::before, #full-area #game-area #content #play-section .content #information.visible.correct::after, #full-area #game-area #content #play-section .content #information.visible.incorrect::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
  background: transparent;
  mask: radial-gradient(circle at var(--mask-position), black 50%, rgba(0, 0, 0, 0) 51%);
  background-image: conic-gradient(from var(--start-angle) at center, var(--ray-color) 0 10deg, transparent 10deg 20deg, var(--ray-color) 20deg 30deg, transparent 30deg 40deg, var(--ray-color) 40deg 50deg, transparent 50deg 360deg);
  animation: rays 1.2s ease-out forwards;
}
#full-area #game-area #content #play-section .content #information.visible.correct::before, #full-area #game-area #content #play-section .content #information.visible.incorrect::before {
  --mask-position: top left;
  --start-angle: 225deg;
  --ray-color: rgba(0, 255, 0, 0.6);
  top: 0;
  left: 0;
}
#full-area #game-area #content #play-section .content #information.visible.incorrect::before {
  --ray-color: rgba(255, 0, 0, 0.6);
}
#full-area #game-area #content #play-section .content #information.visible.correct::after, #full-area #game-area #content #play-section .content #information.visible.incorrect::after {
  --mask-position: bottom right;
  --start-angle: 45deg;
  --ray-color: rgba(0, 255, 0, 0.6);
  bottom: 0;
  right: 0;
}
#full-area #game-area #content #play-section .content #information.visible.incorrect::after {
  --ray-color: rgba(255, 0, 0, 0.6);
}
#full-area #game-area #content #play-section .content #information .content {
  position: relative;
  width: 800px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.53);
  border: 4px solid transparent;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
  --glow-color: rgba(255, 255, 255, 0.6);
  animation: border-glow 1.2s ease-out forwards;
}
#full-area #game-area #content #play-section .content #information .content p {
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem;
}
#full-area #game-area #content #play-section .content #information.correct .content {
  border-color: rgba(0, 255, 0, 0.8);
  --glow-color: rgba(0, 255, 0, 0.6);
}
#full-area #game-area #content #play-section .content #information.incorrect .content {
  border-color: rgba(255, 0, 0, 0.8);
  --glow-color: rgba(255, 0, 0, 0.6);
}
@keyframes rays {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes border-glow {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 -8px 20px var(--glow-color), 8px 0 20px var(--glow-color), 0 8px 20px var(--glow-color), -8px 0 20px var(--glow-color);
  }
  100% {
    box-shadow: none;
  }
}
#full-area #game-area #content #play-section .content #categories {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#full-area #game-area #content #play-section .content #categories .categories-title {
  text-align: center;
  font-size: 45px;
  margin: 15px 0 25px;
}
#full-area #game-area #content #play-section .content #categories #categories-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  width: 100%;
  max-width: 960px;
  cursor: pointer;
}
#full-area #game-area #content #play-section .content #categories #categories-list .category-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 30px;
  background-color: rgba(0, 0, 0, 0.377);
}
#full-area #game-area #content #play-section .content #categories #categories-list .category-item img {
  display: block;
  width: 100%;
  margin: -15px auto 25px;
  height: auto;
}
#full-area #game-area #content #play-section .content #categories #categories-list .category-item p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: rgba(0, 0, 0, 0.384);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 2px 2px 15px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 25px;
}
#full-area #game-area #content #play-section .content #subcategories {
  margin-top: 45px;
  text-transform: uppercase;
}
#full-area #game-area #content #play-section .content #subcategories .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #content #play-section .content #subcategories .content h4 {
  font-size: 45px;
  margin-bottom: 35px;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList {
  width: 90%;
  height: 470px;
  padding: 0px 15px;
  overflow-y: auto;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item {
  position: relative;
  padding: 0 45px;
  height: 80px;
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 15px;
  border-radius: 18px;
  cursor: pointer;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-name {
  z-index: 1;
  font-size: 30px;
  color: #525252;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dots {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dot.dot-pending {
  background-color: #888;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dot.dot-correct {
  background-color: green;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dot.buzzer {
  background-color: #888;
  display: flex;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dot.buzzer img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.end {
  animation: end 1s ease-out;
  animation-fill-mode: forwards;
}

@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes seqAnim {
  0% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
  50% {
    transform: scale(0.96) rotate(-5deg);
    transform-origin: bottom right;
  }
  100% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 600px) {
  #full-area #game-area #content #home-section #home-right #logo {
    margin-top: 110px;
  }
  #full-area #game-area #content #home-section #home-right #home-btns {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
  }
  #full-area #game-area #content #home-section #home-right #home-btns img {
    width: 450px;
    margin-top: 30px;
    cursor: pointer;
  }
  #full-area #game-area #content #end-section .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #full-area #game-area #content #end-section .content #end-container,
#full-area #game-area #content #end-section .content #end-btns img {
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  #full-area #game-area #content #end-section .content #end-btns img {
    animation: floatY 3s ease-in-out infinite;
    transform-origin: center;
  }
  #full-area #game-area #content #end-section .content #end-container.visible,
#full-area #game-area #content #end-section .content #end-btns img.visible {
    opacity: 1;
    transform: scale(1);
  }
  #full-area #game-area #content #end-section .content #end-container {
    height: 280px;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    margin-top: -505px;
  }
  #full-area #game-area #content #end-section .content .sc,
#full-area #game-area #content #end-section .content #end-btns img,
#full-area #game-area #content #end-section .content #end-container {
    transform: scale(0);
    opacity: 0;
  }
  #full-area #game-area #content #end-section .content #end-btns {
    left: 50%;
    top: 63.5%;
    transform: translate(-50%, -50%);
    position: absolute;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 55%;
  }
  #full-area #game-area #content #end-section .content #end-btns img {
    width: 450px;
    height: auto;
    margin-top: 0;
  }
  #full-area #game-area #content #play-section .content #questions #steps {
    margin-top: 90px;
  }
  #full-area #game-area #content #play-section .content #questions #question-box {
    margin-top: 90px;
  }
  #full-area #game-area #content #play-section .content #questions #question-box img {
    height: 600px;
    width: 85%;
  }
  #full-area #game-area #content #play-section .content #questions #question-box p {
    padding: 50px;
  }
  #full-area #game-area #content #play-section .content #questions #answers {
    gap: 15px;
  }
  #full-area #game-area #content #play-section .content #questions #answers img {
    height: 130px;
    margin-top: 25px;
  }
  #full-area #game-area #content #play-section .content #dailyCategory {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/media/games/beat-the-buzzer/images/btb-background-v2.jpg") center/cover no-repeat;
  }
  #full-area #game-area #content #play-section .content #dailyCategory .content {
    width: 600px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.527);
    border: 4px solid #1a1a7e;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
  }
  #full-area #game-area #content #play-section .content #dailyCategory .content img {
    width: 270px;
    height: auto;
  }
  #full-area #game-area #content #play-section .content #dailyCategory .content h4 {
    font-size: 55px;
  }
  #full-area #game-area #content #play-section .content #information .content {
    width: 85%;
    height: 600px;
  }
  #full-area #game-area #content #play-section .content #information .content p {
    font-size: 30px;
  }
  #full-area #game-area #content #play-section .content #categories .categories-title {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  #full-area #game-area #content #play-section .content #categories #categories-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
  #full-area #game-area #content #play-section .content #subcategories {
    margin-top: 45px;
  }
  #full-area #game-area #content #play-section .content #subcategories .content h4 {
    font-size: 45px;
    margin-bottom: 35px;
  }
  #full-area #game-area #content #play-section .content #subcategories .content #subList {
    height: 950px;
    padding: 15px;
  }
  #full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item {
    padding: 0;
    height: 150px;
    flex-direction: column;
    margin-bottom: 15px;
    cursor: pointer;
  }
  #full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-name {
    margin-top: 25px;
  }
  #full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dots {
    margin-top: 5px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  #full-area #game-area #content #play-section .content #subcategories .content #subList .subcat-item .subcat-dot {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 5px;
  }
}
@media (width: 960px) and (height: 480px) {
  #full-area #game-area {
    width: 960px;
    height: 480px;
  }
  #full-area #game-area #content #home-section #home-right {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 77%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
  }
  #full-area #game-area #content #home-section #home-right #logo {
    height: 200px;
  }
  #full-area #game-area #content #home-section #home-right #home-btns {
    margin-top: 50px;
  }
  #full-area #game-area #content #home-section #home-right #home-btns img {
    width: 250px;
  }
  #full-area #game-area #content #end-section .content {
    transform: scale(0.7);
  }
  #full-area #game-area #content #end-section .content #end-container {
    margin-top: -150px;
  }
  #full-area #game-area #content #end-section .content #end-btns {
    top: 94.5%;
  }
  #full-area #game-area #content #play-section .content {
    margin-top: -100px;
  }
  #full-area #game-area #content #play-section .content #questions {
    transform: scale(0.65);
  }
  #full-area #game-area #content #play-section .content #questions #answers {
    margin-top: 25px;
  }
  #full-area #game-area #content #play-section .content #questions #answers img {
    height: 100px;
  }
  #full-area #game-area #content #play-section .content #dailyCategory {
    top: 30%;
  }
  #full-area #game-area #content #play-section .content #dailyCategory .content {
    width: 400px;
    height: 280px;
    margin-top: 0px;
  }
  #full-area #game-area #content #play-section .content #dailyCategory .content img {
    width: 220px;
    height: auto;
  }
  #full-area #game-area #content #play-section .content #dailyCategory .content h4 {
    margin-top: -30px;
    font-size: 42px;
  }
  #full-area #game-area #content #play-section .content #information {
    margin-top: 100px;
    transform: scale(1.25);
  }
  #full-area #game-area #content #play-section .content #information .content {
    margin-top: 2px;
    position: relative;
    width: 600px;
    height: 250px;
  }
  #full-area #game-area #content #play-section .content #information .content p {
    font-size: 1rem;
  }
  #full-area #game-area #content #play-section .content #categories .categories-title {
    text-align: center;
    font-size: 45px;
    margin: 15px 0 25px;
  }
  #full-area #game-area #content #play-section .content #categories #categories-list {
    transform: scale(0.65);
    margin-top: -60px;
  }
  #full-area #game-area #content #play-section .content #subcategories {
    transform: scale(0.7);
  }
  #full-area #game-area #content #play-section .content #subcategories .content #subList {
    height: 410px;
  }
}
@keyframes btnAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
/*# sourceMappingURL=index.css.map */

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