* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  line-height: 1.25;
  min-height: 100vh;
  background: #126dfe;
  overflow-x: hidden;
}

@font-face {
  font-family: "Placard";
  src: local("Placard Next Round"),
    url("../assets/placard-next-round-bold.otf") format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: 'Technology';
  src: url('fonts/Technology.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Technology';
  src: url('fonts/Technology-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Technology';
  src: url('fonts/Technology-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Technology';
  src: url('fonts/Technology-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@keyframes twist {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

@keyframes star {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 0.5;
  }
}

@keyframes rabbit {
  from {
    translate: 0 50px;
  }

  to {
    translate: 0 -50px;
  }
}

@keyframes rabbit2 {
  from {
    translate: 0 20px;
  }

  to {
    translate: 0 -20px;
  }
}

body {
  position: relative;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: #fff726;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
}

h1,
.h1 {
  font-size: 140px;
  line-height: 1;
  font-weight: 700;
  font-family: "Placard";
  text-transform: uppercase;
}

h2,
.h2 {
  font-size: 90px;
  line-height: 1.15;
  font-weight: 700;
  font-family: "Placard";
  text-transform: uppercase;
}

.flexed {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flexed--between {
  justify-content: space-between;
}

.flexed--around {
  justify-content: space-around;
}

.flexed--top {
  align-items: flex-start;
}

.flexed--bottom {
  align-items: flex-end;
}

.flexed--center {
  justify-content: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

body>header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  z-index: 7;
  border-bottom: 1px solid #19323f;
}

header.active {
  background: #126dfeb2;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.demo-menu {
  display: flex;
  align-items: center;
  gap: 18px
}

.logo {
  max-width: 110px;
}

.btn2 button,
.btn2 a {
  padding: 11px 16px 12px;
  color: #202223 !important;
  display: inline-block;
  font-size: 18px;
  background: radial-gradient(#aadc9f, #aadc9f, #7d67ea);
  font-weight: 700;
  border-radius: 30px;
  font-family: "Placard";
  border: none;
  transition: 0.3s;
  margin-right: -30px;
}

.mobBtns button {
  padding: 11px 18px 12px;
  color: #202223 !important;
  display: inline-block;
  font-size: 18px;
  background: radial-gradient(#aadc9f, #aadc9f, #7d67ea);
  font-weight: 700;
  border-radius: 30px;
  font-family: "Placard";
  border: none;
  transition: 0.3s;
}

.btn button,
.btn a {
  padding: 11px 18px 12px;
  color: #202223 !important;
  display: inline-block;
  font-size: 18px;
  background: radial-gradient(#aadc9f, #aadc9f, #7d67ea);
  font-weight: 700;
  border-radius: 30px;
  font-family: "Placard";
  border: none;
  transition: 0.3s;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.btn-cancel a,
.btn-continue a {
  color: #202223 !important;
  display: inline-block;
  background: radial-gradient(#aadc9f, #aadc9f, #7d67ea);
  font-weight: 700;
  border-radius: 30px;
  font-family: "Placard";
  border: none;
  transition: 0.3s;
  padding: 11px 18px 12px;
  font-size: 18px;
  text-align: center;
  width: auto;
}

.btn.btn--alt a {
  border: 1px solid #9099ca;
  background: #afdab6;
  color: rgb(7, 7, 7);
}

.btn button:hover,
.btn.btn--alt a:hover,
.btn a:hover {
  background-position: 0px 46px;
  background: radial-gradient(#fff726, #aadc9f);
}

a.off {
  padding-right: 20px;
  background: url("../assets/arrow-out.svg") 100% 50% no-repeat;
  background-size: 16px auto;
  transition: 0.2s;
}

a.off:hover {
  color: #4d8fff;
}

header li a {
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  transition: 0.2s;
}

header li:not(.btn) a:hover {
  color: yellow;
}

header li {
  display: block;
}

header li.btn {
  margin-left: 0;
}

.header-menu ul.flexed {
  margin-top: -2px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wallet-icon-container {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  margin: 0;
  height: 28px;
}

.wallet-icon-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: transparent;
  margin-left: -15px;
}

#connectMetamaskBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

}

#connectMetamaskBtn img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-left: -8px;
  margin-right: -12px;
}

#geoFenceErrorPopup {
  height: auto;
  max-height: 90vh;
  padding: 30px 25px;
  z-index: 10001;
}

#geoFenceErrorPopup .popup-inner-geo {
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
  width: 100%;
  height: auto;
  font-family: "Open Sans";
}

#geoFenceErrorPopup .popup-title-geo {
  font-size: 33px;
  line-height: 1.2;
}

#geoFenceErrorOkBtn {
  width: 120px;
  height: 50px;
  border-radius: 30px;
  padding: 10px;
  font-family: "Placard";
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #aadc9f 0%, #8e94cc 100%);
  border: none;
  cursor: pointer;
  color: #202223;
  transition: background 0.3s;
}

#geoFenceErrorOkBtn:hover {
  background: radial-gradient(#fff726, #aadc9f);
}

#geoFenceErrorPopup .geo-popup-btn {
  justify-content: center;
  width: 100%;
}

#geoFenceErrorPopup .geo-message-text {
  font-size: 20px;
  font-family: "Open Sans";
}

#geoFenceErrorPopup .popup-inner-geo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
  width: 100%;
  height: auto;
  font-family: "Open Sans";
  text-align: center;
}


.mob-menu ul.mob-flexed {
  display: none;
  align-items: center;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.smallmob-menu ul.smallmob-flexed {
  display: none;
  align-items: center;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mob-menu nav ul.mob-flexed li a {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: 0.2s;
  margin-right: 6px;
}

.btn1 {
  margin-left: 0px !important;
}

.header-bottom li a:hover {
  color: #fff726;
}

.header-menu2 {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.header-menu2 a {
  display: none;
}

container {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

.show-popup-btn {
  padding: 12px 24px;
  font-size: 18px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.show-popup-btn:hover {
  background-color: #0056b3;
}

.popup-heading {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.2rem);
  ;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
}

.popup-heading .icon {
  font-size: 20px;
  color: orange;
}

/* 
.popup-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border: 3px solid #000000;
}

.popup-content {
  background-color: #00183e;
  color: #ffffff;
  padding: 30px 25px;
  width: 90%;
  max-width: 550px;
  position: relative;
  animation: slideIn 0.3s ease-out;
  line-height: 1.8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: url(../assets/lines.svg) repeat 50% 50% #0c4db3;
  border: 1px solid #00000033;
  border-radius: 20px;
  font-size: 16px;
  letter-spacing: 0.4px;
  word-spacing: 1px;
} */

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.popup-content h2 {
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 1px 1px 2px #00000088;
  line-height: 1.4;
  text-align: center;
}

.popup-content h3 {
  margin: 25px 0 12px;
  font-weight: bold;
  text-shadow: 1px 1px 1px #00000055;
  line-height: 1.4;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.7px
}

.popup-content p {
  margin-bottom: 18px;
  color: #f1f1f1;
  line-height: 1.7;
  font-size: 16px;
}

.emoji {
  margin-right: 8px;
}

@media (max-width: 600px) {
  .show-popup-btn {
    padding: 10px 20px;
    font-size: 16px;
  }


  .popup-content h2 {
    font-size: 20px;
  }

  .popup-content h3 {
    font-size: 16px;
  }

  .popup-content p {
    font-size: 14px;
  }
} */

.menu-icon {
  height: 25px;
  cursor: pointer;
  width: 40px;
  position: relative;
  overflow: hidden;
}

.menu-icon:before,
.menu-icon:after {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  border-radius: 10px;
  transform-origin: center center;
  background-color: #fff;
}

.menu-icon:before {
  position: absolute;
  top: 0;
  left: 18px;
  transform: rotate(-45deg);
}

.menu-icon:after {
  position: absolute;
  top: 0;
  right: 20px;
  transform: rotate(45deg);
}

.menu-icon .bar {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 20px;
}

.menu-icon .bar-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.menu-icon .bar-2 {
  position: absolute;
  top: 9px;
  left: 0;
  height: 3.2px;
}

.menu-icon .bar-3 {
  position: absolute;
  top: 18px;
  left: 0;
}

.menu-icon.opened .bar {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

.menu-icon.opened:before,
.menu-icon.opened:after {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}

.menu-icon-3:before {
  transform: rotate(-90deg);
}

.menu-icon-3:after {
  transform: rotate(90deg);
}

.menu-icon-3:before,
.menu-icon-3:after {
  top: -2px;
}

.menu-icon-3.opened:before {
  transform: rotate(-45deg);
}

.menu-icon-3.opened:after {
  transform: rotate(45deg);
}

.menu-icon-3.opened:before,
.menu-icon-3.opened:after {
  top: 0px;
}

.menu-icon-3.opened .bar {
  opacity: 0;
}

.menu-icon-3.opened .bar-1 {
  top: 10px;
}

.menu-icon-3.opened .bar-3 {
  top: 10px;
}

.social-link a:hover svg path {
  fill: yellow;
}

.social-link a svg path {
  transition: 0.2s;
}

.footer-inner ul {
  gap: 85px;
}

.footer-inner ul li {
  display: block;
  position: relative;
}

.footer-inner ul li a {
  color: #fff;
  transition: 0.3s;
}

.footer-inner ul li a:hover {
  color: #fff726;
  cursor: pointer;
}

.join-community.footer-community {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.footer-inner ul li:not(:last-child):after {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  right: -53px;
  top: 0;
  background: url("../assets/decor-star.svg") 50% 50% no-repeat;
}

.popup {
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  border-image-source: linear-gradient(283.68deg,
      #ffffff 0.86%,
      rgba(255, 255, 255, 0.11) 100%);
  backdrop-filter: blur(80px);
  max-width: 570px;
  min-width: 200px;
  width: 90%;
  height: 340px;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 38px;
  gap: 32px;
  background-color: #007bff;
}

.popup-alert {
  height: 200px;
}

.popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 506px;
  height: 190px;
  gap: 20px;
  padding-top: 30px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  backdrop-filter: blur(10px);
}

.metamask-browser .header-inner-wrap {
  max-height: 70vh;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.metamask-browser .header-inner-wrap::-webkit-scrollbar {
  width: 6px;
}

.metamask-browser .header-inner-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.metamask-browser .header-inner-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
}

body.modal-open {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
  pointer-events: none !important;
}

.popup-inner h4 {
  max-width: 90%;
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0%;
}

/* Paragraph text */
.popup-inner p {
  font-family: Inter;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0%;
  /* margin-top: 15px; */
}

button.close-popup {
  width: 48px;
  height: 48px;
  background: url(../assets/close.svg);
  border: none;
  text-indent: -9999999px;
  margin: 2px -49px 10px auto;
  display: block;
  transition: 0.3s;
  position: absolute;
  right: 70px;
  top: 5px;
  color: black;
}

button.close-popup:hover {
  transform: rotate(180deg);
}

#connectMetamaskBtn,
#loginbtn {
  width: 205px;
  height: 69px;
  border-radius: 48px;
  padding: 16px;
  gap: 10px;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #aadc9f 0%, #8e94cc 100%);
}

#confirmDisconnectBtn,
#cancelDisconnectBtn,
#confirmBtn,
#cancelBtn {
  width: 80px;
  height: 40px;
  border-radius: 30px;
  padding: 10px;
  gap: 10px;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  align-items: baseline;
  background: radial-gradient(50% 50% at 50% 50%, #aadc9f 0%, #8e94cc 100%);
}

#doNotSellPopup .popup-inner {
  max-width: 100%;
  width: 100%;
  padding: 30px 20px;
  gap: 5px;
  box-sizing: border-box;
}

#doNotSellPopup .popup-inner h4 {
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
}

#doNotSellPopup .popup-inner p {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
}

#doNotSellPopup #confirmBtn,
#doNotSellPopup #cancelBtn {
  width: 130px;
  height: 50px;
  font-size: 18px;
  padding: 10px 16px;
}

body>section {
  margin-bottom: 140px;
}

.hero {
  padding-top: 105px;
  padding-bottom: 140px;
}

ul.diamonds li {
  display: block;
  position: relative;
  padding: 5px 0 5px 36px;
  background: url("../assets/diamond.svg") 0 8px no-repeat;
  margin-bottom: 10px;
}

.hero-left ul {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin: 40px 0;
}

ul.diamonds li strong,
.h5 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
}

.hero-left ul.diamonds li {
  padding-left: 24px;
  background-size: 14px;
  margin-bottom: 5px;
}

ul.diamonds:has(strong) {
  color: #ffffffb2;
}

ul.diamonds strong,
ul.diamonds .h5 {
  color: #fff;
}

.section-contents {
  margin-top: 60px;
  font-weight: bold;
}

ol {
  list-style-position: inside;
  counter-reset: item;
  list-style-type: none;
}

ol li {
  padding: 18px 0 18px 50px;
  /* border-top: 2px dashed #ffffff33; */
  position: relative;
  font-weight: 600;
  color: #fff;
}

ol li:before {
  content: counter(item);
  counter-increment: item;
  font-weight: 700;
  font-size: 16px;
  color: #126dfe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(#aadc9f, #7d67ea);
  width: 35px;
  height: 35px;
  position: absolute;
  border-radius: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.bracs {
  position: relative;
}

.bracs:before,
.bracs:after {
  content: "";
  width: 3px;
  height: 100%;
  background: url("../assets/bracs.svg") 0 50% no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100% 100%;
}

.bracs:after {
  left: inherit;
  right: 0;
  transform: rotate(180deg);
}

.bracs.bracs--lg:before,
.bracs.bracs--lg:after {
  background: url("../assets/bracs-lg.svg") 0 50% no-repeat;
  width: 6px;
}

.steps-bonus.bracs {
  margin-top: 40px;
  display: inline-block;
  padding: 0 37px 10px 37px;
  font-weight: 600;
  font-size: 16px;
}

.steps-bonus a {
  display: inline-block;
  margin-top: 4px;
  text-decoration: underline;
}

.steps-bonus a:hover {
  text-decoration: none;
  color: #fff726;
}

body>footer {
  background: #0d4db2;
  padding: 70px 0;
  border-radius: 80px 80px 0 0;
}

.bracs {
  padding: 2px 27px;
}

.social-list .social-list-inner {
  gap: 32px;
}

.social-list .social-list-inner svg {
  display: block;
}

.gradtext {
  background-image: radial-gradient(#aadc9f, #aadc9f, #7d67ea);
  color: transparent;
  background-clip: text;
}

.cam-text {
  margin: 40px 0;
  font-size: 28px;
  font-weight: 600;
}

.tokenomics-info {
  font-size: 16px;
  font-weight: 800;
  text-align: right;
  margin-top: 13px;
}

.community-text {
  font-size: 27px;
  font-weight: 600;
}

.community-anim-text {
  max-width: 675px;
}

.community-anim {
  max-width: 474px;
  margin-top: 24px;
}

.community-inner ul.diamonds {
  max-width: 585px;
}

.card {
  padding: 24px;
  border: 1px solid #00000033;
  border-radius: 20px;
  background: url("../assets/lines.svg") repeat 50% 50% #0c4db3;
  background-size: 35px;
}

.card-icon {
  width: 48px;
  margin-bottom: 12px;
}

.flexed.flexed--full {
  align-items: stretch;
}

.tipping-card {
  width: calc(33% - 11px);
}

.section-contents {
  gap: 17px;
}

.card-text {
  color: #ffffffb2;
}

.buybox {
  padding: 20px 30px;
  border: 3px solid #000000;
  border-radius: 20px;
  background: url(../assets/lines.svg) repeat 50% 50% #0c4db3;
  background-size: 35px;
  max-width: 420px;
}

.amount-raised,
.total-amount-raised,
.usd-raised,
.usd-goal,
.tokens-total,
.downloads-total,
.downloads-ios,
.downloads-android,
.unique-buyers,
.total-purchases {
  font-weight: 700;
}

h3 {
  font-size: 31px;
  line-height: 1;
  font-family: "Placard";
  font-weight: 700;
}

.buybox h3 {
  text-align: center;
  margin-bottom: 12px;
}

.buybox-nums {
  justify-content: space-between;
  font-size: 13px;
  line-height: 1.7;
}

.buybox-bold {
  font-weight: 700;
}

.buybox-totals {
  font-weight: 500;
  padding-bottom: 7px;
}

.buybox-totals-title {
  position: relative;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.buybox-totals-title:after,
.buybox-totals-title:before {
  content: "";
  position: absolute;
  border-top: 2px dashed #ffffff80;
  width: calc(50% - 50px);
  left: 0;
  top: 50%;
}

.buybox-totals-title:after {
  left: inherit;
  right: 0;
}

.downloads-title {
  position: relative;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.downloads-title:after,
.downloads-title:before {
  content: "";
  position: absolute;
  border-top: 2px dashed #ffffff80;
  width: calc(30% - 30px);
  left: 0;
  top: 50%;
}

.downloads-title:after {
  left: inherit;
  right: 0;
}

.buybox-totals-downloads {
  margin-bottom: 10px;
  border-bottom: 2px dashed #ffffff80;
  padding-bottom: 5px;
}

.buybox-purchase-summary {
  border-top: 2px dashed #ffffff80;
  padding-top: 5px;
}

.package-select-active {
  border: 1px solid #26acff;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 700;
  background: #00000033;
  cursor: pointer;
  content: "";
  transition: 0.3s;
  gap: 2px;
}

#package-tooltip,
#package-tooltip2,
#package-tooltip3 {
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
}

.package-select {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.package-select-data {
  margin: 16px 0 20px;
  background: #00000033;
  padding: 8px 12px 8px 12px;
  border-radius: 22px;
  border: 2px dashed #323232;
}

.package-select-data p {
  text-align: center;
  margin-bottom: 10px;
}

.package-select-data p:last-child {
  margin: 0;
}

.package-pick {
  font-size: 12px;
  margin-top: 11px;
}

.package-select-drop {
  position: absolute;
  background: #0a3781;
  padding: 6px 16px 12px;
  width: 100%;
  border: 1px solid #26acff;
  border-radius: 20px;
  z-index: 3;
  top: calc(100% + 0px);
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}

.package-select-active:after {
  content: "";
  width: 11px;
  height: 7px;
  right: 16px;
  position: absolute;
  top: calc(50% - 3px);
  background: url("../assets/caret-drop.svg") 0 0 no-repeat;
  transition: 0.3s;
}

.package-select-data-row {
  padding: 0px 0;
  margin-bottom: 2px;
}

.buybox-buy-form .btn button {
  width: 100%;
  margin-top: 8px;
}

.package-select-active:hover {
  border-color: #fff726;
}

.package-select-active.active:after {
  transform: rotate(180deg);
}

.package-select-active.active+.package-select-drop {
  opacity: 1;
  visibility: visible;
}

.package-select-set-title {
  padding: 4px 12px 4px 0;
  font-weight: 700;
  border-bottom: 2px dashed #ffffff4d;
  margin-bottom: 2px;
}

.package-select-set-title span:first-child {
  color: #fff726;
}

.package-select-row {
  padding: 3px 12px;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.package-select-row:hover {
  background: #ffffff1a;
}

.package-select-row:not(.inactive):hover span:first-child {
  color: #fff726;
}

.package-select-row:not(.inactive):hover span+span {
  opacity: 1;
}

.package-select-row span+span {
  opacity: 0.5;
  font-size: 12px;
}

.inactive.package-select-row {
  color: rgba(255, 255, 255, 0.6);
  cursor: default;
}

.inactive.package-select-row span:first-child {
  color: #fff;
}

.inactive.package-select-row span.sold {
  color: white;
  background-color: red;
  padding: 1px 4px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;

  opacity: 1;
}

.soldout-qcamusd {
  display: block !important;
  text-align: center !important;
  ;
}


.package-select-drop-set+.package-select-drop-set {
  margin-top: 10px;
}

.package-select-set-title span.inactive:first-child {
  color: #ffffff;
  opacity: 0.5;
}

.package-select-set-title span.reserved {
  background: #ab7f39;
  padding: 1px 4px;
  border-radius: 4px;
  margin-left: 8px;
}

.buybox-nums span span {
  color: #fff726;
}

.buybox-progress {
  position: relative;
  background: radial-gradient(#aadc9f, #7d67ea);
  border-radius: 15px;
  height: 24px;
  margin: 12px 0;
}

.buybox-progress:before {
  content: "";
  position: absolute;
  background: #000;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  border-radius: 12px;
  top: 1px;
  left: 1px;
}

.buybox-progress-inner {
  position: relative;
  z-index: 2;
  height: 24px;
  background: radial-gradient(#aadc9f, #7d67ea);
  border-radius: 10px;
}

.buybox-progress span {
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.stage-num {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.buybox-stats-link a {
  background-image: radial-gradient(#aadc9f, #67abea);
  color: transparent;
  background-clip: text;
  position: relative;
  transition: 0.2s;
}

.buybox-stats-link a:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 1px;
  background: radial-gradient(#aadc9f, #67abea);
}

.buybox-stats-link a:hover {
  color: #fff726;
}

.buybox-next-stage-info {
  margin: 12px 0 15px;
  text-align: center;
  font-weight: 700;
}

.buybox-next-stage-info span {
  color: #fff726;
}

.buybox-buy-tabs-list button {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 15px;
  color: #202223;
  font-family: "Open Sans";
  border: 1px solid white;
}

.buybox-buy-tabs-list {
  justify-content: center;
  gap: 10px;
  margin-bottom: 17px;
}

/* .buybox-buy-tabs-list button:not(.active) {
  background: none;
} */

/* .buybox-buy-tabs-list button:not(.active) span {
  background-image: radial-gradient(#aadc9f, #67abea);
  color: transparent;
  background-clip: text;
  position: relative;
  transition: 0.2s;
} */

.buybox-buy-tabs-list button span {
  position: relative;
}

.buybox-buy-tabs-list .icon-text-wrapper span {
  font-size: 14px;
  line-height: 1.4;

}
.buybox-buy-tabs-list .icon-text-wrapper1 span {
  font-size: 12px;
  line-height: 1.4;

}
.buybox-buy-buy-tabs-list img{
  margin-right: 6px;
}

@media (max-width: 370px) {
  .buybox-buy-tabs-list .icon-text-wrapper span {
    font-size: 13px;
  }
}

/* .buybox-buy-tabs-list button:not(.active) span:after {
  content: "";
  position: absolute;
  left: 0;
  border-bottom: 2px dotted #7e6ae8;
  width: 100%;
  bottom: -3px;
} */

.buybox-buy-coin-select-item img {
  max-width: 29px;
}

.icon-text-wrapper {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 15px;

}
.icon-text-wrapper1 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  margin-left: 6px;
  padding: 2px;
}

.icon-img {
  max-width: 27px;
  height: auto;
}


.buybox-buy-coin-select-item {
  gap: 2px;
  padding: 4px 14px 4px 4px;
  border: 1px solid #3629a7;
  /* border-radius: 20px; */
  /* background: #00000033; */
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
/* 
.buybox-buy-tabs-list button:not(.active):hover {
  background: #255eba;
} */
/* 
.buybox-buy-coin-select-item:not(.active):hover {
  border-color: yellow;
} */

.buybox-buy-coin-select {
  gap: 5px;
  justify-content: center;
}

/* .buybox-buy-coin-select-item.active {
  background: radial-gradient(#aadc9f, #7d67ea);
  padding: 5px 15px 5px 4px;
  border: none;
  color: #000;
} */

.buyin-maxinfo {
  margin: 12px 0 8px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px;
  background: #00000033;
  border-radius: 22px;
  border: 2px dashed #323232;
  display: none;
}

.buybox-buy-form {
  margin-top: 12px;
}

.buyin-maxinfo span {
  color: #fff726;
}

.buybox-footer {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.9;
}

.buybox-footer-info {
  font-size: 12px;
}

.buybox-footer-link a {
  color: #fff;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  transition: 0.2s;
  cursor: pointer;
}

.buybox-footer-link a:hover {
  color: yellow;
}

.buyin-form-row label {
  flex: 1;
  position: relative;
}

.buyin-form-row label span {
  color: #ffffff99;
  padding: 6px 0;
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.buyin-form-row {
  margin-bottom: 8px;
}

.buyin-form-row label input {
  padding: 10px 15px;
  border-radius: 20px;
  background: #1c2a4d;
  border: 1px solid #ffffff33;
  color: #fff;
  font-family: "Open Sans";
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.buyin-form-row+.btn button {
  width: 100%;
}

.buyin-form-row button,
.buyin-form-row img {
  padding: 8px 10px;
  font-family: "Open Sans";
  font-size: 12px;
  background: radial-gradient(#aadc9f, #7d67ea);
  position: absolute;
  bottom: 6px !important;
  right: 4px;
  border: none;
  border-radius: 18px;
  font-weight: 600;
}

.buyin-form-row img {
  padding: 0;
  width: 32px;
}

.faq-item {
  padding: 10px 54px 10px 24px;
  border: 1px solid #00000033;
  border-radius: 20px;
  background: url(../assets/lines.svg) repeat 50% 50% #0c4db3;
  background-size: 35px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-q {
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-q:after {
  content: "";
  width: 22px;
  height: 12px;
  position: absolute;
  right: -32px;
  top: calc(50% - 6px);
  background: url("../assets/angle-down.svg") 50% 50% no-repeat;
  transition: 0.3s;
}

.faq-item.active .faq-q:after {
  transform: rotate(180deg);
}

.faq-a {
  padding: 12px 10px;
  color: #ffffff99;
  line-height: 1.3;
  display: none;
}

.faq-item:hover {
  border-color: #fff726;
}

.faq-item:not(:last-child) {
  margin-bottom: 15px;
}

.faq-list {
  max-width: 640px;
}

tfoot {
  font-size: 22px;
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table td,
table th {
  text-align: left;
  padding: 8px 0;
  transition: 0.3s;
}

table td+td,
table th+th {
  text-align: right;
}

th {
  font-size: 30px;
  font-family: "Placard";
  text-transform: uppercase;
  font-weight: 700;
}

thead th {
  padding-bottom: 24px;
  padding-top: 0;
}

tbody tr:not(:first-child) td {
  border-top: 2px dotted #ffffff4d;
}

tbody td {
  color: #ffffffb2;
}

tfoot td,
tbody tr:first-child td {
  border-top: 2px dotted #fff;
}

table tbody tr:has(td:hover) td {
  background: #ffffff0d;
  padding: 8px;
  color: #fff;
}

.whale-step-index {
  padding: 24px 0 8px;
  width: 56px;
  text-align: center;
  font-size: 40px;
  color: #126dfe;
  font-family: "Placard";
  background: radial-gradient(#aadc9f, #7d67ea);
  border-radius: 30px 30px 5px 5px;
  margin-bottom: 12px;
}

.whale-step {
  flex: 1;
}

.whales-steps {
  gap: 25px;
  margin-top: 40px;
}

.whale-step ul {
  color: #ffffffb2;
  list-style-position: inside;
}

.whale-step ul li {
  margin-bottom: 10px;
  display: block;
  position: relative;
  padding-left: 25px;
}

.whale-step ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 11px;
  left: 13px;
  transform: translate(-50%, -50%);
  background: #ffffffb2;
  border-radius: 4px;
}

.whale-rabbit img {
  margin: 35px auto 0;
  animation: 5s infinite alternate rabbit2;
}

section#quickcam {
  background: #0d4db2;
  padding: 140px 0 200px;
  border-radius: 80px;
  overflow: hidden;
}

.coming-soon img {
  margin: 0 auto;
  width: 220px !important;
  height: 43px !important;
}

.quickcam-inner {
  position: relative;
}

.quickcam-inner h2 {
  text-align: center;
  position: relative;
  z-index: 2;
}

.quickcam-inner ul li {
  width: calc(33% - 24px);
}

.quickcam-inner ul {
  gap: 110px 38px;
}

.quickcam {
  position: absolute;
}

.quickcam-rabbit {
  position: absolute;
  bottom: -20px;
  transform: rotate(-15deg) translate(-50%, 0);
  left: 50%;
  z-index: 4;
  animation: 5s infinite alternate rabbit2;
  max-width: 380px;
}

.quickcam.cam5 {
  left: calc(50% - 35px);
  bottom: -25px;
  transform: translate(-100%, 0) rotate(-61deg) scale(1.1);
}

.quickcam.cam1 {
  bottom: calc(100% - 40px);
  left: -30px;
}

.quickcam.cam2 {
  top: -30px;
  right: -30px;
  width: 100px;
}

.quickcam.cam3 {
  width: 60px;
  left: 140px;
  bottom: -120px;
}

.quickcam.cam4 {
  right: 50px;
  bottom: -150px;
  max-width: 100px;
}

.hero-left {
  flex: 1;
  position: relative;
}

.hero-left:before,
.hero-left:after {
  content: "";
  width: 76px;
  height: 76px;
  position: absolute;
  background: url("../assets/coin.png") 50% 50% no-repeat;
}

.hero-inner {
  gap: 60px;
}

.hero-inner1 {
  gap: 60px;
}

.hero-inner2 {
  gap: 60px;
}

.hero-inner3 {
  gap: 60px;
}

.hero-left-top {
  padding-left: 200px;
  position: relative;
}

.hero-left dotlottie-player {
  width: 270px;
  height: 250px;
  rotate: -30deg;
  position: absolute;
  top: 200px;
  left: -60px;
  animation: 5s infinite alternate rabbit;
  z-index: 2;
}

.hero-left-top h1 span {
  margin-left: -200px;
}

.hero-badge {
  max-width: 92px;
  font-size: 12px;
  font-weight: 600;
  padding-left: 42px;
  box-sizing: content-box;
  background: url("../assets/cryptobull-logo.svg") 0 50% no-repeat;
  margin-right: 70px;
}

.hero-btns-btn1 {
  gap: 8px;
}

.tekenomics-btns .btn {
  padding: 12px 0 24px 0;
}

.cam-inner {
  gap: 36px;
}

.cam-info {
  flex: 1;
}

.synergy-scheme-part-inner {
  max-width: 264px;
  width: 100%;
  margin: 0 auto;
  min-height: 210px;
}

.synergy-scheme {
  margin-top: 4px;
  gap: 50px 55px;
  justify-content: center;
  background: url(../assets/crossgo.svg) calc(50%) 80% no-repeat;
}

.synergy-scheme-part.synergy-scheme-1 {
  max-width: 264px;
  width: 100%;
}

.synergy-scheme-part.synergy-scheme-main {
  width: 100%;
}

.syn-part-logo {
  margin-bottom: 12px;
}

.syn-part-text {
  color: #ffffffb2;
}

.cam-right {
  max-width: 584px;
  background: url("../assets/crossgo-lg.svg") center 40% no-repeat;
}

#total-coins-purchased,
#total-amount-spent,
#total-coins-pending {
  cursor: pointer;
}

@media (max-width: 1280px) {
  .cam-right {
    background-position: center top;
    background-size: 100% auto;
    padding-top: 80px;
  }

  .counter-label {
    margin: 8px 0 16px;
    font-size: clamp(16px, 2vw, 22px);
    color: #04f204;
    font-weight: 600;
    /* ✅ stronger emphasis */
  }
}

@media (max-width: 1024px) {
  .cam-right {
    background-position: center top;
    background-size: 100% auto;
    padding-top: 85px;
  }
}

@media (max-width: 768px) {
  .cam-right {
    background-position: center top;
    background-size: 100% auto;
    padding-top: 88px;
  }
}

.steps-info,
.buy-info {
  max-width: 620px;
}

.roadmap-item-index {
  background: radial-gradient(#aadc9f, #7d67ea);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #126dfe;
  font-weight: 800;
  border-radius: 30px;
  margin-bottom: 12px;
}

.roadmap-item ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 11px;
  left: 13px;
  transform: translate(-50%, -50%);
  background: #ffffffb2;
  border-radius: 4px;
}

.roadmap-item ul li {
  position: relative;
  display: block;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ffffffb2;
}

.roadmap-item ul {
  list-style-position: inside;
}

.roadmap-item p {
  color: #ffffffb2;
}

.roadmap-item ul li:last-child {
  margin: 0;
}

.roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.roadmap-item {
  position: relative;
}

.roadmap-item:nth-child(2) {
  margin-top: 98px;
}

.roadmap-item:nth-child(3) {
  margin-top: 200px;
}

.roadmap-item:nth-child(4) {
  margin-top: 315px;
  grid-row: 1 / 3;
  grid-column: 4;
}

.roadmap-item:nth-child(5) {
  grid-column: 3;
  margin-top: 65px;
}

.roadmap-item:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
  margin-top: 250px;
}

.roadmap-item:nth-child(3) dotlottie-player,
.roadmap-item:nth-child(6) dotlottie-player {
  width: 250px;
  height: 230px;
  position: absolute;
  rotate: z 25deg;
  bottom: calc(100% + 80px);
  left: -30px;
  opacity: 0.5;
  animation: 5s infinite alternate rabbit2;
}

.roadmap-item:nth-child(6) dotlottie-player {
  rotate: 3 25 0 180deg;
  left: 100px;
  bottom: calc(100% + 40px);
  width: 200px;
  height: 180px;
  animation: 5s infinite alternate rabbit2 1s;
}

.roadmap-item:nth-child(7) {
  grid-column: 1;
  grid-row: 2;
  margin-top: 350px;
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .roadmap-item:nth-child(7) {
    margin-top: 1px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 1024px) {
  .roadmap-item:nth-child(7) {
    margin-top: 1px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 768px) {
  .roadmap-item:nth-child(7) {
    margin-top: 1px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

.header-mobile {
  display: none;
}

.buybox-buy-coin-select-item span small {
  display: block;
  font-size: 8px;
  white-space: nowrap;
}

.header-account-icon {
  /* width: 36px; */
  height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-account-icon img {

  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  border: 3px dashed #8a9c86;
  margin-right: 0px;
}

.header-account-icon:hover img {
  border: 3px solid #8a9c86;
  cursor: pointer;
}

.dropdown-text {
  font-size: 18px;
}

.buybox-wrap {
  position: relative;
}

.token-menu {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-right: -30px;
}

.token-menu a {
  display: none;
}


.buy-menu a {
  font-size: 20px;
  display: none;
}

.buybox-wrap dotlottie-player {
  content: "";
  width: 355px;
  height: 485px;
  position: absolute;
  bottom: 20px;
  transform: translateX(-48%);
}

.buybox {
  position: relative;
  z-index: 2;
}

.tablet-rabbit {
  display: none;
}

#buy .buy-info:before {
  display: none;
}

.cam-inner,
.whales-steps,
.steps-info,
.buy-info,
.roadmap-inner,
.community-inner ul.diamonds {
  position: relative;
}

.roadmap-inner:before,
.roadmap-inner:after,
.cam-inner:before,
.whales-steps:before,
.whales-steps:after,
.steps-info:before,
.buy-info:before,
.community-inner ul.diamonds:before {
  content: "";
  position: absolute;
  top: -76px;
  left: 0;
  width: 66px;
  height: 66px;
  transform: translateY(-100%);
  background: url("../assets/decor-star.svg") 50% 50% no-repeat;
  background-size: cover;
  animation: 5s infinite alternate star;
}

.steps-info:before,
.buy-info:before {
  transform: translateY(0) translateX(-15%);
  left: 100%;
  top: 14px;
  width: 158px;
  height: 158px;
}

.whales-steps:after,
.whales-steps:before {
  transform: translateY(0) translateX(0);
  left: 296px;
  top: inherit;
  bottom: 20px;
  width: 100px;
  height: 100px;
}

.whales-steps:after {
  left: inherit;
  right: 296px;
}

.roadmap-inner:before,
.cam-inner:before {
  transform: translateY(0) translateX(0);
  left: inherit;
  right: 0;
  top: 0;
}

.roadmap-inner:before {
  top: 30px;
}

.roadmap-inner:after {
  transform: translateY(0) translateX(0);
  top: inherit;
  bottom: -10px;
  left: 0;
  width: 125px;
  height: 125px;
}

#faq .star {
  width: 80px;
}

#faq .star img {
  width: 100%;
  animation: 5s infinite alternate star;
}

div#hero {
  position: relative;
}

div#hero:before {
  content: "";
  position: absolute;
  width: 2725px;
  height: 2725px;
  background: url(../assets/twist-radial.svg) 0 0;
  top: -90%;
  animation: 20s infinite forwards twist linear;
  right: -10%;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner1 {
  position: relative;
  z-index: 2;
}

.hero-inner2 {
  position: relative;
  z-index: 2;
}

.hero-inner3 {
  position: relative;
  z-index: 2;
}

section#tipping {
  position: relative;
  z-index: 2;
}

.tipping-inner h2 {
  max-width: 1000px;
}

div#hero:after {
  content: "";
  height: 2725px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #00183e, #0a3a8700);
  opacity: 0.5;
}

.hero-left:before {
  top: 40px;
  left: 319px;
  z-index: 4;
  width: 40px;
  background-position: 100% 50%;
}

.hero-left:after {
  top: 320px;
  background-position: 0 50%;
  left: 238px;
  width: 40px;
  z-index: 4;
}

@keyframes coin1 {
  0% {
    rotate: 0deg;
    width: 40px;
  }

  5% {
    width: 76px;
  }

  50% {
    rotate: 180deg;
    width: 76px;
    translate: 240px -40px;
  }

  100% {
    rotate: 360deg;
    width: 76px;
    translate: 505px -35px;
    scale: 0.6;
  }
}

@keyframes coin1back {
  0% {
    rotate: 360deg;
    width: 76px;
    translate: 500px -40px;
    scale: 0.6;
  }

  50% {
    width: 76px;
    rotate: 180deg;
    scale: 1;
  }

  95% {
    width: 76px;
  }

  100% {
    rotate: 0deg;
    width: 40px;
  }
}

@keyframes coin2 {
  0% {
    width: 40px;
  }

  100% {
    width: 0px;
    translate: 40px;
  }
}

@keyframes coin2back {
  0% {
    width: 0px;
    translate: 40px;
  }

  100% {
    width: 40px;
    translate: 0px;
  }
}

.hero-left.active:before {
  animation: 1s coin1 forwards linear;
}

.hero-left.active:after {
  animation: 0.3s coin2 forwards linear;
}

.hero-left.back:before {
  animation: 0.6s coin1back forwards linear;
}

.hero-left.back:after {
  animation: 0.3s coin2back forwards linear;
}

.buyin-form-row label input::placeholder {
  color: #fff;
}

section#whales {
  margin: 0;
}

section#presale {
  background: #0d4db2;
  padding: 30px 0;
  border-radius: 80px;
}

.presale-pack-row.presale-pack-values {
  border-bottom: 1px dashed #ffffff4d;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.presale-pack-row {
  padding: 8px 10px;
  gap: 10px;
  border-radius: 3px;
}

.presale-pack-row>div:first-child {
  max-width: 160px;
  width: 100%;
  flex: auto;
  font-weight: 800;
}

.presale-pack-row>div {
  flex: 1;
}

.resale-pack-title {
  font-size: 14px;
}

span.mob-label {
  display: none;
}

.presale-pack-row.presale-pack-heading {
  padding-bottom: 19px;
  border-bottom: 1px dashed #fff;
  align-items: flex-end;
}

.presale-pack-row.presale-pack-heading>div:first-child span:first-child {
  font-size: 28px;
  font-weight: 700;
  font-family: "Placard";
  margin-right: 6px;
  position: relative;
  top: 4px;
  text-transform: uppercase;
}

.presale-pack-row>div:first-child span+span {
  font-size: 12px;
  padding: 1px 4px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.presale-pack-row>div:first-child span+span.active {
  background: #14a645;
}

.presale-pack-item .sold {
  display: inline-block;
  color: white;
  background-color: red;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.presale-pack-row>div:first-child span+span.reserved {
  background: #ab7f39;
}

.presale-pack:not(:first-child) {
  margin-top: 20px;
}

.presale-pack-row.inactive {
  color: rgba(255, 255, 255, 0.6);
}

.presale-pack-row.inactive .presale-pack-item>span:not(.mob-label):not(.sold) {
  color: #ffffff;
}

.presale-pack-row.presale-pack-values:not(.inactive):hover {
  background: #ffffff1a;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-text {
  color: white;
  font-size: 12px;
  text-align: center;
}

.payment-loading-text {
  color: white;
  font-size: 20px;
  text-align: center;
}

.payment-loading-text-warning {
  color: yellow;
  font-size: 20px;
  text-align: center;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Notifications */
.notification {
  position: fixed;
  /* top: 20px; */
  right: 20px;
  padding: 15px 25px;
  border-radius: 4px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  min-width: 300px;
  max-width: 400px;
  min-height: 55px;
  /* Fixed hieght for consistency spacing */
  display: flex;
  align-items: center;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-message {
  margin-right: 15px;
  font-size: 14px;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
  color: #666;
  position: absolute;
  right: 25px;
  top: 5px;
}

.notification.success {
  background: #4caf50;
  color: white;
}

.notification.error {
  background: #f44336;
  color: white;
}

.notification.info {
  background: #2196f3;
  color: white;
}

.notification-close {
  color: inherit;
  opacity: 0.7;
}

.notification-close:hover {
  opacity: 1;
}

#successToast {
  top: 20px;
}

.wallet-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.header-account {
  display: none;
  margin-left: 10px;
}

.header2 {
  display: none;
  margin-left: 10px;
}

.header-account-icon {
  background: transparent;
  padding: 0;
  margin: 0;
}

.header-account-icon a {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  display: block;
}

.avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  background: transparent;
}

.avatar-img1 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  background: transparent;
}

.progress-bar-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 25px;
  overflow: hidden;
  margin-top: 5px;
  border-radius: 15px;
  background-color: #211d24;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset;
}

.progress-fill {
  position: absolute;
  height: 100%;
  width: 85%;
  /* Dynamic value based on your progress */
  background: linear-gradient(to right, #7d67ea, #aadc9f);
  border-radius: 15px;
  top: 0;
  left: 0;
  z-index: 1;
  transition: width 0.5s ease-in-out;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* color: #fff726; */
  font-weight: 600;
  font-size: 12px;
  z-index: 2;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  pointer-events: none;
  /* Optional: ensures text doesn't interfere with mouse events */
}

.content-wrapper {
  display: flex;
  flex-direction: column;
}

.popup-btn-details {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #007bff;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  width: min(650px, 90vw);
  z-index: 1000;
  border: 1px solid #ccc;
}

.popup-content-details {
  position: relative;
  padding-top: 1.75rem;
}

button.close-btn-x {
  background: url(../assets/close.svg) no-repeat center center;
  background-size: contain;
  width: 48px;
  height: 48px;
  text-indent: -9999999px;
  border: none;
  margin: 2px -49px 10px auto;
  display: block;
  transition: 0.3s;
  position: absolute;
  right: 50px;
  top: -11px;
  color: black;
  border-radius: 50%;
  /* <-- Makes it circular */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

button.close-btn-x:hover {
  background-color: rgba(74, 111, 169, 0.5);
  transform: rotate(180deg);
}

.popup-btn-details h4 {
  margin-top: 0;
  font-size: 1.5rem;
  /* Default for desktops */
  line-height: 1.3;
  font-weight: 600;
}

.popup-btn-details strong {
  font-weight: 700;
  color: #eee;
  font-size: clamp(0.875rem, 2.2vw, 1rem);
}

.popup-btn-details ul {
  padding-left: 1.5rem;
  padding-top: 0.75rem;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.5;
}

.popup-btn-details li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.overlay-details {
  display: none;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup-buttons {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}

/* ------------------------ */
/* 📱 Mobile (max 600px)    */
/* ------------------------ */
@media screen and (max-width: 600px) {
  .popup-btn-details {
    padding: 1.25rem;
    width: 95vw;
  }

  .popup-btn-details h4 {
    font-size: 1.25rem !important;
    /* ~20px */
  }

  .popup-btn-details strong {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }

  .popup-btn-details ul {
    padding-left: 1rem;
    font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  }

  .close-btn-x {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}

/* ------------------------ */
/* 📱 Tablet (601–768px)    */
/* ------------------------ */
@media screen and (min-width: 601px) and (max-width: 768px) {
  .popup-btn-details {
    padding: 1.5rem;
    width: 90vw;
  }

  .popup-btn-details h4 {
    font-size: 1.4375rem !important;
    /* ~23px */
  }

  .popup-btn-details strong {
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  }

  .popup-btn-details ul {
    padding-left: 1.25rem;
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  }

  .close-btn-x {
    font-size: clamp(1.125rem, 2.8vw, 1.375rem);
  }

  .counter-label {
    margin: 6px 0 12px;
    font-size: clamp(14px, 2.8vw, 18px);
    color: #04f204;
    /* your brand green */
    font-weight: 600;
    /* ✅ stronger emphasis */
  }

}

/* ------------------------ */
/* 💻 Laptop (769–1024px)   */
/* ------------------------ */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .popup-btn-details {
    padding: 1.75rem;
    width: min(600px, 85vw);
    /* background-color: red; */
    /* Uncomment to test if query is working */
  }

  .popup-btn-details h4 {
    font-size: 1.5625rem !important;
    /* ~25px */
  }

  .popup-btn-details strong {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }

  .popup-btn-details ul {
    padding-left: 1.5rem;
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  }

  .close-btn-x {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  .counter-label {
    margin: 8px 0 14px;
    font-size: clamp(15px, 2.2vw, 20px);
    color: #04f204;
    font-weight: 600;
    /* ✅ stronger emphasis */
  }
}

.ref-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: white;
}

.ref-popup-content {
  color: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 650px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* background: url(../assets/lines.svg) repeat 50% 50% #0c4db3; */
  background-color: #007bff;
  border: 1px solid #ccc;
}

.ref-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: url(../assets/close.svg) no-repeat center center;
  background-size: contain;
  border: none;
  border-radius: 50%;

  cursor: pointer;

  transition: 0.3s;
  text-indent: -9999px;
  display: block;
}

.ref-popup-h2 {
  color: white;
  font-size: 27px;
  text-align: center;
  margin-bottom: 15px;
}

.ref-close-btn:hover {
  background-color: rgba(74, 111, 169, 0.5);
  transform: rotate(180deg);
  /* 🔹 */
}

.ref-popup-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  margin-top: 5px;
}

.ref-popup-content p {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.ref-section .popup-h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ref-section {
  margin-bottom: 24px;
}

.ref-section p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  padding-left: 30px;
  color: rgb(255, 255, 255);
}

.opt-out-message {
  text-align: center;
}

.opt-out-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 30px;
}

.opt-out-buttons .btn,
.opt-out-buttons .btn--alt {
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 10px;
  min-width: 110px;
  text-align: center;
  white-space: nowrap;
}

/* Responsive CSS */
@media (max-width: 768px) {
  .ref-popup-content {
    padding: 24px 12px;
    max-width: 90%;
    border-radius: 14px;
  }

  .ref-popup-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .ref-popup-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .ref-popup-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .ref-section p {
    font-size: 14px;
  }

  .ref-close-btn {
    font-size: 24px;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .ref-open-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ref-popup-content {
    /* padding: 12px 6px; */
    width: 97vw;
    border-radius: 10px;
  }

  .ref-popup-content h2 {
    font-size: 16px;
    margin-top: 18px;
    font-size: 16px;
  }

  .ref-popup-content p {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .ref-popup-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .ref-section p {
    font-size: 12px;
  }

  .ref-close-btn {
    font-size: 20px;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
  }

  .ref-open-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

.popup-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.info-box {
  background: repeat 50% 50% #007bff;
  padding: 40px;
  border-radius: 15px;
  max-width: 700px;
  color: white;
  width: 90%;
  border: whitesmoke 1px solid;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: scroll;
  /* ensures scroll is available */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.info-box::-webkit-scrollbar {
  display: none;
}

.info-box-h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 32px;
}

.info-box p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.7;
}

.exit-wrapper {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  background-color: transparent;
  z-index: 10;
}

button.exit-popup {
  width: 48px;
  height: 48px;
  background: url(../assets/close.svg) no-repeat center center;
  background-size: contain;
  border: none;
  text-indent: -9999999px;
  margin: 2px -49px 10px auto;
  display: block;
  transition: 0.3s;
  position: absolute;
  right: 42px;
  top: -15px;
  color: black;
  cursor: pointer;
  border-radius: 50%;
}

button.exit-popup:hover {
  transform: rotate(180deg);
  background-color: rgba(74, 111, 169, 0.5);
}

.info-box h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.info-box ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 600;
}

.info-box ul li {
  margin: 17px 0;
}

.welcome-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 1rem;
  border: 9px solid #007bff;
  border-radius: 20px;
  text-align: center;
  z-index: 1000;
  width: 90%;
  max-width: 400px;
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow: auto;
  pointer-events: auto;
}

.welcome-modal img {
  width: 30vw;
  /* Scale image with viewport width */
  max-width: 250px;
  /* Cap image size */
  min-width: 80px;
  /* Minimum image size for small screens */
  margin: 0.5rem auto;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  display: block;
  border-radius: 55%;
  object-fit: cover;
}

.welcome-modal h2 {
  font-size: 2rem;
  color: #494c56;
  text-transform: none;
  margin-top: 0.25rem;
  line-height: 1.2;
}

.welcome-modal p {
  font-size: 0.9rem;
  color: #413d3d;
  margin-bottom: 0rem;
  line-height: 1.3;
  padding: 6px 6px 6px 6px;
  font-weight: 500;
}

.welcome-modal p span {
  color: #270469;
  font-weight: 900;
}

.welcome-modal .desc-text {
  color: #000;
  font-size: 0.9rem;
  /* Smaller for description text */
  padding: 0.3rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.inviterNamediv {
  color: #4d4848;
  font-size: 0.8125rem;
  /* Scales with root font size */

  font-weight: 600;
  line-height: 1.3;
}

#inviterName {
  margin-top: 0.0625rem;
  color: #4d4848;
}

.welcome-modal strong {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}

.welcome-modal button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0.625rem 3rem;
  /* Adjusted for smaller screens */
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 1rem 0 0.75rem;
}

.welcome-modal button:hover {
  background: #0056b3;
}

/* Media query for small screens (e.g., mobile ≤600px) */
@media screen and (max-width: 600px) {
  .welcome-modal {
    width: 95%;
    /* Slightly wider on small screens */
    padding: 0.75rem;
    /* Reduced padding */
    max-width: 547px;
    /* Smaller max width */
    min-width: 200px;
  }

  .welcome-modal img {
    /* width: 25vw; */
    /* Slightly smaller image */
    max-width: 300px;
    min-width: 70px;
  }

  .welcome-modal h2 {
    font-size: 1.8rem;
    /* Smaller heading */
  }

  .welcome-modal p {
    font-size: 0.85rem;
    /* Smaller text */
    font-weight: 700;
  }

  .welcome-modal .desc-text {
    font-size: 0.8rem;
    /* Smaller description */
  }

  .inviterNamediv {
    font-size: .9rem;
    font-weight: 800;
  }

  .welcome-modal strong {
    font-size: .8rem;
  }

  .welcome-modal button {
    padding: 0.5rem 2.5rem;
    /* Smaller button */
    font-size: 0.75rem;
  }
}

/* Media query for medium screens (e.g., tablets 601px–768px) */
@media screen and (min-width: 601px) and (max-width: 768px) {
  .welcome-modal {
    width: 90%;
    padding: 1rem;
    max-width: 690px;
  }

  .welcome-modal img {
    width: 28vw;
    max-width: 250px;
  }

  .welcome-modal h2 {
    font-size: 2.5rem;
  }

  .welcome-modal p {
    font-size: 1rem;
    font-weight: 600;
  }

  .welcome-modal .desc-text {
    font-size: 0.9rem;
  }

  .inviterNamediv {
    font-size: 1rem;
    font-weight: 800;
  }

  .welcome-modal strong {
    font-size: 1rem;
  }

  .welcome-modal button {
    padding: 0.5625rem 2.5rem;
    font-size: 0.8125rem;
  }
}

/* Media query for large screens (e.g., desktops >768px) */
@media screen and (min-width: 769px) {
  .welcome-modal {
    width: 85%;
    max-width: 570px;
    padding: 1.125rem;
  }

  .welcome-modal img {
    /* width: 30vw; */
    /* min-width: 250px; */
    max-width: 250px;
  }

  .welcome-modal h2 {
    font-size: 2.5rem;
  }

  .welcome-modal p {
    font-size: 1rem;
    font-weight: 700;
  }

  .welcome-modal .desc-text {
    font-size: 0.9rem;
  }

  .inviterNamediv {
    font-size: 1.2rem;
    font-weight: 800;
  }

  .welcome-modal strong {
    font-size: 15px;
  }

  .welcome-modal button {
    padding: 0.625rem 2.5rem;
    font-size: 0.875rem;
  }
}

#registerbtn {
  width: 124px;
  border-radius: 50px;
  font-family: Inter;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #aadc9f 0%, #8e94cc 100%);
}

.wallet-popup-btn {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-top: 19px;
  margin-bottom: 8px;
}

.message-wallet-text {
  margin-top: 10px;
}

.popup-alert-wal {
  height: 250px;
}

#userStatsPopup {
  display: none;
  position: fixed;
  top: 35%;
  left: 77%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  width: 90%;
  max-width: 400px;
  z-index: 9999;
  font-family: "Arial", sans-serif;
}

#dropdown-popup {
  display: none;
  position: fixed;
  top: 12%;
  right: 12%;
  transform: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  width: 90%;
  max-width: 390px;
  z-index: 9999;
  font-family: "Arial", sans-serif;
  transition: 0.3s ease-in-out;
}

.dropdown-content {
  position: relative;
}

@media (min-width: 2560px) {
  #userStatsPopup {
    top: 35%;
    width: 95%;
    max-width: 420px;
    padding: 18px;
  }
}

@media (min-width: 1920px) {
  #userStatsPopup {
    top: 35%;
    width: 95%;
    max-width: 420px;
    padding: 18px;
  }
}

@media (min-width: 1440px) {
  #userStatsPopup {
    position: absolute;
    top: 328px;
    width: 95%;
    max-width: 420px;
    padding: 18px;
  }

  .info-box-h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .info-box {
    padding: 35px;
  }

  .info-box p {
    font-size: 17px;
  }

  .info-box ul {
    font-size: 16.5px;
  }
}

@media (max-width: 1024px) {
  #userStatsPopup {
    top: 40%;
    left: 50%;
    width: 95%;
    max-width: 400px;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  #userStatsPopup {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 400px;
    padding: 15px;
  }

  .info-box p {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  #userStatsPopup {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
  }
}

.user-stats-dropdown h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  color: #1c1c1c;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-row1 {
  display: flex;
  align-items: center;
  background-color: #eef4ff;
  padding: 15px 12px;
  border-radius: 1px;
  justify-content: space-between;

}

.stat-icon1 img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
  border-radius: 50%;
}

.stat-label1 {
  flex: 1;
  font-size: 33px;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-family: "Placard";
  text-align: center;
}

.stat-value1 {
  font-size: 17px;
  font-weight: bold;
  color: #0a45a4;
  text-align: center;
  font-weight: 700;
  font-family: "Placard";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  display: block;
}


.stat-row {
  display: flex;
  align-items: center;
  background-color: #eef4ff;
  padding: 15px 12px;
  border-radius: 1px;
  justify-content: space-between;
  gap: 5px;

}

.stat-icon img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.stat-label {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-family: "Placard";
  text-align: start;
}

.stat-value {
  font-size: 21px;
  font-weight: bold;
  color: #0a45a4;
  text-align: right;
  font-weight: 700;
  font-family: "Placard";
}

.close-popup {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #0050c8;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease;
}

.info-row {
  border-radius: 20px;
  position: relative;
  padding: 10px 50px 10px 10px;
  margin: 8px 0 12px;
  text-align: center;
  background: #00000033;
  border: 2px dashed #323232;
  overflow: hidden;
}

.info-row .text {
  font-weight: bold;
  word-wrap: break-word;
  white-space: normal;
}

.info-row .highlight {
  color: #ffcc00;
}

.info-row img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  width: 40px;
  height: 40px;
}

