* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* color */
  --primary-color: #fd4a9e;
  --primary-text-color: #f7f7f7;
  --secondary-text-color: #f6f6f2;
  --tertiary-color: #252627;
  --btn-color: #78edc8;
  --dark-gray: #9c9c9c;
  --white: #fff;
  --body-color: #00031c;
  --header-color: #191c33;
  --card-color: #14001c;
  /* color mix */
  --primary-border-color: color-mix(
    in srgb,
    var(--primary-color) 20%,
    transparent
  );
  --button-outline-color: color-mix(in srgb, var(--btn-color) 15%, transparent);
  /* gradients */
  --header-gr: linear-gradient(180deg, #00031c 0%, rgba(0, 3, 28, 0) 90%);

  /* border radius */
  --border-radius-full: 9999px;
}
body {
  background-color: var(--body-color);
  color: var(--primary-text-color);
  font-family: "Inter", sans-serif;
}
/* base styles */
.container {
  max-width: 1026px;
  padding: 0 1rem;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
img {
  max-width: 100%;
}
.hidden {
  display: none;
}
.error {
  font-size: 12px;
  margin: 0 auto 12px;
  color: red;
}
/* selector */
.selector-wrapper {
  position: relative;
  z-index: 1;
}

/* section */
.section {
  background-color: var(--primary-bg);
  padding: 40px 16px;
  border-radius: 4px;
  text-align: center;
}
.section > * {
  margin-bottom: 24px;
}
.section > *:last-child {
  margin-bottom: 0;
}
/* title */
.title {
  font-size: 24px;
  color: var(--primary-text-color);
  font-weight: 700;
  line-height: 36px;
  text-align: center;
}
.secondary-title {
  font-size: 32px;
  color: var(--primary-text-color);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  font-style: italic;
  text-align: center;
}
.description {
  color: var(--secondary-text-color);
  text-align: center;
}
.title-wrapper {
  max-width: 718px;
  margin: 0 auto;
}
.button {
  background-color: var(--btn-color);
  color: var(--body-color);
  font-size: 20px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  min-height: 68px;
  text-transform: uppercase;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* app install */
.app-install {
  margin-top: 24px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.app-install p {
  color: #525760;
  font-size: 12px;
  line-height: 18px;
}
.gr-ball {
  height: 17px;
  width: 17px;
  border-radius: var(--border-radius-full);
  background: radial-gradient(
    41.74% 41.74% at 34.35% 35.22%,
    #12ebff 0%,
    #0e92ff 100%
  );
}

/* header */
.header {
  background: var(--header-gr), var(--header-color);
  padding: 12px 0px;
  max-width: none;
  position: relative;
  z-index: 1;
}
#logo {
  height: 34px;
}
#logo img {
  max-height: 34px;
}
.navbar-brand img {
  max-height: 34px;
}

/* hero-section */
.download-section .btn {
  max-width: 330px;
}

/* steps section */
.steps-section {
  padding: 24px 0;
}
.steps-section .title {
  max-width: 281px;
  margin: 0 auto;
}
.steps-wrapper {
  max-width: 200px;
  margin: 0 auto;
  padding-top: 18px;
}
.steps-wrapper > * {
  margin-bottom: 22px;
}
.steps-wrapper > *:last-child {
  margin-bottom: 0px;
}
.single-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-step .step-icon {
  position: relative;
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
  height: 40px;
  width: 40px;
  border-radius: var(--border-radius-full);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}
.single-step .step-icon::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  height: 14px;
  width: 2px;
  border-radius: var(--border-radius-full);
  background-color: var(--white);
}
.single-step:last-child .step-icon::after {
  display: none;
}
.single-step .step-text {
  text-align: left;
}
.single-step .step-text p {
  font-size: 10px;
  line-height: 15px;
  text-align: left;
}
.single-step .step-text h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-align: left;
}

