 /* ---- click button animation ----- */
 .menuBtn{
  transition: transform .1s ease-in-out;
}

.menuBtn:active{
  transform: scale(0.8);
}

.menuBtn::after{
  transform: scale(1);
}

* {
  caret-color: transparent;
}

#mainGame.disabled #homeBtn { 
  pointer-events: none;
  cursor: pointer;
}

.wthTxtBorder2px {
  text-shadow: 
        -1.5px -1.5px 0px var(--edgeColor),
        -1px -1.5px 0px var(--edgeColor),
        0px -1.5px 0px var(--edgeColor),
        1px -1.5px 0px var(--edgeColor),
        1.5px -1.5px 0px var(--edgeColor),
        1.5px -1px 0px var(--edgeColor),
        1.5px  0px 0px var(--edgeColor),
        1.5px  1px 0px var(--edgeColor),
        1.5px  1.5px 0px var(--edgeColor),
        1px  1.5px 0px var(--edgeColor),
        0px  1.5px 0px var(--edgeColor),
        -1px  1.5px 0px var(--edgeColor),
        -1.5px  1.5px 0px var(--edgeColor),
        -1.5px  1px 0px var(--edgeColor),
        -1.5px  0px 0px var(--edgeColor),
        -1.5px -1px 0px var(--edgeColor)!important;
}

.wthTxtBorder3px {
  text-shadow: 
        -3px -3px 0px var(--edgeColor),
        -2px -3px 0px var(--edgeColor),
        -1px -3px 0px var(--edgeColor),
        0px -3px 0px var(--edgeColor),
        1px -3px 0px var(--edgeColor),
        2px -3px 0px var(--edgeColor),
        3px -3px 0px var(--edgeColor),
        3px -2px 0px var(--edgeColor),
        3px -1px 0px var(--edgeColor),
        3px 0px 0px var(--edgeColor),
        3px 1px 0px var(--edgeColor),
        3px 2px 0px var(--edgeColor),
        2px 3px 0px var(--edgeColor),
        1px 3px 0px var(--edgeColor),
        0px 3px 0px var(--edgeColor),
        -1px 3px 0px var(--edgeColor),
        -2px 3px 0px var(--edgeColor),
        -3px 3px 0px var(--edgeColor),
        -3px 2px 0px var(--edgeColor),
        -3px 1px 0px var(--edgeColor),
        -3px 0px 0px var(--edgeColor),
        -3px -1px 0px var(--edgeColor),
        -3px -2px 0px var(--edgeColor),
        -3px -3px 0px var(--edgeColor)!important;
}

body {
  position: relative;
  margin: 0;
}

/* //------------------------------------- */

#mainGame {
  position: fixed;
  height: 100%;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#mainGame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../images/desktop/bg.png);
  background-size: 100% 100%;
  background-position: 0% 21%;
  background-repeat: no-repeat;
}

.main-game-container{
  position: relative;
  width: 885px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}

/* ---------------------------------------------------------- */
.falling-confetti{
  position: absolute;
  top: 0%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.falling-confetti .confetti{
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/desktop/bg-ribbon.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: falling-gold-confetti 9s linear forwards;
}

@keyframes falling-gold-confetti {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------------------------------------------------------- */
.main-title {
  width: 100%;
  position: relative;
  z-index: 3;
}

/* //------------------------------------- */
.schedule-bar {
  width: max-content;
  height: auto;
  padding: 10px 25px;
  background: url(../images/schedule-bar.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -13px;
  position: relative;
  z-index: 3;
}

.schedule-bar p{
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
}

/* --------------------------------------------------- */
.drawCountsCon {
  width: max-content;
  height: auto;
  padding: 6px 25px;
  background-color: #dc692d;
  border: 3px solid #eebf6e;
  border-radius: 33px; 
  position: relative;
  z-index: 3;
}

.drawCountsCon p {
  color: #fcfbd2;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
}

.drawCountsCon span {
  color: #fffc00;
}

/* --------------------------------------------------- */
.navi-con {
  width: max-content;
  position: absolute;
  top: 21%;
  right: 0%;
  z-index: 3;
}

.menuBtn {
  height: 70px;
  width: 70px;
  cursor: pointer;
  overflow: hidden;
}

#homeBtn {
  background-image: url(../images/navigation-btn/home-icon.png);
}

#musicBtn {
  background-image: url(../images/navigation-btn/music-icon.png);
}

#musicBtn.music-muted {
  background-image: url(../images/navigation-btn/music-icon-off.png);
}

#homeBtn, #musicBtn, #musicBtn.music-muted {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* --------------------------------------------------- */
.center-player {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 638px;
  /* overflow: hidden; */
  z-index: 2;
}

@keyframes introAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(3%); }
  100% { transform: translateY(0); }
}