.reservation-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.1);
  /* Soft blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#quickiePurchasePopup .reservation-popup-box {
  line-height: 1.3;
}

#quickiePurchasePopup li {
  margin: 4px 0;
}

#quickiePurchasePopup h3 {
  margin-bottom: 12px;
}

#quickiePurchasePopup .purchase-details {
  margin-top: 8px;
}

.reservation-popup-box h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 20px;
}

.reservation-popup-box p {
  color: #ffffff;
  font-size: 16px;
  margin: 15px 0;
}

.reservation-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.1);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  overflow-y: auto;
}

/* Base (mobile-first) */
.reservation-popup-box {
  background: #0a66ff;
  /* or your gradient */
  border-radius: 12px;
  border: 1px solid #ffffff;
  padding: 20px;
  width: 90%;
  /* take most of mobile width */
  max-width: 420px;
  /* never too wide on small */
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: slideDown 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

/* Tablets */
@media (min-width: 768px) {
  .reservation-popup-box {
    width: 80%;
    max-width: 500px;
    padding: 24px;
    padding-bottom: 30px;
    border-radius: 16px;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  .reservation-popup-box {
    width: 60%;
    /* leave breathing room */
    max-width: 605px;
    padding: 28px;
    border-radius: 20px;
  }
}

/* Large desktops / wide screens */
@media (min-width: 1440px) {
  .reservation-popup-box {
    width: 50%;
    max-width: 700px;
    padding: 32px;
    border-radius: 20px;
  }
}

.reservation-popup-box::-webkit-scrollbar {
  width: 2px;
}

.reservation-popup-box::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.action-btn-group {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.reservation-popup-box h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 30px;
}

.reservation-popup-box p {
  color: #ffffff;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0%;
  margin-top: clamp(8px, 1.5vw, 15px);
  /* spacing between blocks */
}

.geo-overlay,
.connectionfailed-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 102, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}


.geo-popup-box,
.connectionfailed-popup-box {
  z-index: 10000;
  background: #0a66ff;
  border-radius: 12px;
  border: 1px solid #ffffff;
  padding: 20px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0);
  position: relative;
  animation: slideDown 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  font-family: sans-serif;
}


