.navbarWrapper {
  top: 0;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(3px);
  height: 75px;
  display: flex;
  align-items: center;
  z-index: 89999;
}

.navbar {
  width: 96%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navLogo {
  height: 38px;
  margin-top: 4px;
}

.borderLine {
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, rgb(177, 76, 255), rgb(195, 1, 189), rgb(220, 20, 20));
  position: fixed;
  z-index: 89999;
  top: 70px;
}

.connectButton {
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins";
  padding: 6px 15px;
  padding-top: 8px;
  border-radius: 0px;
  border: none;
  background: none;
  color: white;
  background: linear-gradient(to right, rgb(50, 50, 50), rgb(0, 0, 0), rgb(50, 50, 50));
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgb(0, 0, 0);
  transition: 0.3s ease-out;
}

.connectButton i {
  font-size: 20px;
  margin-right: 5px;
  display: none;
}

.connectButton:hover {
  box-shadow: 0px 0px 10px rgb(100,100,100);
}

@media (max-width:600px) {
  .navLogo {
    height: 25px;
  }

  .connectButton {
    font-size: 12px;
  }
}

@media (max-width:850px) {
  .navbar {
    width: 96%;
  }
}

@media (max-width:800px) {
  .navbar {
    width: 90%;
  }
}

.buyKDTbtn {
  margin-right: 4px;
  background: orange;
  color: rgb(0, 0, 0);
  padding: 7px 15px;
  padding-top: 8px;
  border-radius: 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0px 0px 5px orange;
  font-family: "Poppins";
  transition: 0.3s ease-out;
}

.buyKDTbtn:hover {
  box-shadow: 0px 0px 10px orange;
}

@media(max-width: 450px) {
  .buyKDTbtn {
    font-size: 10px;
    margin-right: 8px;
  }

  .connectButton {
    font-size: 10px;
  }
}

.noticeWrapper {
  z-index: 99;
  position: fixed;
  width: 100%;
  height: 30vh;
  bottom: -25px;
  align-items: center;
  justify-content: center;
  /* background: rgba(0,0,0,0.4); */
  /* backdrop-filter: blur(5px); */
  display: none;
  text-align: center;
}

.noticeBlock {
  background: rgb(5, 5, 5, 0.9);
  backdrop-filter: blur(5px);
  padding: 10px;
  border-radius: 0px;
  width: 100%;
  border: 1px solid black;
  text-align: center;
}

@media(max-width:800px) {
  .noticeWrapper {
    bottom: 50px;
  }
}

.noticeHeader {
  font-size: 20px;
  text-transform: uppercase;
  color: orange
}

.noticeText {
  font-family: "Poppins";
  font-size: 15px;
  margin-bottom: 20px;
}

.noticeText span {
  font-weight: bold;
}

.noticeCancleButton {
  background: rgb(40, 40, 40);
  /* width: 180px; */
  text-align: center;
  padding: 3px 5px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 5px black;
  transition: 0.3s ease-out;
  font-family: "Poppins";
}

.noticeCancleButton:hover {
  background: rgb(60, 60, 60);
}


.walletConnectBox {
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(3px);
  border-radius: 0px;
  padding: 10px;
  border: 1px solid gray;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px black;
  display: none;
  animation: popo 0.3s ease-in-out;
  z-index: 9999;
}

@keyframes popo {
  0% {
    transform: scale(0) translateY(-700px);
  }

  100% {
    transform: scale(1) translateY(0px);
  }
}

.walletItem {
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  padding: 7px 15px 7px 10px;
  border-radius: 0px;
  margin: 2px 0px;
  width: 100%;
  color: white;
  background: rgba(50, 50, 50, 0.4);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.2s ease-in-out;
}

.walletItem:hover {
  transform: scale(1.04);
  /* box-shadow: 0px 0px 50px rgb(160,160,160); */
}

.walletItem img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  margin-right: 5px;
  filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.4));
  /* mix-blend-mode: color-burn; */
}

.walletClose {
  color: white;
  background: black;
  margin-top: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.walletDisconnect {
  font-size: 13px;
  width: 120px;
  text-align: center;
  background: white;
  color: black;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 0px;
  cursor: pointer;
  margin: 3px 0px;
}

@media (max-width:650px) {
  .hideMobile {
    display: none;
  }
}

/* container-starts-here----------------- */
.container {
  width: 95%;
  margin: auto;
  margin-top: 85px;
  font-family: "Chakra Petch";
  min-height: 85vh;
}

.statusBar {
  width: 100%;
  background: black;
  padding: 15px 20px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid orange;
  box-shadow: 0px 0px 20px black;
}
.statusHeader{
  font-size: 14px;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: center;
}
.statusHigh{
  margin: 0;
  font-size: 20px;
  margin-left: 4px;
  color: orange;
  margin-right: 2px;
  font-weight: 800;
  padding-bottom: 2px;
  text-transform: uppercase;
}

.statHead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: black;
  padding: 10px 20px;
  border-radius: 0px;
}

