/* Box model reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default styling */
body,
html {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  background: #3D0F1D;
  -webkit-tap-highlight-color: transparent;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/* Links */
a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  color: #fff;
}

/* Images */
img {
  height: auto;
  border: none;
}

/* Lists */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mobile specific */
body {
  -webkit-text-size-adjust: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type='submit'],
input[type='button'],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
}

/* Remove 300ms delay on mobile */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, system-ui;
}

/* Fix iOS input bug */
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'] {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.container {
  position: relative;
  height: calc(var(--vh) * 100);
  padding-top: calc(43px + env(safe-area-inset-top));
  background: linear-gradient(180deg, #D1164C 7%, #E35402 100%);
  display: flex;
  flex-direction: column;
}

.container .logo {
  width: 268px;
  height: 46px;
  background: url('./images/bg_app_name.svg') no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0;
  font-weight: 600;
}

.logo img {
  width: 38px;
  margin-right: 8px;
}

h1 {
  font-size: 35px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  line-height: 39px;
  font-weight: 700;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 16px;
}

h1 span {
  font-size: 35px;
  color: #ffb000;
  letter-spacing: 0;
  text-align: center;
  line-height: 39px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0;
  font-weight: 700;
}
.lumi-box{
  width: 100%;
  overflow-y: auto;
}

.img_lumi {
  height: 90%;
  width: auto;
}

.box {
  margin-top: 17px;
  flex:1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.download-box {
  width: 100%;
  position: absolute;
  height: 216px;
  padding-bottom: 10px;
  background: linear-gradient(180deg, rgba(218,53,40,0.00) 0%, #DD3F1B 50%, #E04811 100%);
  bottom: 0px;
  left: 0;
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
  justify-content: end;
}

.download-content {
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
}

.download-btn {
  width: 100%;
  position: relative;
  height: 57px;
  margin-top: 10px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease;
  position: relative;
}

.download-btn-content {
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
  display: flex;
  width: 100%;
  background: #000000;
  border-radius: 6px;
  width: 100%;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.download-btn-content img {
  width: 18px;
  margin-right: 13px;
}

@keyframes span1 {
  0% {
    left: -200%;
  }

  100% {
    left: 100%;
  }
}

.btnBase {
  transition: transform 0.2s ease;
  transform: scale(1);
}

.btnBase:active {
  transform: scale(0.9);
}

.download-animate {
  height: 57px;
  width: 100%;
  top: 0px;
  left: 0%;
  position: absolute;
  display: block;
  border-radius: 6px;
  background: url('./images/img_light.svg') no-repeat;
  animation: span1 3s linear infinite;
}

.title {
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
}

.content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
  margin-top: 16px;
}

.main {
  padding-left: 16px;
  padding-right: 16px;
}

.btn {
  width: 100%;
  height: 48px;
  background: #000000;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 700;
}

.img_body {
  margin-top: 60px;
}

.img_body img {
  width: 100%;
}

.perks {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px 14px 24px;
  background: #4D1929;
  border-radius: 11.5px;
  margin-bottom: 16px;
}

.perks:first-child {
  margin-top: 30px;
}

.perks:last-child {
  margin-bottom: 0px;
}

.perks-title {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.perks-title img {
  width: 56px;
  margin-right: 12px;
}

.perks-content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
  margin-top: 16px;
}

.looking {
  margin-top: 40.73px;
}

.looking-item {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #4D1929;
  border-radius: 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
  padding-left: 24px;
  margin-bottom: 16px;
}

.looking-item:last-child {
  margin-bottom: 0;
}

.looking-item img {
  width: 26px;
  margin-right: 8px;
}

.features {
  margin-top: 16px;
  padding-left: 44px;
  padding-right: 30px;
  position: relative;
}
.features::after {
  display: block;
  content: '';
  position: absolute;
  height: 79.5%;
  width: 1px;
  background: #85361F;
  left: 0;
  top: 15.5%;
  left: 29px;
}

.features-content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  margin-bottom: 16px;
}
.features-content:last-child {
  margin-bottom: 0;
}

.features-content::after {
  display: block;
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #85361F;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
}
.features-title {
  padding-left: 18px;
  padding-right: 18px;
}
.uked {
  margin-top: 30px;
}
.faqmain {
  margin-top: 30px;
}
.faq-title {
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
}
.faq-title-content {
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item {
  margin-bottom: 16px;
  background: #4D1929;
  border-radius: 12px;
}
.faq-content {
  padding: 13px 16px 38px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 22px;
  font-weight: 400;
  transition: all 0.3s ease-in;
  display: none;
}
.faq-icon {
  transition: all 0.2s ease-in;
}
.faq-item-active{
  background: #662136;
}
.faq-item-active .faq-content {
  display: block;
}
.faq-item-active .faq-title-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-icon-active {
  transform: rotate(180deg);
}
.swiper-container {
  width: 328px;
  height: 220px;
  position: relative;
  margin: 0px auto;
}
.swiper-person {
  position: absolute;
  bottom: 26px;
  left: 24px;
  display: flex;
  align-items: center;
}
.swiper-box {
  width: 100%;
  position: relative;
  padding-top: 30px;
}
.avatar {
  width: 32px;
  margin-right: 10px;
  border-radius: 50%;
}
.indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.indicator {
  width: 18px;
  height: 2px;
  border-radius: 1.85px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.8);
}
.upper {
  width: 40px;
  position: absolute;
  top: 15px;
  left: 15px;
}
.lower {
  width: 40px;
  position: absolute;
  bottom: 75px;
  right: 15px;
}
.upper img,
.lower img {
  width: 40px;
}
.swiper {
  width: 328px;
  height: 220px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #4D1929;
  border-radius: 18.53px;
  box-sizing: border-box;
  position: relative;
}
.avatar-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0;
  line-height: 22.24dp;
  font-weight: 400;
}
.swiper-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.carousel-item {
  padding: 36px 24px 26px;
  width: 100%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.download-parau {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
  margin-top: 16px;
}
.btn-box {
  padding-left: 20px;
  padding-right: 20px;
}
.img-discover {
  padding-left: 50px;
  padding-right: 50px;
}
.img-box {
  position: relative;
}
.img-bg {
  height: 243px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: url('./images/cover_bottom.svg') no-repeat;
  background-size: cover;
}
.footer {
  background: #050208;
  padding-left: 16px;
  padding-right: 16px;
}
.footer img {
  width: 108px;
}
.footer-top {
  padding-top: 46px;
}
.footer-content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
  line-height: 17px;
  font-weight: 400;
  margin-top: 18px;
}
.footer-nav {
  margin-top: 46px;
}

.nav-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}
.nav-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin-top: 21px;
  padding-bottom: 52px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.13);
}
.nav-item .terms {
  margin-left: 88px;
}
.footer-bottom {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 16px;
  font-weight: 400;
  padding-top: 14px;
  padding-bottom: 10px;
}
.footer-bottom-email {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 20px;
  font-weight: 400;
}
.footer-bottom-copy {
  margin-top: 16px;
}
.download-lumi {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
  margin-top: 16px;
}
.sub-title {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
  text-align: center;
  font-weight: 400;
}
.body1{
  margin-top: 30px;
}