@font-face {
  font-family: f;
  src: url("/media/games/mouse-trap/fonts/LilitaOne-Regular.ttf");
}
#full-area {
  width: 100%;
  height: 100vh;
  background: #000;
  position: absolute;
  overflow: hidden;
  user-select: none;
}
#full-area #game-area {
  position: absolute;
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("/media/games/mouse-trap/images/navbar/backer.jpg");
}
#full-area #game-area #skip-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000ad;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid white;
  cursor: pointer;
  z-index: 9999999999999999;
  transition: 0.2s;
}
#full-area #game-area #skip-button:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}
#full-area #game-area #skip-button p {
  color: white;
  font-size: 35px;
  letter-spacing: 2px;
  margin: 0;
  font-family: f;
  text-transform: uppercase;
}
#full-area #game-area #content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  padding: 20px;
  z-index: 999999999;
  background: url("/media/games/mouse-trap/background.png");
  background-size: cover;
  background-position: center center;
}
#full-area #game-area #content #bg-effect {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#full-area #game-area #content .btnn {
  width: 300px;
  background: #000000bd;
  cursor: pointer;
  color: white;
  font-size: 37px;
  border-radius: 20px;
  border: 2px solid white;
  padding: 12px 0;
  outline: none;
}
#full-area #game-area #content #home-section {
  position: absolute;
  width: 100%;
  height: 100%;
}
#full-area #game-area #content #home-section #sprite {
  width: 225px;
  height: 225px;
  background-image: url("/media/games/mouse-trap/images/spritesheet.png");
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  transform: scale(2);
  top: 45%;
  left: 15%;
}
#full-area #game-area #content #home-section #home-right {
  position: absolute;
  left: 0%;
  width: 100%;
}
#full-area #game-area #content #home-section #logo {
  height: 590px;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  margin-top: 0px;
  animation: logoAnim 1.3s infinite;
  position: absolute;
  left: 28%;
  top: 30px;
  transform: translateX(-50%);
}
#full-area #game-area #content #home-section #home-btns {
  width: 70%;
  margin-left: 15%;
  justify-content: space-around;
  display: flex;
  margin-top: 0px;
}
#full-area #game-area #content #home-section #home-btns img {
  width: 300px;
  cursor: pointer;
}
#full-area #game-area #content #trap-section {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000027;
  left: 0;
  top: 0;
}
#full-area #game-area #content #trap-section div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  width: 95%;
  max-width: 1000px;
}
#full-area #game-area #content #trap-section div img {
  width: 100%;
  animation: scale 1.3s infinite;
}
#full-area #game-area #content #mode-select-section {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 50;
}
#full-area #game-area #content #mode-select-section .mode-select-content {
  background: rgba(28, 12, 0, 0.88);
  border: 4px solid #ffe27a;
  border-radius: 30px;
  padding: 40px 60px;
  max-width: 700px;
  color: #fff;
  font-family: f;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
#full-area #game-area #content #mode-select-section .mode-select-content h2 {
  font-size: 70px;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
#full-area #game-area #content #mode-select-section .mode-select-content p {
  font-size: 36px;
  margin-bottom: 30px;
}
#full-area #game-area #content #mode-select-section .mode-select-content .mode-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
#full-area #game-area #content #mode-select-section .mode-select-content .mode-btn {
  min-width: 220px;
  padding: 15px 30px;
  font-size: 40px;
  font-family: f;
  border-radius: 20px;
  border: 3px solid #fff;
  background: #ff7b00;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
}
#full-area #game-area #content #mode-select-section .mode-select-content .mode-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
#full-area #game-area #content #mode-select-section .mode-select-content #mode-select-message {
  font-size: 32px;
  color: #ffe27a;
  min-height: 48px;
  margin-bottom: 0;
}
#full-area #game-area #content #alert-section {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000027;
  left: 0;
  top: 0;
}
#full-area #game-area #content #alert-section #alert {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 10;
}
#full-area #game-area #content #alert-section #alert p {
  text-align: center;
  font-size: 70px;
  font-family: f;
  letter-spacing: 2px;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  animation: scale 2.5s infinite;
}
#full-area #game-area #content #alert-section #alert-falling-cheese {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  min-width: 100%;
  justify-content: space-around;
  height: auto;
  transform: translateY(-100%);
}
#full-area #game-area #content #alert-section #alert-falling-cheese img {
  height: 120px;
  position: relative;
  margin: 0 20px;
}
#full-area #game-area #content #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
#full-area #game-area #content #end-section .game-over-modal {
  margin-top: 100px;
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: url("/media/games/mouse-trap/images/game-over-container.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#full-area #game-area #content #end-section .game-over-content {
  padding: 40px 50px;
  margin-top: 55px;
  width: 750px;
  height: 500px;
  text-align: center;
  animation: modalFadeIn 0.5s ease-out;
}
#full-area #game-area #content #end-section .game-over-content .game-over-message {
  font-family: f;
  font-size: 32px;
  color: #fff;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