.statHead img {
  width: 20px;
  height: 20px;
}

.statHead h4 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: rgb(160, 160, 160);
}

.statHead h4 span {
  color: white;
  letter-spacing: 1px;
}

.userSpecific {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.userSpecific h4 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: rgb(160, 160, 160);
}

.userSpecific h4 span {
  color: white;
}

.chartDrop {
  cursor: pointer;
  background: orange;
  padding: 4px 15px;
  font-size: 14px;
  margin: 0;
  color: black;
  border-radius: 0px;
  font-weight: 400;
}

.chartDrop span {
  font-weight: bold;
}

.actionContainer {
  margin-top: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 35px;
  border: 1px solid rgb(30,30,30);
  padding: 20px;
  box-shadow: 0px 0px 10px black;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(3px);
}

.actionContainer {
  width: 100%;
}
.chartContainer{
  /* width: 60%; */
  flex: 1.2;
  height: 450px;
}
.chartBlock2 {
  display: none;
}

.gameContainer {
  flex: 0.9;
  /* background: rgba(0, 0, 0, 0.4); */
  /* backdrop-filter: blur(3px); */
  width: 60%;
  min-height: 470px;
  text-align: center;
  border-radius: 0px;
  padding: 20px;
  border: 1px solid rgb(30,30,30);
  box-shadow: 0px 0px 10px black;
  position: relative;
  overflow: hidden;
}
.gameOn{
  position: absolute;
  width: 100%;
  background: rgba(0,0,0,1);
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0px;
  /* box-shadow: inset 0px 0px 50px orange; */
  cursor: default;
  padding: 40px;
  animation: game-on 0.5s ease-in-out;
  display: none;
}

.waitingOn, .timerOn{
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  height: 100vh;
  left: 0;
  cursor: default;
  padding: 40px;
  animation: game-on 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  display: none;
}

.waitingImg{
  width: 20vw;
  filter: drop-shadow(0px 0px 10px black);
  border-radius: 50%;
}
.timerImg{
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
}
.waitingHead, .timerHead{
  font-size: 26px;
  font-weight: bold;
  border-bottom: 1px solid rgb(100,100,100);
  background: black;
  color: orange;
  padding: 5px 20px;
}
.waitingText, .timerText{
  font-size: 16px;
  letter-spacing: 1px;
  padding: 4px 20px;
}

@media(max-width: 600px) {
  .waitingImg, .timerImg{
    width: 60vw;
    height: 60vw;
  }
  .waitingHead, .timerHead{
    font-size: 20px;
  }
  .statusHeader{
    font-size: 12px;
    text-align: center;
    flex-direction: column;
  }
}

