body {
        background-image: url(./BG.jpg);
        color: white;
    }
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: blue;
  color: white;
  padding: 10px;
  box-shadow: 0 2px 5px rgb(255, 255, 255);
}
main {
    padding-top: 70px;
}

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-size: cover;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#intro-screen img {
  max-width: 100%;
  max-height: 100%;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: black;
  color: white;
  box-shadow: 0 2px 4px rgb(200 200 200 / 70%);
  z-index: 9999;
}

.navbar h1 {
  color: white;
  margin: 0;
  padding: 10px;
  display: inline-block;
}

.navbar p {
  color: white;
  margin: 0;
  padding: 10px;
  display: inline-block;
  text-align: center;
  width: 100%;
}


.navbar button {
  float: right;
  margin: 10px;
  padding: 5px 10px;
  border-radius: 50px;
  border-color: white;
  background-color: white;
  color: blue;
  cursor: pointer;
}

.transaction-btn {

  margin: 10px;

  padding: 5px 10px;
  border-radius: 50px;
  border-color: white;
  background-color: white;
  color: blue;
  cursor: pointer;
}

.row {
  display: flex;
  justify-content: center;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid black;
  margin: 10px;
  font-size: 2em;
  color: black;
}

.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 10px;
  font-size: 1em;
  border-radius: 50%;
  margin: 10px;
  padding: 5px 10px;
  border-radius: 50px;
  border-color: white;
  background-color: white;
  color: #00e4ff;
  cursor: pointer;
}

.active {
  background-color: blue;
  color: rgb(255, 0, 221);
}

.Win {
  background-color: rgb(30, 255, 0);
  color: rgb(255, 0, 221);
}

.Lose {
  background-color: red;
  color: rgb(255, 0, 221);
}

.center {
  background-color: blue;
}

.box {
  background-color: white;
  border-radius: 10px;
}
.amount-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 2vh;
}

input[type="number"] {
  padding: 10px;
  border-color: darkblue;
  margin-right: 10px;
  border-radius: 50px;
}

button[type="submit"] {
  padding: 5px 10px;
  border-radius: 50px;
  border-color: darkblue;
  background-color: #fff;
  color: #f00;
  cursor: pointer;
}



@media only screen and (max-width: 767px) {
  /* CSS rules for mobile devices */
  header {
    padding: 5px;
  }

  .navbar {
    padding: 5px;
  }

  .navbar h1,
  .navbar p {
    padding: 5px;
    font-size: 0.8em;
  }

  .navbar button,
  .transaction-btn {
    font-size: 0.8em;
    padding: 3px 8px;
    margin: 5px;
  }

  .box {
    font-size: 1.2em;
    width: 60px;
    height: 60px;
  }

  .circle {
    font-size: 0.8em;
    width: 60px;
    height: 60px;
    padding: 3px 8px;
  }

  .amount-form input[type="number"] {
    padding: 8px;
    font-size: 0.8em;
  }

  .amount-form button[type="submit"] {
    padding: 3px 8px;
    font-size: 0.8em;
  }
}


/* Open Pop Up */
#deposit-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#withdraw-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#popup {
  background-color: #272727;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 20px;
}

#blur-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9998;
  display: none;
}