.geo-popup-box h3,
.connectionfailed-popup-box h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.2;
  align-self: center;
  text-align: center;
}


.geo-popup-box p,
.connectionfailed-popup-box p {
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.geo-popup-box ul,
.connectionfailed-popup-box ul {
  margin: 10px 0 15px 20px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 18px;
}

.geo-popup-box ul li,
.connectionfailed-popup-box ul li {
  margin-bottom: 6px;
  text-align: left;
}


.geo-close-btn,
.connectionfailed-close-btn {
  position: absolute;
  top: 2px;
  right: 20px;
  font-size: 35px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
}

#geoFencePopupOkBtn,
#connectionFailedCancelBtn,
#connectionFailedRetryBtn {
  width: 120px;
  height: 50px;
  border-radius: 30px;
  padding: 10px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #aadc9f 0%, #8e94cc 100%);
  border: none;
  cursor: pointer;
  color: #202223;
  transition: background 0.3s;
}

#geoFencePopupOkBtn:hover,
#connectionFailedCancelBtn:hover,
#connectionFailedRetryBtn:hover {
  background: radial-gradient(#fff726, #aadc9f);
}

.geo-action-btn-group,
.connectionfailed-action-btn-group {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  gap: 20px;
}

.geo-action-btn-group .btn,
.connectionfailed-action-btn-group .btn {
  display: flex;
  justify-content: center;
}

