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

:root {
  --white: #fff;
  --black: #000;
  --primary: #ffd500;
  font-size: 10px;
}

body {
  font-family: "Poppins", sans-serif;
  scrollbar-width: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.wrapper {
  width: 100%;
  height: 100vh;
  height: var(--app-height);
  background: url(../img/wrapper-3.png) no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.wrapper > div {
  max-width: 360px;
  width: 100%;
  margin: auto;
  height: 100%;
  background-size: cover;
  padding: 0 1.6rem;
  position: relative;
  overflow-x: hidden;
  scrollbar-width: none;
}

.intro-screen-container {
  background: url(../img/intro-wrapper.png) no-repeat;
  display: flex;
}

.intro-screen-container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 2.8rem;
}

.intro-screen-container h2 {
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
}

.intro-screen-container h1 {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 2.8rem;
  color: var(--black);
  margin-top: 3rem;
}

.wrapper .items-wrapper {
  background-color: var(--white);
  overflow: hidden;
  padding: 0;
}

.items-container {
  height: 100%;
  overflow: auto;
  padding: 0 1.6rem;
  scrollbar-width: none;
}

.items-container::after {
  content: "";
  background-image: url(../img/icon1.png);
  width: 20px;
  height: 20px;
  position: absolute;
  top: -39px;
  left: -10px;
  height: 140px;
  width: 140px;
  background-size: cover;
}

.items-container::before {
  content: "";
  background-image: url(../img/icon3.png);
  position: absolute;
  top: 4%;
  right: 16%;
  height: 30px;
  width: 30px;
  background-size: cover;
}

.items-container h1 {
  color: var(--black);
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 3.3rem;
  margin-top: 6rem;
}

.items-container h1 span {
  color: #ff2424;
}

.items-container p {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.items-container .get-started-btn {
  border-radius: 20px;
  color: var(--black);
  font-size: 2.7rem;
  background-color: #4e4e4e;
  text-decoration: none;
  font-weight: 700;
  padding: 1.2rem 5.4rem;
  background-color: #4e4e4e;
  box-shadow: 3px 5px 0px #000000;
  border: 3px solid #000000;
  cursor: pointer;
}

.items-container .get-started-btn:active{
      box-shadow: 0 5px #666;
    transform: translateY(4px)
}

.items-container .get-started-btn.clrEffect {
  background-color: var(--primary);
}

.items-container .bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  padding-bottom: 50px;
}

.items-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.items-image img {
  width: 90%;
}

.bottom-content::after {
  content: "";
  background-image: url(../img/icon4.png);
  position: absolute;
  right: -9%;
  bottom: -43px;
  height: 100px;
  width: 100px;
  background-size: cover;
}

.items-container .bottom-content label {
  display: flex;
  align-items: self-start;
  gap: 0.6rem;
}

.items-container .bottom-content label,
.items-container .bottom-content label a {
  color: #585858;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7rem;
}

.top-content {
  height: 140px;
  width: 100%;
  opacity: 0;
}

.items-image::before {
  content: "";
  background-image: url(../img/icon2.png);
  position: absolute;
  left: 0%;
  bottom: -28px;
  height: 31px;
  width: 28px;
  background-size: cover;
}

.wrapper .dashboard-container {
  background-color: var(--white);
  padding: 4rem 1.6rem;
}

.dashboard-container h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 25px;
}

.brand {
  color: var(--black);
}

.pulse {
  color: #ff2424;
}

.subtitle {
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--black);
}

.description {
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 400;
  margin: 10px 0 20px;
  line-height: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.card {
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  box-shadow: 2px 3px 0px #000000;
  border: 1px solid #000000;
  border-radius: 20px;
  text-decoration: none;
}

.card img {
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
}

.card p {
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 500;
}

.instructions {
  position: relative;
}

.instructions::after {
  content: "";
  background-image: url(../img/icon2.png);
  position: absolute;
  bottom: -36px;
  left: -6px;
  height: 24px;
  width: 22px;
  background-size: cover;
}

.instructions h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--black);
}

.instructions ol {
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 500;
  padding-left: 1.2rem;
}

.instructions li {
  margin-bottom: 10px;
  line-height: 1.4;
}

.instructions li div {
  display: flex;
  align-items: baseline;
  font-weight: 400;
}

.instructions li div p {
  width: 96%;
}

.instructions span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  margin-right: 6px;
}

.dashboard-container::before {
  content: "";
  background-image: url(../img/icon1.png);
  position: absolute;
  top: -2%;
  right: -5%;
  height: 100px;
  width: 100px;
  background-size: cover;
  transform: rotate(-104deg);
}

.dashboard-container .footer-content {
  text-align: center;
  margin-top: 36px;
}

.dashboard-container .footer-content a.manage-data-btn {
  box-shadow: 3px 5px 0px var(--black);
  border: 3px solid var(--black);
  background-color: var(--primary);
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 24px;
  text-decoration: none;
  padding: 8px 20px;
  margin: 16px 0 26px;
  display: inline-block;
}

.dashboard-container .footer-content > div a,
.dashboard-container .footer-content > div {
  font-weight: 500;
  color: #585858;
  font-size: 1.1rem;
}

.wrapper .player-container {
  padding: 1.6rem;
  height: 100%;
  overflow: auto;
}

.back-btn {
  background: var(--primary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 2px 0px #000000;
  border: 2px solid #000000;
  cursor: pointer;
}

.sound-title {
  margin-top: 28px;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}

.image-circle-container {
  width: 318px;
  height: 318px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f9f9f9;
  margin: 6px auto 0;
}

.inner-image-circle {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f9f9f9;
}

.image-circle {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f9f9f9;
}

.image-circle img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.next-sound-btn-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: -24px;
}