.center-player::before {
  content: '';
  position: absolute;
  top: 18%;
  left: -3%;
  height: 75px;
  width: 131px;
  background-image: url(../images/center/desktop/baseball.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  animation: ballAnimation 2s ease-in-out infinite;
  will-change: transform;
}

@keyframes ballAnimation {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* -------------- */
.batter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 27%;
  left: -21%;
  animation: introAnimation 2s linear infinite;
  z-index: 1;
}

.batter::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  background: url(../images/center/desktop/batter/1.png) center / contain no-repeat;
  animation: player-batter 3s steps(1) infinite;
}

@keyframes player-batter {
  0%, 39% {
    background-image: url(../images/center/desktop/batter/1.png);
  }
  40%, 49% {
    background-image: url(../images/center/desktop/batter/2.png);
  }
  50%, 100% {
    background-image: url(../images/center/desktop/batter/1.png);
  }
}

/* -------------- */
.catcher {
  width: 97%;
  height: 100%;
  position: absolute;
  top: 38%;
  right: -9%;
  animation: introAnimation 2.5s linear infinite;
  z-index: 1;
}

.catcher::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  background: url(../images/center/desktop/catcher/1.png) center / contain no-repeat;
  animation: player-catcher 3s steps(1) infinite;
}

@keyframes player-catcher {
  0%, 39% {
    background-image: url(../images/center/desktop/catcher/1.png);
  }
  40%, 49% {
    background-image: url(../images/center/desktop/catcher/2.png);
  }
  50%, 100% {
    background-image: url(../images/center/desktop/catcher/1.png);
  }
}

/* --------------------------------------------------- */
.game-buttons {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -1%);
  width: 81%;
  height: 65px;
  background-image: url(../images/desktop/btns-panel.png);
  background-position: bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 30px 10px 30px;
}

.game-btn {
  height: 78px;
  width: 30%;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  position: relative;
  /* transition: transform .1s ease-in-out; */
}

.game-btn#ruleBtn {
  background-image: url(../images/desktop/btn-rule.png);
}

.game-btn#startBtn {
  height: 88px;
  width: 33%;
  background-image: url(../images/desktop/btn-start.png);
}


.game-btn#recordBtn {
  background-image: url(../images/desktop/btn-record.png);
}

.arrow-pointer {
  position: absolute;
  top: -3px;
  right: 35%;
  height: 65px;
  width: 65px;
  background-image: url(../images/desktop/pointer.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: pointImg 1.1s ease-in-out infinite;
  transition: right 0.4s ease-in-out;
}

.arrow-pointer.hide{
  display: none;
}

.game-buttons.rule_move_arrow .arrow-pointer{
  right: 66%;
}

.game-buttons.start_move_arrow .arrow-pointer{
  right: 35%;
}


.game-buttons.record_move_arrow .arrow-pointer{
  right: 3%;
}


@keyframes pointImg {
  0% { 
    top: -3px;
    transform: translateX(13%);
  }
  50% { 
    top: 6px;
    transform: translateX(25%);
  }
  100% { 
    top: -3px;
    transform: translateX(13%);
  }
}

.game-btn#ruleBtn.clicked, .game-btn#startBtn.clicked, .game-btn#recordBtn.clicked,
#winConfirm.clicked {
  animation: clickedBtns .3s ease-out;
}

@keyframes clickedBtns {
  0% { 
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% { 
    transform: scale(1);
  }
}

/* --------------------------------------------------- */
#mainGame.play-ball .center-player, #mainGame.play-ball .game-buttons {
  display: none;
}

/* --------------------------------------- */
#popupContainer{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 4;
  overflow: hidden;
}

/* --------------------------------------- */
#popupContainer.open-playball-container,
#popupContainer.open-playball-container #playBallContainer{
  display: flex;
}

#playBallContainer{
  display: none;
  background: rgb(0 0 0 / 60%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#throwBall, #strikeBall {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

#gameplay {
  position: relative;
  height: 35%;
  width: 100%;
  background-image: url(../images/game/desktop/gameplay-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  align-items: center;
  justify-content: center;
}

#gameplay::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 303px;
  height: 129px;
  background-image: url(../images/game/baseball-fx.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translate(215%, -50%);
}


#gameplay.show {
  display: flex;
}

#gameplay.show::before {
  animation: baseball .1s linear forwards;
}

@keyframes baseball {
  0% { 
    transform: translate(215%, -50%);
  }
  100% { 
    transform: translate(-430%, -50%);
  }
}

#prizeContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: scale(1) rotate(0deg);
}

.prize-58 {
  width: 316px;
}

.prize-88, .prize-188, .prize-388, .prize-888{
  width: 475px;
}

img.digit {
  height: 150px;
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 0.3s ease forwards;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#prizeContainer {
  animation: gameplay 0.3s linear forwards;
}