.connectionfailed-popup-box {
  align-items: center;
}


.geo-popup-box::-webkit-scrollbar {
  width: 2px;
}

.geo-popup-box::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}


.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}

.timer-label {
  font-size: 14px;
  color: white;
  margin-bottom: 5px;
  font-weight: 600;
}

.timer-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  min-width: 60px;
  text-align: center;
}

.colon {
  font-size: 36px;
  color: white;
  padding: 0 5px;
  display: flex;
  align-items: center;
}

.action-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
  /* better spacing between buttons */
  flex-wrap: wrap;
  /* allow wrapping on smaller screens */
}

.action-btn .btn button,
.action-btn .btn a {
  padding: 11px 18px 12px;
  color: #202223;
  display: inline-block;
  font-size: 18px;
  background: radial-gradient(#aadc9f, #aadc9f, #7d67ea);
  font-weight: 700;
  border-radius: 30px;
  font-family: "Placard";
  border: none;
  transition: 0.3s;
  width: 200px;
  /* full width of container */
  text-align: center;
  box-sizing: border-box;
  /* prevent padding from increasing width */
  cursor: pointer;
}

.tos-row {
  text-align: center;
  padding: 10px;
  margin-bottom: 16px;
  font-size: 18px;
}


#tosCheckbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: #126dfe;
  cursor: pointer;
  margin-bottom: -5px;
  border: 1px solid white;
}