#full-area #game-area #content #end-section .game-over-content .game-over-guesses {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#full-area #game-area #content #end-section .game-over-content .game-over-guesses .guesses-number {
  font-family: f;
  font-size: 80px;
  color: #ff0000;
  line-height: 1;
  font-weight: bold;
}
#full-area #game-area #content #end-section .game-over-content .game-over-guesses .guesses-label {
  font-family: f;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#full-area #game-area #content #end-section .game-over-content .game-over-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: nowrap;
}
#full-area #game-area #content #end-section .game-over-content .game-over-btn-img {
  height: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#full-area #game-area #content #end-section .game-over-content .game-over-btn-img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
#full-area #game-area #content #end-section .game-over-content .game-over-btn-img:active {
  transform: scale(0.98);
}
#full-area #game-area #content #end-section .game-over-content.win-state {
  border-color: #4caf50;
}
#full-area #game-area #content #end-section .game-over-content.win-state .guesses-number {
  color: #4caf50;
}
#full-area #game-area #content #end-section .game-over-content.two-player-state {
  border-color: #ff9800;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
#full-area #game-area #content #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("/media/games/mouse-trap/images/Wooden Floor-01.png");
  background-size: cover;
}
#full-area #game-area #content #play-section #guesses {
  color: white;
  background: #0000006e;
  position: absolute;
  padding: 9px 30px;
  font-size: 35px;
  font-family: f;
  margin: 30px;
  border-radius: 20px;
  font-style: italic;
  margin-top: 120px;
}
#full-area #game-area #content #play-section #options {
  position: absolute;
  display: flex;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  justify-content: space-between;
  width: 80%;
  margin-top: 40px;
}
#full-area #game-area #content #play-section #options #min, #full-area #game-area #content #play-section #options #max {
  position: relative;
}
#full-area #game-area #content #play-section #options #min img, #full-area #game-area #content #play-section #options #max img {
  height: 270px;
  margin-top: 120px;
}
#full-area #game-area #content #play-section #options #min p, #full-area #game-area #content #play-section #options #max p {
  color: white;
  font-family: f;
  font-size: 80px;
  position: absolute;
  left: 180px;
  width: 100px;
  top: 93%;
  transform: translateY(-100%);
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.716);
}
#full-area #game-area #content #play-section #options #max p {
  left: -100px;
  text-align: right;
}
#full-area #game-area #content #play-section #options #guess-cheese-img {
  height: 500px;
  margin-top: -50px;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #play-section #falling-cheese {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  min-width: 100%;
  justify-content: space-around;
  height: auto;
  transform: translateY(-100%);
}
#full-area #game-area #content #play-section #falling-cheese img {
  height: 120px;
  position: relative;
  margin: 0 20px;
}
#full-area #game-area #content #play-section #choice-made {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
#full-area #game-area #content #play-section #choice-made #choice-made-cheese {
  width: 400px;
  margin-top: -50px;
}
#full-area #game-area #content #play-section #choice-made #choice-made-anim {
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #play-section #choice-made p {
  color: white;
  font-family: f;
  font-size: 120px;
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translateY(-100%) translateX(-40%);
  -webkit-text-stroke: 5px rgba(0, 0, 0, 0.977);
}
#full-area #game-area #content #play-section #choice-made #choice-made-tick {
  position: absolute;
  width: 220px;
  left: 60%;
  top: 80%;
  transform: translate(-50%, -100%);
  display: none;
}
#full-area #game-area #content #play-section #run-to-cheese {
  position: absolute;
  width: 100%;
}
#full-area #game-area #content #play-section #run-to-cheese #splat {
  position: absolute;
  left: 70%;
  top: 180px;
  z-index: 9;
  animation: scale 0.9s infinite;
  display: none;
}
#full-area #game-area #content #play-section #run-to-cheese #mouse-sprite {
  top: 90px;
  left: -200px;
  z-index: 2;
  height: 550px;
  position: absolute;
}
#full-area #game-area #content #play-section #run-to-cheese #choosen-cheese {
  position: absolute;
  left: 80%;
  top: 270px;
  animation: scale 1.3s infinite;
}
#full-area #game-area #content #play-section #run-to-cheese #choosen-cheese img {
  width: 220px;
  margin-top: -50px;
}
#full-area #game-area #content #play-section #run-to-cheese #choosen-cheese p {
  color: white;
  font-family: f;
  font-size: 70px;
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translateY(-100%) translateX(-40%);
  -webkit-text-stroke: 3.5px rgba(0, 0, 0, 0.977);
}
#full-area #game-area #content #play-section #alexa-msg {
  position: absolute;
  width: 100%;
  top: 0%;
  transform: translateY(0%);
  font-size: 50px;
  font-family: f;
  color: white;
  background: #00000094;
  text-align: left;
  padding: 10px 20px;
  font-style: italic;
  letter-spacing: 1px;
}

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

