@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  user-select: none;
  transition: 0.3s ease-in-out;
}

body {
  transition: 0.3s ease-in-out;
  font-family: "Rubik";
  background: linear-gradient(to top, rgb(10, 10, 20), rgb(16, 16, 105), rgb(44, 12, 56));
  background-position: top;
  background-attachment: fixed;
  background-size: cover;
  background: linear-gradient(to bottom, rgb(60, 60, 60), black);
  color: rgb(230, 230, 230);
}

/*-- scroll styling */

::-webkit-scrollbar {
  width: 4px;
  border-radius: 3px;
  height: 3px;
  margin: 0px 10px;
}

::-webkit-scrollbar-track {
  background: rgb(0, 0, 0, 0.4);
  margin: 0px 20px;
}

::-webkit-scrollbar-thumb {
  background: rgb(170, 170, 170);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: crimson;
  ;
}

/* -------------------- */

.scriptLine {
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: orange;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(17, 17, 17);
  border-radius: 15px;
  box-shadow: 0px 0px 5px orange;
  transition: 0.3s ease-out;
  border: 5px solid rgb(182, 118, 0);
  width: 250px;
  text-align: center;
}

.scriptLine:hover {
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.413);
  background: rgb(255, 255, 255);
}

.buyPromptWrapper {
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  height: 100vh;
  z-index: 9999;
  display: none;
}

.buyPrompt {
  padding: 30px 20px;
  border-radius: 20px;
  background: rgb(20, 20, 20);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  box-shadow: 0px 0px 10px black;
  animation: popOpen 0.3s ease-out;
}

@keyframes popOpen {
  0% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

.buyPrompt h2 {
  font-size: 25px;
  color: orange;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.buyPlanBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.buyPlanItem {
  padding: 20px;
  border-radius: 10px;
  background: rgb(35, 35, 35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgb(60, 60, 60);
  box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
  min-width: 300px;
}

.buyPlanItem h4 {
  font-size: 18px;
  color: gray;
  font-weight: 600;
}

.buyPlanItem h3 {
  font-size: 28px;
  color: orange;
  letter-spacing: 1px;
  font-weight: 700;
}

.buyPlanBullet {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 13px;
  color: rgb(155, 155, 155);
  letter-spacing: 1px;
}

.buyPlanBullet b {
  color: rgb(211, 211, 211);
}

.buyPlanBullet i {
  font-optical-sizing: 18px;
  color: orange;
}

.buyActionWrapper {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.buyPlanBtn {
  font-size: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  font-weight: 600;
  background: crimson;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  min-width: 200px;
  border: 2px solid crimson;
  cursor: pointer;
}

.buyPlanBtn:hover {
  box-shadow: 0px 0px 10px rgb(255, 255, 255);
  ;
}

.buyPlanBtnClose {
  font-size: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  font-weight: 600;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  min-width: 200px;
  border: 2px solid white;
  cursor: pointer;
}

.buyPlanBtnClose:hover {
  box-shadow: 0px 0px 10px white;
}

@media (max-width: 730px) {
  .buyPlanBox {
    flex-direction: column;
  }

  .buyPlanBtn,
  .buyPlanBtnClose {
    min-width: 150px;
  }
}

@media (max-width: 450px) {
  .buyPrompt {
    padding: 14px;
    gap: 15px;
    width: 96%;
  }

  .buyPrompt h2 {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .buyPlanBtnClose,
  .buyPlanBtn {
    font-size: 12px;
    padding: 5px 10px;
    width: 50%;
  }

  .buyPlanItem {
    padding: 10px;
    width: 100%;
  }
}


.brandLabel {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  font-size: 12px;
  padding: 5px 8px;
  text-align: center;
  background: rgb(255, 255, 255);
  color: black;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  rotate: 90deg;
}

.brandLabel2 {
  font-size: 12px;
  padding: 5px 8px;
  text-align: center;
  background: rgb(255, 255, 255);
  color: black;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 10px;
  display: none;
}


.brandLabel img,
.brandLabel2 img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgb(180, 180, 180);
  margin-bottom: -1px;
}

.scriptLine {
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: orange;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(17, 17, 17);
  border-radius: 15px;
  box-shadow: 0px 0px 5px orange;
  transition: 0.3s ease-out;
  border: 5px solid rgb(182, 118, 0);
  width: 250px;
  text-align: center;
}

.scriptLine:hover {
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.413);
  background: rgb(255, 255, 255);
}

@media (max-width: 720px) {
  .brandLabel {
    display: none;
  }
  .brandLabel2 {
    display: flex;
  }
}

.buyScriptBtn {
  position: fixed;
  bottom: 0px;
  left: 0px;
  background: white;
  border-radius: 0px 20px 0px 0px;
  padding: 5px 15px;
  cursor: pointer;
  color: black;
  font-weight: 600;
  font-size: 14px;
}