#tosCheckbox:checked {
  background-color: white;
}

#tosCheckbox:checked::after {
  content: "✔";
  color: #126dfe;
  font-size: 14px;
  display: block;
  text-align: center;
}

@media (max-width: 538px) {
  .action-btn {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

body.blur {
  filter: blur(6px);
  pointer-events: none;
  /* Prevent background interaction */
  user-select: none;
}

@media (max-width: 480px) {
  #userStatsPopup {
    padding: 15px;
  }

  .stat-label {
    font-size: 14px;
  }

  .stat-value {
    font-size: 15px;
  }

  .stat-icon img {
    width: 28px;
    height: 28px;
  }
}

.dialogcommingsoon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.dialogcommingsoon-popup {
  position: relative;
  background: #007bff;
  color: #fff;
  border-radius: 16px;
  padding: clamp(20px, 5vw, 50px);
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #ffffff;
}

.bnb-popup-title {
  font-size: clamp(10px, 6vw, 31px);
}

@media (max-width: 600px) {
  .bnb-popup-title {
    padding-top: 40px;
  }
}

.bnb-popup-btn {
  min-width: 100px;
  border-radius: 48px;
  padding: 16px;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #aadc9f 0%, #8e94cc 100%);
  color: #202223 !important;
  display: inline-block;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}

.bnb-popup-btn:hover {
  background: radial-gradient(#fff726, #aadc9f);
}

.bnb-logo-container {
  width: 90px;
  height: 90px;
  margin: 10px auto 10px auto;
}

.dialogcommingsoon-popup p {
  text-align: center;
  padding: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}


.dialogcommingsoon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  background: url(../assets/close.svg);
  border: none;
  text-indent: -9999999px;
  cursor: pointer;
  transition: 0.3s;
}

.dialogcommingsoon-close:hover {
  transform: rotate(180deg);
}

.show {
  display: block;
}

.ref-badges {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ref-badges img {
  width: 44px;
  height: 50px;
  object-fit: contain;
  /* margin: -10px; */
  padding-bottom: 0px;

  margin-top: -10px;
  margin-left: -24px;
  margin-right: -16px;
}

/* Large screens */
@media (min-width: 1280px) {
 

  .counter-label {
    margin: 10px 0 18px;
    font-size: clamp(18px, 1.8vw, 24px);
    color: #04f204;
    font-weight: 700;
    /* ✅ stronger emphasis */
  }

}

@media (min-width: 767px) {
  .buy-buybox {
    width: 420px;
  }
}

.reserved-sections {
  margin-top: 20px;
}

.meta-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  color: #ffffff;
  max-width: 570px;
  width: 90%;
  max-height: 90vh;
  height: auto;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 30px;
  overflow-y: auto;
  background-color: #007bff;
}

.meta-popup-inner h4 {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  font-family: "Placard";
  text-transform: uppercase;
}

.meta-popup::-webkit-scrollbar {
  display: none;
}

.meta-popup-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 10px;
  text-align: left;
}