@keyframes btnAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@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);
  }
}
@media (max-width: 600px) {
  #full-area #game-area #content #home-section #logo {
    height: 600px;
    margin-top: 230px;
    margin-left: -120px;
  }
  #full-area #game-area #content #play-section #guesses {
    transform: scale(1.3);
    margin-left: 60px;
    margin-top: 130px;
  }
  #full-area #game-area #content #play-section #options {
    transform: translate(-50%, -50%) scale(0.93);
    margin-left: -90px;
  }
  #full-area #game-area #content #play-section #run-to-cheese #choosen-cheese, #full-area #game-area #content #play-section #run-to-cheese #splat {
    left: 50%;
    margin: 0;
    margin-left: -140px;
    top: 800px;
  }
  #full-area #game-area #content #play-section #run-to-cheese #choosen-cheese img, #full-area #game-area #content #play-section #run-to-cheese #splat img {
    width: 250px;
  }
  #full-area #game-area #content #play-section #run-to-cheese #splat {
    margin-left: -180px;
    margin-top: -80px;
  }
  #full-area #game-area #content #play-section #run-to-cheese #mouse-sprite {
    left: 120px;
    top: -200px;
    transform: rotate(90deg);
  }
  #full-area #game-area #content #play-section #alexa-msg {
    font-size: 37px;
    z-index: 99;
  }
  #full-area #game-area #content #end-section {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
  }
  #full-area #game-area #content #end-section .game-over-modal {
    margin-top: 70%;
    width: 95%;
    padding: 20px;
  }
  #full-area #game-area #content #end-section .game-over-content {
    margin-top: -400px;
    padding: 30px 25px;
    width: 100%;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-message {
    font-size: 28px;
    margin-bottom: 20px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-guesses {
    margin: 20px 0;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-guesses .guesses-number {
    font-size: 60px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-guesses .guesses-label {
    font-size: 30px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-buttons {
    gap: 40px;
    margin-top: 20px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-btn-img {
    height: 100px;
  }
}
@media (width: 960px) and (height: 480px) {
  #full-area #game-area {
    width: 960px;
    height: 480px;
  }
  #full-area #game-area #content .btnn {
    width: 250px;
    font-size: 25px;
  }
  #full-area #game-area #content #home-section #home-right #logo {
    height: 350px;
    max-height: 400px;
    margin-top: 5px;
    margin-left: 50px;
  }
  #full-area #game-area #content #trap-section div {
    width: 80%;
  }
  #full-area #game-area #content #play-section {
    transform: none;
  }
  #full-area #game-area #content #play-section #guesses {
    margin: 15px;
    margin-top: 320px;
    font-size: 25px;
  }
  #full-area #game-area #content #play-section #options {
    transform: translate(-50%, -50%) scale(0.5);
    width: 120%;
  }
  #full-area #game-area #content #play-section #run-to-cheese {
    width: 140%;
    top: -50px;
    transform: scale(0.7);
    left: -20%;
  }
  #full-area #game-area #content #play-section #alexa-msg {
    font-size: 35px;
  }
  #full-area #game-area #content #play-section #choice-made {
    transform: scale(0.5);
  }
  #full-area #game-area #content #end-section .game-over-modal {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  #full-area #game-area #content #end-section .game-over-content {
    padding: 20px 50px;
    width: 100%;
    height: 100%;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-message {
    font-size: 25px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-guesses {
    margin: 25px 0;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-guesses .guesses-number {
    font-size: 50px;
    margin-top: -10px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-guesses .guesses-label {
    font-size: 25px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-buttons {
    gap: 45px;
    margin-top: 30px;
  }
  #full-area #game-area #content #end-section .game-over-content .game-over-btn-img {
    height: 70px;
  }
  #full-area #game-area #content #end-section .game-over-content.win-state {
    border-color: #4caf50;
  }
  #full-area #game-area #content #end-section .game-over-content.win-state .guesses-number {
    color: #4caf50;
  }
  #full-area #game-area #content #end-section .game-over-content.two-player-state {
    border-color: #ff9800;
  }
  #full-area #game-area #content #scoreboard-section #scores {
    width: 900px;
    transform: translate(-50%, -50%) scale(0.7);
  }
}

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