@keyframes game-on {
  0%{
    transform: translateY(-500px);
  }
  100%{
    transform: translateY(0px);
  }
}
.gameOn h3{
  font-size: 26px;
  text-transform: uppercase;
  left: 2px;
  font-family: "Josefin Sans";
  color: white;
  margin: 0;
  padding: 0;
  margin-bottom: 35px;
}
.timer{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.timer h5{
  margin: 0;
  font-size: 60px;
  color: white;
}
.timer h5 span{
  margin: 0;
  padding: 0;
  font-size: 62px;
  padding: 5px 25px;
  background: black;
  border-radius: 20px;
  box-shadow: inset 0px 0px 10px orange;
  margin: 0px 8px;
  color: white;
  text-shadow: 0px 0px 5px white;
  border-bottom: 5px solid orange;
  font-weight: bolder;
  letter-spacing: 2px;
  font-family: 'Allerta Stencil';
  animation: seconds 1.2s linear infinite; 
}

@keyframes seconds {
  0%{
    text-shadow: 0px 0px 10px orange;
    color: white;
  }
  50%{
    text-shadow: 0px 0px 55px orange;
    color: rgb(255, 255, 255);
  }
  100%{
    text-shadow: 0px 0px 10px orange;
    color: white;
  }
}
@keyframes seconds-crimson {
  0%{
    text-shadow: 0px 0px 10px crimson;
    color: white;
  }
  50%{
    text-shadow: 0px 0px 55px crimson;
    color: rgb(255, 255, 255);
  }
  100%{
    text-shadow: 0px 0px 10px crimson;
    color: white;
  }
}

.gameOnStat{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.gameContainer h6{
  margin: 0;
  font-size: 18px;
  color: white;
  border-radius: 0px;
  font-weight: 500;
  box-shadow: 0px 0px 10px black;
}
.gameContainer h6 span{
  color: orange;
  font-weight: 800;
}

.gameStat{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 15px;
  background: rgb(0, 0, 0);
}
.gameStatWin h6{
  word-spacing: 6px;
  font-size: 35px;
  box-shadow: none;
  animation: glow 0.4s linear infinite;
}
@keyframes glow {
  0%{
    text-shadow: 0px 0px 10px white;
  }
  100%{
    text-shadow: 0px 0px 20px white;
  }
}

.upBid, .downBid{
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: rgb(255, 255, 255);
  padding: 6px 10px;
  border-radius: 0px;
  font-weight: bold;
  width: 100%;
}
.upBid{
  background: rgb(103, 171, 0);
  box-shadow: 0px 0px 10px rgb(103, 171, 0);
}
.downBid{
  background: crimson;
  box-shadow: 0px 0px 10px crimson;
}

.gameContainer h2 {
  font-size: 22px;
  text-transform: uppercase;
  left: 2px;
  font-family: "Josefin Sans";
  color: orange;
  margin: 0;
  padding: 0;
}


.gameContainerText {
  font-size: 15px;
  font-weight: 500;
  color: rgb(150, 150, 150);
  margin-bottom: 20px;
}

.gameContainer p span {
  font-weight: 800;
  color: white;
  letter-spacing: 1px;

}

.inputWrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  background: black;
}

.inputWrapper input {
  width: 75%;
  padding: 15px 20px;
  border: none;
  background: rgb(15, 15, 15);
  margin-bottom: 0px;
  font-size: 16px;
  font-family: "Chakra Petch";
  font-weight: 800;
  letter-spacing: 1px;
  text-align: right;
  text-transform: uppercase;
  outline: none;
  color: white;
  border-bottom: 1px solid black;
  border-radius: 0px;
  /* box-shadow: inset 0px 0px 10px white; */
}
.inputHelper{
  width: 20%;
  /* background: black; */
  line-height: 100%;
  font-size: 13px;
}
.inputBNB{
  width: 20%;
  display: flex;
  height: 100%;
  font-size: 14px;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  padding: 4px 10px;
}
.inputBNB img{
  width: 20px;
}
.bidContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.bidBtn {
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  background: gray;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.upBtn {
  background: rgb(103, 171, 0);
  box-shadow: 0px 0px 20px rgb(103, 171, 0);
}

.upBtn:hover {
  box-shadow: 0px 0px 40px rgb(103, 171, 0);
}

.downBtn {
  background: crimson;
  box-shadow: 0px 0px 20px crimson;
}

.downBtn:hover {
  box-shadow: 0px 0px 40px crimson;
}

.listContainer {
  background: rgb(15, 15, 15);
  border-radius: 0px;
  margin-top: 30px;
  padding: 10px;
  height: 100%;
  box-shadow: 0px 0px 0px black;
}

.listContainer h4 {
  margin: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid gray;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 90px;
  overflow-y: scroll;
  padding-right: 5px;
  cursor: default;
}
.listItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgb(30, 30, 30);
}
.listHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgb(100,100,100);
  margin-bottom: 2px;
}
.listHead p,
.listHead span{
  margin: 0;
  padding: 0;
  font-size: 12px;
  width: 100%;
  text-align: left;
  color: white;
}
.listHead a{
  font-size: 12px;
  color: white;
}
.listItem p,
.listItem span {
  margin: 0;
  padding: 0;
  font-size: 10px;
  width: 100%;
  text-align: left;
}
.listItem small{
  font-size: 11px;
}
.listItem a {
  font-size: 11px;
  color: orange;
  cursor: pointer;
}

.up {
  color: rgb(103, 171, 0);
  font-weight: 800;
}

.down {
  color: crimson;
  font-weight: 800;
}