.metamask-message p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.meta-popup-inner ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
  counter-reset: steps-counter;
  display: flex;
  flex-direction: column;
}

.meta-popup-inner li {
  counter-increment: steps-counter;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.meta-popup-inner li::before {
  content: counter(steps-counter);
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background-color: #4a6fa9;
  color: #d0e1ff;
  font-weight: bold;
  font-size: 14px;
}

.meta-popup-inner a {
  color: #f7ca58;
  text-decoration: none;
}

.meta-button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border: 1px solid #4a6fa9;
  border-radius: 50%;
  background: transparent;
  color: #d0e1ff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.close-popup:hover {
  background-color: rgba(74, 111, 169, 0.5);
}

@media (max-width: 600px) {
  .meta-popup {
    width: 95vw;
    max-height: 85vh;
    padding: 25px;
    gap: 20px;
  }

  .meta-popup-inner {
    gap: 20px;
  }

  .metamask-message p,
  .meta-popup-inner li {
    font-size: 14px;
  }

  .meta-button-container {
    flex-direction: row;
    gap: 10px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Defines the forward rotation animation for the background ring */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Defines the counter-rotation animation for the inner content */
@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #126dfe;
  z-index: 99999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  opacity: 1;
  visibility: visible;
}

.loader-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../assets/loading-quickie.png") no-repeat center/cover;
  text-align: center;
  animation: spin 2s linear infinite;
  top: 10px;
  position: relative;
}

.loader-inner {
  width: 60%;
  height: 60%;
  object-fit: contain;
  animation: spin-reverse 2s linear infinite;
}

.mb-6px {
  margin-bottom: 6px;
}

.rotated-wrapper {
  transform: rotate(-30deg);
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Defines the bouncing animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) rotate(-30deg);
  }

  50% {
    transform: translateY(-20px) rotate(-30deg);
  }
}

.rotated-wrapper {
  animation: bounce 3s ease-in-out infinite;
}

@keyframes loading-dots {
  0% {
    content: ".";
  }

  33% {
    content: "..";
  }

  66%,
  100% {
    content: "...";
  }
}

.loading-text::after {
  content: ".";
  animation: loading-dots 1.5s linear infinite;
}

.package-select-data-item-template {
  line-height: 0.8;
}

/* Only for the overlay loader */
.overlay-loader-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../assets/loading-quickie.png") no-repeat center/cover;
  text-align: center;
  animation: spin 2s linear infinite;
  position: relative;
  top: 0;
}


.tooltip,
.mvtooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.4) 40%, transparent 40%);
  background-position: bottom;
  background-size: 8px 1px;
  background-repeat: repeat-x;
  padding-bottom: 2px;
}


.tooltip .tooltiptext,
.mvtooltip .mvtooltiptext {
  text-transform: none;
  font-family: "Open Sans";
  visibility: hidden;
  width: 280px;
  max-width: 90vw;
  white-space: normal;
  background-color: #112799;
  color: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 90vw;
  word-wrap: break-word;
  box-sizing: border-box;
}


.tooltip .tooltiptext::after,
.mvtooltip .mvtooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #112799 transparent transparent transparent;
}

.tooltip:hover .tooltiptext,
.mvtooltip:hover .mvtooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip-no-underline,
.mvtooltip-no-underline {
  position: relative;
  display: inline-block;
  cursor: help;
  padding-bottom: 2px;
}

.tooltip-no-underline .tooltiptext,
.mvtooltip-no-underline .mvtooltiptext {
  text-transform: none;
  font-family: "Open Sans";
  visibility: hidden;
  width: 280px;
  background-color: #112799;
  color: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 52px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.tooltip-no-underline .tooltiptext::after,
.mvtooltip-no-underline .mvtooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 120px;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #112799 transparent transparent transparent;
}

.tooltip-no-underline:hover .tooltiptext,
.mvtooltip-no-underline:hover .mvtooltiptext {
  visibility: visible;
  opacity: 1;
}


.tooltip-no-underline-below,
.mvtooltip-no-underline-below {
  position: relative;
  display: inline-block;
  cursor: help;
  padding-bottom: 2px;
}

.tooltip-no-underline-below .tooltiptext,
.mvtooltip-no-underline-below .mvtooltiptext {
  text-transform: none;
  font-family: "Open Sans";
  visibility: hidden;
  width: 280px;
  background-color: #112799;
  color: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1000;
  top: 125%;
  left: 120px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.tooltip-no-underline-below .tooltiptext::after,
.mvtooltip-no-underline-below .mvtooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 120px;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #112799 transparent;
}

.tooltip-no-underline-below:hover .tooltiptext,
.mvtooltip-no-underline-below:hover .mvtooltiptext {
  visibility: visible;
  opacity: 1;
}

.transaction-success-details {
  color: #fff;
  margin: 15px 0;
}

.details {
  width: 100%;
}

.details .row {
  display: flex;
  justify-content: space-between;
}

.details .row p {
  margin: 0;
}

.setTitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
}

.subTitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.wallet-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: left;
}

.coin-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.coin-container .total-text {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}

.coin-container .coins-text {
  font-size: 60px;
  font-weight: bold;
  margin: 18px 0 0 0;
  font-family: "Technology";
}

.popup-instructions {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  padding: 15px 0
}


.success-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 25px;
  font-weight: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Hover animation */
.success-close-btn:hover {
  color: #ffffff;
  /* text turns red */
  transform: rotate(90deg);
  /* rotate effect */
}

#quickiePurchasePopup .warning {
  color: yellow;
  font-weight: bold;
}

.reservation-popup-overlay1 .sub-title-h1 {
  margin: 0;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: .2px;
}

.reservation-popup-overlay1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.1);
  /* Soft blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.reservation-popup-box1 {
  background: #126dfe;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 30px;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: slideDown 0.3s ease-out;

  max-height: 90vh;
  /* Limit height to viewport */
  overflow-y: auto;
  /* Internal scroll if content is long */
}

.details1 {
  display: grid;
  gap: 20px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .12);
}

.details1 dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  /* left column auto-sized, right column takes remaining space */
  row-gap: 6px;
  column-gap: 30px;
  align-items: center;
  font-size: clamp(12px, 3.6vw, 19px);
}

/* Left column: single line, no wrapping */
.details1 dt {
  color: var(--ink-dim);
  font-weight: 500;
  word-break: break-word;
  /* just in case */
  font-size: 19px;
  margin: 0;
  white-space: nowrap;
  /* 🚫 never wrap */
  overflow: hidden;
  /* hide overflow if text is too long */
  text-overflow: ellipsis;
  /* … for overflow */
}

/* Right column: wraps normally */
.details1 dd {
  font-size: 19px;
  margin: 0;
  font-weight: 500;
  white-space: normal;
  /* ✅ allow wrapping */
  word-wrap: break-word;
  /* ✅ break long text if needed */
  overflow-wrap: anywhere;
  /* ✅ modern fallback */
  text-align: right;
  /* ✅ right justify values */
}

.details1 dd.flexed {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* ✅ push icon + text to right */
  gap: 6px;
}

.details1 dd.flexed img {
  width: 24px;
  /* ✅ fixed width */
  height: 1em;
  /* ✅ match text size */
  vertical-align: middle;
  margin-right: 6px;
  /* ✅ spacing before text */
  margin-left: 6px;
  /* spacing before/after text */
  flex-shrink: 0;
}

.subTitle1 {
  padding: 14px 16px 8px;
  text-align: center;
}

.counter-wrap {
  padding: 12px;
  text-align: center;
}

.counter-label {
  margin: 8px 0 16px;
  font-size: clamp(16px, 2.5vw, 20px);
  /* ✅ bigger on desktop, still responsive */
  color: #04f204;
  /* ✅ soft golden yellow for visibility on blue */
  font-weight: 600;
  /* ✅ stronger emphasis */
}

.counter {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(26px, 10vw, 40px);
  font-weight: 800;
  color: #0a66ff;
  background: #fff;
  border-radius: 12px;
  padding: 6px 12px;
  display: inline-block;
  min-width: 8ch;
  /* keep width stable for 0–270,000 (7 chars incl. comma) */
  line-height: 1.1;
}

.actions {
  padding: 10px 12px 14px;
  text-align: center;
  margin-top: 20px;
  /* ✅ increase this value as needed */
}


.addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px;

}

.details1 dd.addr {
  font-size: 15px;
}

.sub {
  margin: 6px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.3;
}

/* Base styles for desktop or larger screens */

/* Styles for smaller screens and mobile devices */
@media (max-width: 768px) {
  .reservation-popup-overlay1 .sub-title-h1 {
    font-size: 24px;
    letter-spacing: 0;
  }


  .details1 dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    /* left column auto-sized, right column takes remaining space */
    row-gap: 6px;
    column-gap: 20px;
    font-size: 14px;
    align-items: center;
    font-size: clamp(12px, 3.6vw, 14px);
  }

  /* Left column: single line, no wrapping */
  .details1 dt {
    color: var(--ink-dim);
    font-weight: 500;
    word-break: break-word;
    /* just in case */
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
    /* 🚫 never wrap */
    overflow: hidden;
    /* hide overflow if text is too long */
    text-overflow: ellipsis;
    /* … for overflow */
  }

  /* Right column: wraps normally */
  .details1 dd {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    white-space: normal;
    /* ✅ allow wrapping */
    word-wrap: break-word;
    /* ✅ break long text if needed */
    overflow-wrap: anywhere;
    /* ✅ modern fallback */
    text-align: right;
    /* ✅ right justify values */
  }

  .details1 dd.flexed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* ✅ push icon + text to right */
    gap: 6px;
  }

  .details1 dd.flexed img {
    width: 24px;
    /* ✅ fixed width */
    height: 1em;
    /* ✅ match text size */
    vertical-align: middle;
    margin-right: 6px;
    /* ✅ spacing before text */
    margin-left: 6px;
    /* spacing before/after text */
    flex-shrink: 0;
  }

  .details1 dd.addr {
    font-size: 15px;
  }

  .subTitle1 {
    padding: 10px 12px;
  }

  .counter-wrap {
    padding: 8px;
  }

  .counter-label {
    margin: 6px 0 12px;
    font-size: clamp(14px, 2.8vw, 18px);
    color: #04f204;
    /* ✅  */
    font-weight: 600;
    /* ✅ stronger emphasis */
  }

  .counter {
    font-size: 32px;
    min-width: 6ch;
  }

  .sub {
    font-size: 14px;
  }
}