/* entertainment section */
.entertainment-wrapper {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.entertainment-wrapper .entertainment-card {
  max-width: 182px;
  aspect-ratio: 182/312;
  border-radius: 24px;
  overflow: hidden;
}
.entertainment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
/* content section */
.content-wrapper {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.content-wrapper .content-card {
  max-width: 226px;
  background-color: var(--card-color);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}
.content-card .content-card-img {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  aspect-ratio: 226/180;
}
.content-card .content-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.content-card:hover .content-card-img img {
  transform: scale(1.05);
}
.content-card .content-card-text {
  min-height: 141px;
  height: 100%;
  padding: 24px 14px;
  text-align: center;
}
.content-card .content-card-text h3 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.content-card .content-card-text p {
  font-size: 12px;
  line-height: 16px;
}

/* step one section */
.step-one-section {
  padding: 60px 16px;
  margin-bottom: 35px;
}
.step-one-section .title {
  max-width: 550px;
  margin: 0 auto;
  font-size: 32px;
  line-height: 35px;
}
.step-one-section .wrapper {
  padding-top: 42px;
  max-width: 408px;
  margin: 0 auto;
}
.step-one-section .wrapper > * {
  margin-bottom: 20px;
}
.step-one-section .wrapper > *:last-child {
  margin-bottom: 0;
}
.step-one-section .wrapper .steps-wrapper {
  max-width: 317px;
  margin-bottom: 37px !important;
}
label {
  display: block;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 12px;
  text-align: left;
}
.input-container {
  position: relative;
  margin-bottom: 16px;
}
.input-container input {
  background-color: transparent;
  width: 100%;
  padding: 15px 10px;
  padding-left: 40px;
  border: 2px solid var(--btn-color);
  border-radius: 3px;
  font-size: 16px;
  color: var(--primary-text-color);
  transition: all ease 0.5s;
}
.input-container input:focus {
  outline: 0;
  box-shadow: rgba(253, 253, 253, 0.5) 0px 0px 16px;
}
.input-container img {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--btn-color);
  color: var(--body-color);
  border: none;
  border-radius: 3px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}
.form-info {
  font-size: 12px;
  line-height: 18px;
}

/* footer */
footer {
  padding: 130px 0 25px;
}
.footer-wrapper {
  max-width: 666px;
  margin: 0 auto;
}
.footer-wrapper p {
  color: var(--dark-gray);
  font-size: 10px;
  line-height: 11px;
  text-align: center;
}
.footer-wrapper .disclaimer-text {
  background-color: #f8fbff;
  padding: 10px 20px;
  border-radius: 7px;
  margin: 0 1rem;
}
.footer-bottom {
  max-width: 200px;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: var(--dark-gray);
}
.privacy-policy {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 45px;
  text-align: center;
}
.privacy-policy a {
  display: inline-block;
  color: var(--dark-gray) !important;
  text-decoration: underline;
  font-size: 12px;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  margin-right: 8px;
}
.privacy-policy a:last-child {
  margin-right: 0px;
}
.privacy-policy a:hover {
  opacity: 0.8;
}

/* terms and privacy css */
.sub-page .sub-page-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 14px;
}
.page-content-wrapper {
  padding-left: 0;
}
.sub-page h1 {
  color: var(--primary-color) !important;
  font-size: 24px;
  margin-bottom: 1rem;
}
.sub-page h2 {
  color: var(--dark-gray);
  font-size: 18px;
  margin-bottom: 1rem;
}
.sub-page p {
  color: var(--dark-gray);
  margin-bottom: 12px;
}
.sub-page ul {
  padding-left: 1rem;
  color: var(--dark-gray);
  margin-bottom: 12px;
}
.sub-page li {
  color: var(--dark-gray);
  margin-bottom: 12px;
}
.sub-page li ul {
  margin-top: 12px;
}
.sub-page a {
  color: #5477e8;
  text-decoration: underline;
  transition: 0.3s ease-in-out;
}
.sub-page a:hover {
  opacity: 0.8;
}

/* contact us page */
.contact-card {
  display: flex;
  gap: 24px;
}
.contact-card .contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .contact-icon img {
  max-width: 32px;
}
.contact-card .contact-content p {
  margin-bottom: 4px;
}
.contact-card .contact-content a {
  color: var(--dark-gray) !important;
}
.font-normal {
  font-weight: normal !important;
}

/* media queries */
@media screen and (min-width: 640px) {
  .button {
    min-height: 80px;
    max-width: 350px;
    padding: 10px 20px;
    font-size: 28px;
  }
  .sticky-btn {
    font-size: 30px;
    padding: 10px 20px;
  }
  .button svg,
  .sticky-btn svg {
    width: 40px;
  }
  .step-one-section .title {
    font-size: 40px;
    line-height: 43px;
  }
  .step-one-section .wrapper .steps-wrapper {
    margin-bottom: 48px !important;
  }
  label {
    font-weight: 700;
    font-size: 15px;
  }
  .btn-submit {
    padding: 20px 15px;
    font-size: 32px;
  }
  .sub-page .sub-page-container {
    font-size: 16px !important;
  }
  .page-content-wrapper {
    padding-left: 3rem !important;
  }
  .sub-page h1 {
    font-size: 32px !important;
  }
  .sub-page h2 {
    font-size: 24px !important;
  }
}

@media screen and (min-width: 768px) {
  .header {
    padding: 16px 0px;
  }
  #logo {
    height: 40px;
  }
  #logo img {
    max-height: 40px;
  }
  .navbar-brand img {
    max-height: 40px;
  }
  footer {
    padding-bottom: 40px;
  }
}

/* sticky button styles */
.sticky-btn {
  text-decoration: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  box-shadow: 0px -8px 16px 0px #00000033;
  background-color: var(--btn-color);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 24px 10px;
  border: none;
  width: 100%;
  min-height: 90px;
}
.sticky-btn .title {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 auto 5px;
}
.sticky-btn .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sticky-btn {
    display: block;
  }
}

/* support css */
@supports (color: var(--primary-border-color)) and
  (color: var(--button-outline-color)) {
  .button {
    width: calc(100% - 26px);
    margin: 13px auto;
    outline: 13px solid var(--button-outline-color);
  }
}

/* animation */
.animate-in {
  animation: fadeIn 0.3s forwards;
}

.animate-out {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