@keyframes gameplay {
  0% {
    transform: scale(1) rotate(0deg);
  }
  33% {
    transform: scale(1.2) rotate(-4deg);
  }
  66%{
    transform: scale(1.3) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* ---------------------------------------------------- */
#popupContainer.open-playball-container.open-bonus{
  background: rgb(0 0 0 / 0%);
}

#bonusPopupContainer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 60%);
  z-index: 2;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

#bonusPopupContainer.open-bonus-popup {
  display: flex;
}

.bonus-outer-con {
  position: relative;
  background-image: url(../images/bonus-popup/prize-popup.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 400px;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: scale(0);
  will-change: transform;
}

.bonus-outer-con::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  background-image: url(../images/bonus-popup/trophy.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -40%) scale(0);
  will-change: transform;
  z-index: 1;
}

.bonus-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: -9%;
  z-index: 2;
}

#prize {
  width: 45%;
  pointer-events: none;
  transform: scale(0);
  will-change: transform;
}

.bonus-confirm {
  position: relative;
  height: 75px;
  width: 210px;
  cursor: pointer;
  will-change: transform;
}

.bonus-confirm::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bonus-popup/btn-confirm.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0);
  will-change: transform;
}

.bonus-confirm.disabled {
  cursor: auto;
  pointer-events: none;
}

.stars {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.start1, .start2, .start3 {
  position: absolute;
  transform: scale(0);
  will-change: transform;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.start1 {
  top: 22%;
  right: -17%;
  height: 90px;
  width: 90px;
  background-image: url(../images/bonus-popup/star-right-top.png);
}

.start2 {
  top: 50%;
  left: -13%;
  height: 75px;
  width: 75px;
  background-image: url(../images/bonus-popup/star-left-mid.png);
}

.start3 {
  bottom: 8%;
  right: -5%;
  height: 50px;
  width: 50px;
  background-image: url(../images/bonus-popup/star-right-bottom.png);
}

#closeWinPop {
  position: absolute;
  top: 0%;
  right: -16%;
  width: 50px;
  height: 50px;
  background-image: url(../images/x-btn.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
  cursor: pointer;
  transform: scale(0);
  will-change: transform;
}

/* ------------------------------- */
#bonusPopupContainer.open-bonus-popup .bonus-outer-con{
  animation: bonusPop 0.2s ease-out forwards;
}

#bonusPopupContainer.open-bonus-popup .bonus-outer-con::after {
  animation: bonusPop1 0.2s ease-out forwards 0.1s;
}

#bonusPopupContainer.open-bonus-popup .start2 {
  animation: bonusPop 0.2s ease-out forwards 0.2s,
              beatingStar 1.2s ease-in-out infinite 0.4s;
}

#bonusPopupContainer.open-bonus-popup #prize {
  animation: bonusPop 0.2s ease-out forwards 0.3s;
}

#bonusPopupContainer.open-bonus-popup .start1 {
  animation: bonusPop 0.2s ease-out forwards 0.4s,
            beatingStar 1.2s ease-in-out infinite 0.6s;
}

#bonusPopupContainer.open-bonus-popup #closeWinPop {
  animation: bonusPop 0.2s ease-out forwards 0.5s;
}

#bonusPopupContainer.open-bonus-popup .start3 {
  animation: bonusPop 0.2s ease-out forwards 0.6s,
              beatingStar 1.2s ease-in-out infinite 0.8s;
}

#bonusPopupContainer.open-bonus-popup .bonus-confirm::before {
  animation: bonusPop 0.2s ease-out forwards 0.7s;
}

@keyframes bonusPop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bonusPop1 {
  0% {
    transform: translate(-50%, -40%) scale(0);
  }
  100% {
    transform: translate(-50%, -40%) scale(1.01);
  }
}

@keyframes beatingStar {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(3deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  75% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* --------------------------------------- */
#popupContainer.open-rule-popup,
#popupContainer.open-rule-popup #ruleContainer{
  display: flex;
}

#ruleContainer {
  display: none;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: rgb(0 0 0 / 60%);
}