@media (max-width: 480px) {
  .success-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    font-size: 22px;
  }

  .reservation-popup-overlay1 .sub-title-h1 {
    font-size: 25px;
  }

  .reservation-popup-box1 {
    padding: 12px;
    max-width: 99%;
    max-height: 72vh;
  }

  .details1 dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    /* left column auto-sized, right column takes remaining space */
    row-gap: 4px;
    column-gap: 10px;
    font-size: 19px;
    align-items: center;
    font-size: clamp(10px, 3.6vw, 12px);
  }

  /* Left column: single line, no wrapping */
  .details1 dt {
    color: var(--ink-dim);
    font-weight: 500;
    word-break: break-word;
    /* just in case */
    font-size: 11px;
    margin: 0;
    white-space: nowrap;
    /* 🚫 never wrap */
    overflow: hidden;
    /* hide overflow if text is too long */
    text-overflow: ellipsis;
    /* … for overflow */
  }

  /* Right column: wraps normally */
  .details1 dd {
    font-size: 11px;
    margin: 0;
    font-weight: 500;
    white-space: normal;
    /* ✅ allow wrapping */
    word-wrap: break-word;
    /* ✅ break long text if needed */
    overflow-wrap: anywhere;
    /* ✅ modern fallback */
    text-align: right;
    /* ✅ right justify values */
  }

  .details1 dd.flexed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* ✅ push icon + text to right */
    gap: 6px;
  }

  .details1 dd.flexed img {
    width: 24px;
    /* ✅ fixed width */
    height: 1em;
    /* ✅ match text size */
    vertical-align: middle;
    margin-right: 6px;
    /* ✅ spacing before text */
    margin-left: 6px;
    /* spacing before/after text */
    flex-shrink: 0;
  }

  .details1 dd.addr {
    font-size: 11px;
  }

  .subTitle1 {
    padding: 8px 10px;
  }

  .counter {
    font-size: 28px;
    min-width: 5ch;
  }

  .counter-label {
    margin: 6px 0 10px;
    font-size: clamp(13px, 3.6vw, 16px);
    color: #33ff33;
    font-weight: 600;
    /* ✅ stronger emphasis */
  }


}

@media (max-width: 380px) {
  .success-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    font-size: 22px;
  }

  .reservation-popup-overlay1 .sub-title-h1 {
    font-size: 22px;
  }

  .reservation-popup-box1 {
    padding: 13px;
    max-width: 100%;
    max-height: 70vh;
  }

  .details1 dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    /* left column auto-sized, right column takes remaining space */
    row-gap: 4px;
    column-gap: 8px;
    font-size: 12px;
    align-items: center;
    font-size: clamp(12px, 3.6vw, 19px);
  }

  /* Left column: single line, no wrapping */
  .details1 dt {
    color: var(--ink-dim);
    font-weight: 500;
    word-break: break-word;
    /* just in case */
    font-size: 11px;
    margin: 0;
    white-space: nowrap;
    /* 🚫 never wrap */
    overflow: hidden;
    /* hide overflow if text is too long */
    text-overflow: ellipsis;
    /* … for overflow */
  }

  /* Right column: wraps normally */
  .details1 dd {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    white-space: normal;
    /* ✅ allow wrapping */
    word-wrap: break-word;
    /* ✅ break long text if needed */
    overflow-wrap: anywhere;
    /* ✅ modern fallback */
    text-align: right;
    /* ✅ right justify values */
  }

  .details1 dd.flexed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* ✅ push icon + text to right */
    gap: 6px;
  }

  .details1 dd.flexed img {
    width: 24px;
    /* ✅ fixed width */
    height: 1em;
    /* ✅ match text size */
    vertical-align: middle;
    margin-right: 6px;
    /* ✅ spacing before text */
    margin-left: 6px;
    /* spacing before/after text */
    flex-shrink: 0;
  }

  .subTitle1 {
    padding: 8px 10px;
  }

  .counter {
    font-size: 26px;
    min-width: 5ch;
  }

  .counter-label {
    margin: 4px 0 8px;
    font-size: clamp(12px, 4vw, 14px);
    /* slightly tighter */
    color: #66ff66;
    /* brighter green for visibility on tiny screens */
    font-weight: 600;
    /* ✅ stronger emphasis */
  }

  .details dd.addr {
    font-size: 11px;
  }
}


@media (max-width: 1024px) and (min-width:480px) {
  .reservation-popup-overlay1 .sub-title-h1 {
    font-size: 28px;
  }

  .details1 dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    /* left column auto-sized, right column takes remaining space */
    row-gap: 6px;
    column-gap: 20px;
    font-size: 16px;
    align-items: center;
    font-size: clamp(12px, 3.6vw, 16px);
  }

  /* Left column: single line, no wrapping */
  .details1 dt {
    color: var(--ink-dim);
    font-weight: 500;
    word-break: break-word;
    /* just in case */
    font-size: 15px;
    margin: 0;
    white-space: nowrap;
    /* 🚫 never wrap */
    overflow: hidden;
    /* hide overflow if text is too long */
    text-overflow: ellipsis;
    /* … for overflow */

  }

  /* Right column: wraps normally */
  .details1 dd {
    font-size: 15px;
    margin: 0;
    font-weight: 700;
    white-space: normal;
    /* ✅ allow wrapping */
    word-wrap: break-word;
    /* ✅ break long text if needed */
    overflow-wrap: anywhere;
    /* ✅ modern fallback */
    text-align: right;
    /* ✅ right justify values */
  }

  .details1 dd.flexed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* ✅ push icon + text to right */
    gap: 6px;
  }

  .details1 dd.flexed img {
    width: 24px;
    /* ✅ fixed width */
    height: 1em;
    /* ✅ match text size */
    vertical-align: middle;
    margin-right: 6px;
    /* ✅ spacing before text */
    margin-left: 6px;
    /* spacing before/after text */
    flex-shrink: 0;
  }

  .counter {
    font-size: 36px;
  }
}

.rabbit-left1 {
  padding-bottom: 40px;
  transform: scaleX(-1) rotate(-4deg);
}

.rabbit-left {
  opacity: 0.5;
  transform: scaleX(-1) rotate(40deg);
  margin-left: 131px;
  margin-top: 174px;
  margin-bottom: -245px;
  padding-top: 33px;
  height: 278px;
}

.refpopupbtnimg {

  display: flex;
  align-items: center;
  height: 45px;
  width: 115%;

}

.refpopupbtnimg img {
  width: 0px;
  height: 74px;
  margin-bottom: 23px;
}

.refbtntext {
  font-weight: 800;
  font-size: 14px;
}

@media(max-width:480px) {
  .refbtntext {

    font-size: 13px;
  }
}

.overlay-loading-text {
  color: white;
  font-size: 20px;
}

.overlay-loading-text-warning {
  color: yellow;
  font-size: 19px;
}

.overlay-popup-frame {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid white;
  background-color: #007bff;
}

.daily-x-close {
  background: url(../assets/close.svg) no-repeat center center;
  background-size: contain;
  width: 48px;
  height: 48px;
  text-indent: -9999999px;
  border: none;
  margin: 2px -49px 10px auto;
  display: block;
  transition: 0.3s;
  position: absolute;
  right: 62px;
  top: 7px;
  color: black;
  border-radius: 50%;
  /* <-- Makes it circular */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.daily-x-close:hover {
  background-color: rgba(74, 111, 169, 0.5);
  transform: rotate(180deg);

}

.thankyou {
  display: none;
  margin-top: clamp(6px, 2vw, 15px);
  font-weight: 700;
  font-size: clamp(12px, 3.6vw, 18px);
}

.package-select-data-item {
  margin-top: clamp(2px, .1vw, 10px);
  font-weight: 500;
  font-size: clamp(11px, 3vw, 12px);
  line-height: 1.3;
}

.package-select-data-value {
  font-weight: 700;
  font-size: clamp(13px, 3vw, 14px);
}


@media (max-width: 767px) {

  .presale-pack-heading {
    border-bottom: none;
  }

  .presale-package-accordion {
    border-bottom: 1px solid #ffffff4d;
  }

  .presale-package-accordion:last-child {
    border-bottom: none;
  }

  .presale-package-header {
    cursor: pointer;
    position: relative;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 40px 12px 10px;
  }

  .presale-package-header .package-status {
    font-weight: 600;
  }

  .presale-package-details {
    display: none;
    padding-left: 5px;
    padding-bottom: 10px;
  }

  .presale-package-accordion.expanded .presale-package-details {
    display: block;
  }

  .detail-item {
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
  }

  .detail-item span:first-child {
    color: #ffffffb2;
    font-weight: 400;
  }

  .detail-item span:last-child {
    font-weight: 400;
  }

  .presale-package-header::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    z-index: 2;
    width: 18px;
    height: 18px;
    background-image: url('../assets/angle-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-50%) rotate(0deg);
  }

  .presale-package-accordion.expanded .presale-package-header::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .presale-package-accordion.sold-out .presale-package-header {
    cursor: default;
  }

  .presale-package-accordion.sold-out .presale-package-header::after {
    content: '';

  }
}

#profile-avatar {
  height: 80px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
}

.package-select-set-title,
.package-select-row {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.5fr;
  gap: 10px;
  align-items: center;
}

.package-select-set-title span:first-child,
.package-select-row span:first-child {
  text-align: left;
}

.package-select-set-title span:nth-child(n+2),
.package-select-row span:nth-child(n+2) {
  text-align: right;
}

.package-select-row span+span {
  opacity: 0.5;
  font-size: 12px;
}

.package-select-row span:nth-child(2),
.package-select-row span:nth-child(3) {
  opacity: 0.5;
  font-size: 12px;
}

.package-select-row:not(.inactive):hover span+span,
.package-select-row:not(.inactive):hover span:nth-child(3) {
  opacity: 1;
}

.inactive.package-select-row span.sold {
  opacity: 1 !important;
}

#walletExistsErrorPopup {
  height: auto;
  max-height: 90vh;
  padding: 30px 25px;
z-index: 9999;
}

#walletExistsErrorPopup .popup-inner {
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
  width: 100%;
  height: auto;
  font-family: "Open Sans";
}

#walletExistsErrorPopup .popup-title {
  font-size: 33px;
  line-height: 1.2;
}

#walletExistsErrorOkBtn {
  width: 120px;
  height: 50px;
  border-radius: 30px;
  padding: 10px;
  font-family: "Placard";
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #aadc9f 0%, #8e94cc 100%);
  border: none;
  cursor: pointer;
  color: #202223;
  transition: background 0.3s;
}

#walletExistsErrorOkBtn:hover {
  background: radial-gradient(#fff726, #aadc9f);
}

#walletExistsErrorPopup .wallet-popup-btn {
  justify-content: center;
  width: 100%;
}

#walletExistsErrorPopup .message-wallet-text {
  font-size: 20px;
  font-family: "Open Sans";
}

@media (max-width: 768px) {
  #walletExistsErrorPopup .popup-inner {
    padding: 40px 10px 10px 10px;
  }

  #walletExistsErrorPopup .popup-title {
    font-size: 24px;
  }

  #walletExistsErrorPopup .message-wallet-text {
    font-size: 16px;
  }

  #walletExistsErrorOkBtn {
    width: 100px;
    height: 45px;
    font-size: 16px;
  }



}

@media (max-width: 480px) {
  #walletExistsErrorPopup {
    padding: 20px 15px;
  }

  #walletExistsErrorPopup .popup-title {
    font-size: 20px;
  }

  #walletExistsErrorPopup .message-wallet-text {
    font-size: 14px;
    font-family: "Open Sans";
  }

}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  z-index: -1;
}

.terms-popup {
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  color: #000;
}