.wonWrapper,
.loseWrapper {
  position: fixed;
  top: 0px;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: rgb(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.loseWrapper {
  /* display: flex; */
}

.loseImg{
  width: 20vw;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 5px white);
}
@media (max-width: 600px) {
  .loseImg{
    width: 55vw;
  }
}
.confetti {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 99999;
}

.wonBox,
.loseBox {
  z-index: 100000;
  background: rgb(20, 20, 30);
  border-radius: 0px;
  padding: 30px 50px;
  text-align: center;
  font-family: "Josefin Sans";
  box-shadow: 0px 0px 50px black;
  animation: pop-up 0.3s ease-in-out;
}

@keyframes pop-up {
  0% {
    transform: scale(0.3);
  }

  100% {
    transform: scale(1);
  }
}

.trophy {
  width: 140px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 20px rgb(255, 183, 0));
}

.wonBox h2,
.loseBox h2 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  margin-bottom: 15px;
}

.wonBox h1,
.loseBox h1 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  color: orange;
}

.wonBox p,
.loseBox p {
  font-size: 17px;
  font-family: "Chakra Petch";
  color: rgb(160, 160, 160);
  margin-bottom: 30px;
}

.wonBox p span,
.loseBox p span {
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
}

.wonClaim {
  font-family: "Chakra Petch";
  text-transform: uppercase;
  background: orange;
  width: 100%;
  text-align: center;
  padding: 6px 20px;
  color: black;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 10px orange;
  display: none;
}

.rewardText{
  display: none;
}

.close {
  font-family: "Chakra Petch";
  text-transform: uppercase;
  background: white;
  width: 100%;
  text-align: center;
  padding: 6px 20px;
  color: black;
  font-weight: bold;
  border-radius: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 10px white;
  margin: 0px 7px;
}

.errorText{
  font-size: 12px;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 5px 30px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: crimson;
  border-radius: 0px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  margin-bottom: 4px;
}

.rewardBox{
  display: flex;
  width: 100%;
  background: transparent;
  padding: 5px 20px;
  justify-content: center;
  color: white;
}
.rewardItem{
  font-weight: 500;
  color: rgb(213, 213, 213);
  font-size: 24px;
  word-spacing: 6px;
}
.rewardItem span{
  font-weight: bolder;
  color: orange;
}

.connectWalletNotice{
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 10px;
  background: linear-gradient(to right, rgb(50,50,50), black, rgb(50,50,50));
  margin-top: 20px;
  color: orange;
  letter-spacing: 1px;
}

@media(max-width: 1000px) {
  .actionContainer{
    flex-direction: column;
  }
  .gameContainer{
    width: 100%;
  }
  .chartContainer{
    min-width: 100%;
  }
  .chartBlock1{
    min-width: 100%;
    /* overflow: scroll; */
    min-height: 300px;
    /* background: gray; */
  }
  .bidContainer{
    flex-direction: column;
  }
  .bidBtn{
    font-size: 14px;
  }
  .gameContainer{
    padding: 30px 20px;
    margin-bottom: 50px;
  }
  .gameContainer h2{
    font-size: 24px;
  }
}

@media(max-width:800px) {
  .statusBar {
    flex-direction: column;
    gap: 10px;
  }
  .userSpecific{
    /* flex-direction: column; */
    gap: 12px;
  }
  .userSpecific h4{
    font-size: 11px;
  }
  .chartDrop{
    display: none;
  }
  .actionContainer{
    padding: 10px 8px;
    box-shadow: none;
    border: none;
  }
  .gameContainer{
    padding: 20px 0px;
    box-shadow: none;
    border: none;
  }
  .gameOn{
    padding: 20px 0px;
    box-shadow: none;
    border: none;
    background: rgb(20,20,30);
  }
}

@media (max-width:600px) {
  .gameContainer{
    padding-bottom: 100px;
  }
  .gameContainer input{
    width: 60%;
    font-size: 14px;
  }
  .inputHelper{
    width: 25%;
    font-size: 12px;
  }
  .rewardItem{
    font-size: 18px;
  }
  .gameStatWin h6{
    font-size: 20px;
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
  .gameOn{
    padding-bottom: 40px;
  }
  .gameStat h6{
    font-size: 15px;
  }
  .list{
    max-height: 250px;
  }
}

.tenSecRunnerWrapper{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0,0,0,0.3);
  backdrop-filter: blur(1px);
  display: none;
}
.tenSecRunnerWrapper img{
  width: 25vw;
  border-radius: 50%;
  box-shadow: 0px -20px 500px black;
}

.audioBracket{
  display: none;
}

.footer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  font-size: 12px;
  background: rgb(10,10,10);
  left: 0;
}
.footer a{
  color: orange;
  font-weight: 600;
}