.rule-outer-con {
  position: relative;
  width: 600px;
  border-radius: 15px;
  background: linear-gradient(180deg, #fafbd0, #ee9f11);
  padding: 45px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rule-outer-con::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 98.5%;
  width: 98.5%;
  z-index: 1;
  background: linear-gradient(180deg, #fafacd, #f4be41);
  border-radius: 15px;
}

img.rule-label {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37%;
  z-index: 2;
}

img.prize-list {
  width: 100%;
  position: relative;
  z-index: 2;
}

.rule-inner-con {
  position: relative;
  width: 98%;
  padding: 15px 15px 15px 7px;
  background: white;
  border-radius: 15px;
  border: 1px solid #000000;
  margin-top: 10px;
  z-index: 2;
}

#closeRulePop {
  position: absolute;
  top: -9%;
  right: -8%;
  width: 40px;
  height: 40px;
  background-image: url(../images/x-btn.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
  cursor: pointer;
}

.content {
  width: 100%;
  height: 250px;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3b;
  direction: rtl;
  padding-left: 8px;
  line-height: 1.7;
}

.content::-webkit-scrollbar {
  width: 5px;
}

.content::-webkit-scrollbar-thumb {
  background: rgb(59 59 59 / 50%); 
  border-radius: 10px;
}

.content p{
  direction: ltr;
}

.content .highlight{
  color: #c20000;
}

/* --------------------------------------- */
#popupContainer.open-record-popup,
#popupContainer.open-record-popup #recordContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#popupContainer.open-record-popup {
  background: rgb(0 0 0 / 60%);
}

#recordContainer {
  position: relative;
  display: none;
  width: 350px;
  height: 400px;
  background: linear-gradient(180deg, #fafccf, #ec9e23);
  border-radius: 15px;
  padding: 4px;
}

.record-container {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  background: #fefdcd;
  overflow: hidden;
}

.record-label {
  position: relative;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, #28a8bb 0%, #0141c4 100%);
  padding: 15px;
  font-size: 22px;
  font-weight: 600;
  color: #f5fbed;
}

.record-table {
  padding: 15px;
}

.table-head {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-size: 16px;
  color: white;
  background: #0b3791;
  border-radius: 10px;
}

.time-column {
  width: 60%;
  text-align: center;
}

.bonus-column {
  width: 40%;
  text-align: center;
}

.record-list {
  display: flex;
  margin-top: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
}

.record-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #142f64;
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 5px;
}

.record-row:last-child {
  margin-bottom: 0px;
}

.record-row:nth-child(odd) {
  background: #feffff;
}

span.record-close{
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
  height: 45px;
  width: 45px;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
  z-index: 3;
}

span.record-close::after,
span.record-close::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  height: 50%;
  width: 3px;
  background: #fff;
  border-radius: 5px;
}

span.record-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

span.record-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.record-table p{
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #142f64;
}

/* -------------------------------------------------- */
#popupContainer.open-sysmtempromt-popup, 
#popupContainer.open-sysmtempromt-popup #sysmtempromtContainer {
    display: flex;
}

#popupContainer.open-sysmtempromt-popup {
  background: rgb(0 0 0 / 60%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sysmtempromtContainer{
  display: none;
  position: relative;
  width: 363px;
  height: 195px;
  background: linear-gradient(to bottom, #fafccf, #ec9e23) ;
  border-radius: 15px;
  padding: 20px 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sysmtempromtContainer::after {
    content: '';
    position: absolute;
    width: 98.5%;
    height: 96%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fefdcd;
    border-radius: 15px;
    z-index: 1;
}

#sysmtempromtContainer p {
    z-index: 2;
    font-size: 32px;
    font-weight: bold;
    color: #142f64;
    text-shadow: 2px 2px 20px rgb(248 249 250 / 50%);
    text-align: center;
}

#closesysmtempromtPop {
  position: absolute;
  top: -18%;
  right: -11%;
  width: 40px;
  height: 40px;
  background-image: url(../images/x-btn.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
  cursor: pointer;
}

@media (min-height: 952px) {
  .center-player {
    bottom: -4%;
  }
}

@media screen and (max-height: 951px) and (min-height: 850px) {
  .main-game-container {
    height: 78%;
    transform: scale(1.2);
  }
}

@media screen and (max-height: 851px) and (min-height: 814px) {
  .main-game-container {
    height: 87%;
    transform: scale(1.1);
  }
}
/* 針對接近 2560x1440 的解析度套用的樣式 */
@media only screen and (min-width: 2500px) and (max-width: 2620px) {
  .main-game-container {
    position: relative;
    width: 1294px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}
.game-btn {
    height: 106px;
    width: 30%;
    }
    .game-btn#startBtn {
    height: 109px;
    width: 33%;
    }
    .center-player {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 1100px;
    /* overflow: hidden; */
    z-index: 2;
}
.batter {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 17%;
    left: -24%;
    animation: introAnimation 2s linear infinite;
    z-index: 1;
}
.catcher {
    width: 97%;
    height: 100%;
    position: absolute;
    top: 32%;
    right: -9%;
    animation: introAnimation 2.5s linear infinite;
    z-index: 1;
}
.schedule-bar p {
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
.schedule-bar {
    width: max-content;
    height: auto;
    padding: 20px 30px;
    background: url(../images/schedule-bar.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -13px;
    position: relative;
    z-index: 3;
}
.drawCountsCon p {
    color: #fcfbd2;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
.menuBtn {
    height: 100px;
    width: 100px;
    cursor: pointer;
    overflow: hidden;
}
}