.modal-header {
  padding: 24px 24px 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.modal-content {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
}

.modal-content::-webkit-scrollbar {
  width: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.modal-content::-webkit-scrollbar-thumb:vertical {
  min-height: 45px;

}

.modal-footer {
  padding: 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn-close {
  background: #6b7280;
  color: white;
}

.modal-btn-close:hover {
  background: #4b5563;
}

.modal-btn-agree {
  background: #3b82f6;
  color: white;
}

.modal-btn-agree:hover {
  background: #2563eb;
}

.modal-btn-agree:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

.scroll-indicator {
  text-align: center;
  padding: 12px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  border-top: 1px solid #e5e7eb;
}

.tos-content h3 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px 0;
}

.tos-content p {
  margin-bottom: 12px;
}

.checkmark {
  color: white;
  font-size: 12px;
}

.warning-text {
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px;
}

.package-select-active {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.package-quickies-left {
  font-weight: bold;
  color: #a7b7e0;
  padding-left: 15px;
  padding-right: 20px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 25px 0;
  cursor: pointer;
}

.checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox.checked {
  background: #10b981;
  border-color: #10b981;
}

.checkbox-label {
  font-size: 19px;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.tos-link {
  color: #fbbf24;
  text-decoration: underline;
  cursor: pointer;
}

.tos-link:hover {
  color: #f59e0b;
}

#scrollToBottomBtn {
  position: absolute;
  right: 30px;
  /* Stick to right edge of modal */
  bottom: 140px;
  /* Stay above modal footer (adjust as needed) */
  width: clamp(40px, 10vw, 50px);
  height: clamp(40px, 10vw, 50px);
  font-size: clamp(18px, 5vw, 24px);
  border-radius: 50%;
  background-color: #000;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  /* Stays above content but within modal */
  opacity: 1;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.handleWalletAddress {
  display: flex;
  gap: 9px;
  font-size: 18px;
}

.package-select-drop-set[data-reserved="true"] {
  position: relative;
  border-radius: 12px;
  padding: 5px 0 0 0;
}

.package-select-drop-set[data-reserved="true"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  right: -5px;
  bottom: -1px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  border-radius: 10px;
  pointer-events: none;
}

.package-select-drop-set[data-reserved="true"]::after {
  content: "🔒 Not Yet Available";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  background: rgba(30, 64, 175, 1);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(96, 165, 250, 0.5);
  pointer-events: all;
  white-space: nowrap;
}

.package-select-drop-set[data-reserved="true"] .package-select-row {
  pointer-events: none;
  cursor: default;
}

@media (max-width: 480px) {

  .package-select-drop-set[data-reserved="true"]::after {
    padding: 12px 20px;
    font-size: 14px;
  }
}


#presaleSoldOutPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* Darker backdrop to emphasize the popup */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

#presaleSoldOutPopup.show {
  opacity: 1;
  visibility: visible;
}

.sold-out-box {
  background-color: #126dfe;
  border-radius: 30px;
  padding: clamp(35px, 6vw, 10px) clamp(10px, 4vw, 10px);
  max-width: 500px;
  width: 100%;
  text-align: center;
  border: 3px solid white;
  animation: slideDown 0.5s ease-out;
  position: relative;
}

.sold-out-title {
  font-family: "Placard", sans-serif;
  font-size: clamp(24px, 5vw, 33px);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
}

.sold-out-subtitle {
  font-size: clamp(16px, 3.5vw, 15px);
  color: white;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.4;
  padding: 0 15px;
}

.sold-out-next-chain {
  font-family: "Placard", sans-serif;
  font-size: clamp(18px, 4vw, 28px);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 10px;
}

.sold-out-button-ok {
  padding: 12px 40px;
  border: none;
  border-radius: 50px;
  font-size: clamp(18px, 4vw, 22px);
  font-family: "Placard", sans-serif;
  font-weight: 700;
  color: #202223;
  background: linear-gradient(135deg, #aadc9f, #7d67ea);
  /* Green/Purple Gradient for the OK button */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-width: 150px;
}

.sold-out-button-ok:hover {
  background: linear-gradient(135deg, #fff726, #aadc9f);
}

.sold-out-badge {
  background: red;
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-family: "Placard", sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.sold-out-chain-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 3vw, 20px);
  margin: 20px 0 30px;
}

.sold-out-chain-logos img {
  width: clamp(50px, 60vw, 300px);
  height: auto;
  display: inline-block;
  margin: 0;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.sold-out-chain-logos span {
  font-size: clamp(30px, 8vw, 50px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -15px;
}


.current-quickie-logo {
  content: '';
  display: block;
  width: clamp(70px, 15vw, 80px);
  height: clamp(70px, 15vw, 80px);
  background: url("../assets/quickie_base.png") no-repeat center center;
  background-size: cover;
  margin: 0 auto 20px auto;
}

.sold-out-box .close-popup {
  display: none;
}

#referralPopupContainer {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.referral-popup-box {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  max-height: 90vh;
  padding: 30px 25px;
  z-index: 10001;

  background-color: white;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.referral-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.referral-close-btn {
  position: absolute;
  top: 2px;
  right: 20px;
  font-size: 35px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #202223;
  z-index: 10;
}

.referral-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.header-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.referral-modal-header h3 {

  font-size: 33px;
  line-height: 1.2;
  margin: 0;
  color: #202223;
  font-family: "Open Sans", sans-serif;
}

.referral-modal-header p {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  color: #555;
  margin-top: 5px;
}


.referral-cards-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 20px;
}

.referral-card {
  flex: 1;
  width: calc(33.333% - 14px);
  max-width: 300px;
  background-color: #f9fafb;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.referral-card h4 {
  font-size: 1.05em;
  color: black;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: sans-serif;
}

.qr-code-area {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 15px;
  width: 240px;
  height: 240px;
}


.qr-code-area img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.referral-link-text {
  background-color: #ffffff;
  width: 240px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
}

.referral-url {
  font-size: 0.8em;
  color: #888;
  word-break: break-all;

  flex-grow: 1;
  text-align: left;
  padding: 0 5px 0 10px;
}

copy-icon-btn {
  background: transparent;
  cursor: pointer;

  height: 100%;
  width: 30px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.copy-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.share-btn {
  width: 240px;
  height: 45px;
  border-radius: 10px;
  padding: 10px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #172b70;
  border: none;
  cursor: pointer;
  color: white;
  transition: background 0.3s;
}


.share-btn img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}





.referral-popup-box {
  width: 95%;
  padding: 20px 15px;
}

.referral-modal-header h3 {
  font-size: 28px;
}

.referral-modal-header p {
  font-size: 16px;
}

.buybox-buy-stats-tabs-list,
.buybox-buy-buy-tabs-list {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-wrap: nowrap;
  align-items: center;

}

.buybox-buy-stats-tabs-list .tabs-list-style,
.buybox-buy-buy-tabs-list .tabs-list-style {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 30px;
  border: 1px solid rgb(0, 221, 179);
  background: transparent;
}

.buybox-buy-stats-tabs-list .icon-text-wrapper span,
.buybox-buy-buy-tabs-list .icon-text-wrapper span {
  font-size: 12px;
  font-weight: 700;
}
.buybox-buy-stats-tabs-list .icon-text-wrapper1 span {
  font-size: 12px;
  font-weight: 700;
}

.buybox-buy-stats-tabs-list .icon-img,
.buybox-buy-buy-tabs-list .icon-img {
  max-width: 26px;
}

.buybox-buy-stats-tabs-list .tabs-list-style.active,
.buybox-buy-buy-tabs-list .tabs-list-style.active {
  background: radial-gradient(#aadc9f, #7d67ea);
  color: #202223;
  border-color: transparent;
  border: 1px solid rgb(0, 221, 179);
}

.buybox-buy-stats-tabs-list .tabs-list-style:not(.active),
.buybox-buy-buy-tabs-list .tabs-list-style:not(.active) {
  background: transparent;
}

.buybox-buy-stats-tabs-list .tabs-list-style:not(.active) .icon-text-wrapper span,
.buybox-buy-buy-tabs-list .tabs-list-style:not(.active) .icon-text-wrapper span {
  background-image: radial-gradient(#aadc9f, #67abea);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.buybox-buy-stats-tabs-list .tabs-list-style:not(.active) .icon-text-wrapper1 span {
  background-image: radial-gradient(#aadc9f, #67abea);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.underline {
  padding-bottom: 20px;
  border-bottom: 2px dashed #ffffff80;
}
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-container {
  position: relative;
}

.dropdown-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background: #0050c8;
  border: 1px solid white;
}
.dropdown-toggle1 {
  width: 100%;
  text-align: left;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  border-radius: 58px;
  margin-left: auto;
  margin-right: auto;
  background: rgb(33, 33, 95);
  border: 1px solid;
  
}
.dropdown-arrow {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.3s;
  /* margin-left: 170px; */
}

.dropdown-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-toggle1.active .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background:  rgb(33, 33, 95);
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  color: white !important;
  margin-top: 5px;
}

.dropdown-menu button{
  border-radius: 1px;
  background: rgb(33, 33, 95);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu1 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background:  rgb(33, 33, 95);
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 5px;
  color: white;
}

.dropdown-menu1.show {
  display: block;
}

.dropdown-item {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  padding: 8px 12px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #a70f0f;
}

/* .dropdown-item.active {
  background-color: #0582ff;
} */
span.demo-drop-down {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropdown-container {
  position: relative;
  width: 100%;
}
.dropdown-container1 {
  position: relative;
  width: 100%;
}
#demo-drop-menu{
  background-color: #ffffff;
  opacity: 0.6;
  cursor: not-allowed;
  color: #060303;
}
.heading-h2-dropdown{
    color: white;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
}

/* .buybox-buy-tabs{
  background-color: #f2048f;
}

.buybox-buy-coin-select{
   background-color: #f29304;
} */

#selecter-heading1{
  font-weight: 700;
  margin-left: -2px;
  margin-bottom: 3px;
  color: #ffffff99;
  font-size: 13px;
}
#selecter-heading2{
  font-weight: 700;
  margin-left: -2px;
  margin-bottom: 3px;
  color: #ffffff99;
  font-size: 13px;
  margin-left: 7px
}
#drop-arrow{
  font-size: 14px;
 }
.dropdown-menu .dropdown-item:not(.active):hover{
  border-color: yellow;
}

.dropdown-menu1 .dropdown-item1:not(.active):hover{
  border-color: yellow;
}

.dropdown-menu1 .dropdown-item1.active{
  background: rgb(33, 33, 95);
}

.dropdown-menu .dropdown-item:not(.active){
  background: rgb(44 44 135);
}
.dropdown-menu .dropdown-item{
  border: 1px solid #3629a7;
}
.dropdown-menu1 .dropdown-item1:not(.active){
  background: rgb(44 44 135);
}
.icon-text-wrapper1 img{
  margin-right: 4px;
}
.dropdown-toggle .icon-text-wrapper{
  color: white;
}
.dropdown-menu .icon-text-wrapper{
  color: white;
}
.dropdown-container button{
  background: rgb(33, 33, 95);
}
.dropdown-container button:hover{
 background: rgb(33, 33, 95);
}

.dropdown-toggle .icon-text-wrapper img{
  margin-right: 5px;
}
.dropdown-item img{
  margin-right: 5px;
}

#texttoolfix{
  left: 5px;
}


/* 
  this css for new popup */

        .quickie-popup-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100vw;
            height: 100vh;
           
            backdrop-filter: blur(10px);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .quickie-popup-overlay.quickie-active {
            display: flex;
        }

        /* ==================== POPUP CARD ==================== */
        .quickie-popup-card {
            background-color: #0a66ff;
           border: 1px solid #ffffff;
            width: 90%;
            max-width: 600px;
            border-radius: 28px;
            overflow: hidden;
           
            box-shadow: 0 20px 80px rgba(0, 212, 255, 0.4);
            animation: quickie-pop 0.5s ease-out;
            
        }
        /* @keyframes quickie-pop {
            0% { transform: scale(0.7) translateY(50px); opacity: 0; }
            100% { transform: scale(1) translateY(0); opacity: 1; }
        } */

        /* Header */
        .quickie-popup-header {
           
            padding: 10px 30px;
            text-align: center;
            margin-bottom: 10px;
            
        }
        .quickie-popup-title {
            font-size: 33px;
            font-weight: 700;
            margin-bottom: 4px;
            
        }
        .quickie-popup-subtitle {
            font-size: 33px;
            font-weight: 700;
        }

        /* Body */
        .quickie-popup-body {
            padding-bottom: 30px;
            text-align: center;
            line-height: 1.7;
        }
        .quickie-popup-text {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 29px;
            font-weight: 500;
            margin:20px
        }

        /* Buttons */
        .quickie-vote-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top:35px;
        }
        .quickie-btn-base {
            padding: 15px 4px;
            border-radius: 60px;
            font-weight: bold;
            font-size: -0.6rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            
        }
        .quickie-btn-base img {
            width: 32px;
            height: 32px;
        }
        /* .quickie-btn-base:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        } */

        .quickie-btn-base-primary {
                background: rgb(44 44 135);
            color: white;
            border: 3px solid #00f0ff;
        }
        .quickie-btn-bnb-primary {
            background: #f3ba2f;
            color: #000;
            border: 3px solid #f4d03f;
        }

        /* Close button */
        .quickie-close-btn {
            left: 91%;
            top: -2px;
            position: relative;
            margin-top: 10px;
            background: rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 31px;
            color: white;
            transition: 0.3s;
            border: 1px solid rgb(130 130 236);
        }
        .quickie-close-btn:hover{
          rotate: 180deg;
        }
        /* .quickie-close-btn:hover {
            background: rgba(255,255,255,0.4);
        } */

        /* end popup css */
.quickie-popup-message {
    display: block;
    padding: 16px;
    margin: 23px;
    border-radius: 14px;
    font-size: 16px;
}


.stats {
  margin:25px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #e8f0ff;
  text-align: center;
  font-size: 14px;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
  gap: 16px;
}

.stats-item {
  flex: 1;
}

.stats-label {
  font-size: 12px;
  opacity: 0.8;
}

.stats-value {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.quickie-btn-eth-primary {
                background: rgb(44 44 135);
            color: white;
            border: 3px solid #00f0ff;
        }
        .quickie-btn-sol-primary {
            background: #f3ba2f;
            color: #000;
            border: 3px solid #f4d03f;
        }