body {
  background-image: url(images/bg_web.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.adobeBtn {
  width: 75px;
  width: 150px;
  float: right;
}

.instructionCard {
  width: 100%;
  position: fixed;
  top: 43%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.instructbox {
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid red;
  border-radius: 20px;
  width: 50%;
  padding: 5px;
}

p {
  color: white;
  font-family: verdana;
  font-size: 15px;
  font-weight: bold;
  line-height: 10px;
}

.buttonCard {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.downloadBtn, .androidBtn {
  width: 80%;
}

.playNowBtn {
  width: 70%;
  margin-top: 5px;
}

.adultImg {
  width: 70%;
}

.home_load {
	width: 100%;
	height: 100%;
	background-color: #262626;
	position: absolute;
	z-index: 99999;
	display: flex;
	justify-content: center;
}

.home_load img {
	width: 100%;
	height: 100%;
}

.topRightBtns {
  position: fixed;          /* stays at top-right */
  top: 15px;
  right: 15px;

  display: flex;
  align-items: center;
  gap: 10px;

  z-index: 9999;
}

.contactBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 18px;

  background: linear-gradient(180deg,#1e88e5,#0d47a1);
  border-radius: 8px;

  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contactBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(30,136,229,0.6);
}

@media only screen and (min-width: 1041px) and (max-width: 1300px) {
  .instructbox {
    width: 50%;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1040px) {
  .instructbox {
    width: 80%;
  }

  .downloadBtn, .androidBtn {
    width: 100%;
  }

  p {
    font-size: 13px;
    line-height: 10px;
  }

  .adobeBtn {
    height: 50px;
    width: 100px;
  }

  .playNowBtn {
    width: 70%;
  }

  .adultImg {
    width: 60%;
  }
  
  .home_load {
		width: 100%;
		left: 0;
		top: 0;
	}
}

/*For tabs and large mobiles*/
@media only screen and (max-width: 600px) {
  .pcBtn {
    display: none;
  }

  .instructbox {
    width: 80%;
  }
  
  .androidBtn {
	  width:90%;
	}

  p {
    font-size: 12px;
    line-height: normal;
  }

  .topRightBtns {
    flex-direction: column-reverse; /* 👈 MAGIC */
    align-items: flex-end;
    gap: 6px;
  }

  .adobeBtn {
    width: 65px;
    height: 32px;
  }

  .contactBtn {
    height: 32px;
    width: 50px;
    font-size: 8px;
    padding: 0 8px;
  }

  .playNowBtn {
    width: 80%;
  }

  .adultImg {
    width: 80%;
  }
}