.next-sound-btn {
  padding: 0.8rem 2.4rem;
  font-size: 1.6rem;
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  box-shadow: 1px 2px 0px #000000;
  border: 3px solid #000000;
  border-radius: 20px;
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
}

.next-sound-btn:hover {
  background: #f1f1f1;
}

.wrapper .common-wrapper {
  padding: 1.6rem;
  overflow: auto;
  height: 100%;
}

.common-wrapper .inner-content {
  padding: 0 1.6rem;
}

.common-wrapper h2 {
  color: var(--primary);
  font-weight: 600;
  font-size: 2.1rem;
  margin: 2rem 0;
}

.common-wrapper h4{
  font-size: 1.6rem;
  color: var(--black);
}

.common-wrapper p, .common-wrapper li {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 2rem;
}

.common-wrapper p a {
  color: #0c60bf;
  text-decoration: none;
  font-weight: 600;
}

.common-wrapper ul, .common-wrapper ol{
  padding-left: 1.4rem;
}

.back-btn-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--black);
}

.opt-out-btn-container {
  display: flex;
  justify-content: center;
}

.opt-out-btn-container a {
  box-shadow: 3px 5px 0px var(--black);
  border: 3px solid var(--black);
  background-color: var(--primary);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  border-radius: 22px;
  text-decoration: none;
  padding: 0.6rem 3rem;
}

.optout-banner {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.gift-popup {
  position: fixed;
  background-color: #00000087;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}

.gift-popup.show {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}

.hidden {
  display: none;
}

.gift-popup > div {
  background-color: var(--white);
  box-shadow: 0px 0px 10px #00000029;
  border-radius: 20px;
  width: 328px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: slideIn 0.8s ease;
}

.gift-popup .image-banner {
  background: url(../img/gift-banner-bg.png) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-position: 50% 75%;
}

.gift-popup p {
  color: var(--black);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 2.1rem;
  text-align: center;
  margin: 25px 0;
}

.gift-popup a {
  box-shadow: 1px 3px 0px #000000;
  border: 3px solid #000000;
  border-radius: 20px;
  background-color: var(--primary);
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  padding: 4px 20px;
}

.gift-popup .close-btn {
  box-shadow: 1px 2px 0px #000000;
  border: 2px solid #000000;
  background-color: var(--primary);
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
}

.cookie-popup {
  position: fixed;
  background-color: #00000087;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}

.cookie-popup > div {
  width: 360px;
  border-radius: 30px 30px 0px 0px;
  background-color: var(--white);
  padding: 2rem;
  animation: slideUp 0.8s ease;
}

.cookie-popup.show {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}

.hidden {
  display: none;
}

.cookie-popup .learn-more {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.cookie-popup p,
.cookie-popup a {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
}

.cookie-popup a {
  color: #ff2424;
}

.cookie-popup .btn-grp {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 16px 0;
}

.cookie-popup button {
  box-shadow: 3px 5px 0px #000000;
  border: 3px solid #000000;
  border-radius: 20px;
  color: var(--black);
  font-weight: bold;
  font-size: 2.1rem;
  background-color: var(--white);
  padding: 8px 28px;
  width: 120px;
  display: flex;
  justify-content: center;
}

.cookie-popup .btn-grp > button:last-child {
  background-color: var(--primary);
}

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

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.top-decore::before {
  content: "";
  background-image: url(../img/icon4.png);
  position: absolute;
  top: -35px;
  left: 23%;
  height: 125px;
  width: 125px;
  background-size: cover;
  transform: rotate(-90deg);
}

.bottom-decore::after {
  content: "";
  background-image: url(../img/icon1.png);
  position: absolute;
  bottom: -51px;
  right: -9px;
  background-size: cover;
  transform: rotate(180deg);
  width: 125px;
  height: 125px;
}
.not-available-container {
  text-align: center;
  height: 100%;
  overflow: auto;
  padding: 14rem 1.6rem 2rem;
}

.not-available-container img {
  width: 85%;
}

.not-available-container h2 {
  font-size: 5.4rem;
  color: var(--black);
  font-weight: bold;
  margin: 36px 0 0px;
}

.not-available-container h2 span {
  color: #ff2424;
}

.not-available-container h6 {
  font-weight: 600;
  font-size: 2.3rem;
}

.not-available-container::before {
  background-image: url(../img/icon2.png);
  height: 32px;
  width: 30px;
  top: 9%;
}

.not-available-container > div::after {
  content: "";
  background-image: url(../img/icon4.png);
  position: absolute;
  bottom: -19px;
  right: -39px;
  background-size: cover;
  width: 125px;
  height: 125px;
}

.not-available-container > div::before {
  content: "";
  background-image: url(../img/icon3.png);
  position: absolute;
  bottom: 15%;
  left: 30px;
  background-size: cover;
  width: 29px;
  height: 29px;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  position: relative;
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: -9px;
  width: 5px;
  height: 16px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#targetButton.active {
  background-color: green;
  color: white;
}

.alertMessage {
  font-size: 11px;
  position: absolute;
  bottom: -44px;
  background: #4e4e4e;
  border-radius: 7px;
  color: #ffffff;
  font-weight: 500;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
}

.alertMessage img {
  width: 17px;
}

.opt-hide {
  display: none;
}

.progress-container {
  height: 10px;
  background-color: #ddd;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  top: 0;
  left: 50%;
  transform: translate(-50%);
  position: fixed;
  width: 360px;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #4caf50;
  transition: width 0.1s linear;
}


.page-not-found h1{
  margin-top: 60px;
}

.page-not-found > div{
  display: flex;
    justify-content: center;
    padding-top: 36px;
}

.page-not-found > div img{
  width: 85%;
}