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

body {
  font-family: "PT Sans", serif;
  line-height: 1.5;
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #2c5364, #0f2027);
}

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

.fs12 {
  font-size: 12px;
}

.h-content {
  height: unset !important;
  min-height: unset !important;
}

.mb-0 {
  margin-bottom: 0;
}

.w-18 {
  width: 18px !important;
}
.w-16 {
  width: 16px;
}
.w-70 {
  width: 70px !important;
}
.w-22 {
  width: 22px !important;
}
.w-30 {
  width: 30px !important;
}

.w-55 {
  width: 55px !important;
}

.app-container {
  height: calc(100vh - 60px);
  overflow: scroll;
  max-width: 428px;
  width: 100%;
  background-color: white;
  animation: gradient 5s ease infinite;
}

.appSupportFlex {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.appsupportHead {
  color: #000000;
  font-size: 17px;
}

/* Top Bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
}

.top-bar-content.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.233);
}

.top-bar-content {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s ease-in-out;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.play-store-logo {
  height: 1.75rem;
}

.top-barimg {
  max-width: 100%;
}

.qr-img {
  max-width: 100px;
}

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

.separator {
  height: 1.25rem;
  width: 1px;
  background-color: #d1d5db;
}

.category {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
}

.top-bar-right {
  display: flex;
  gap: 1rem;
}

.icon-button {
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.icon-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.icon-button svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #4b5563;
}

/* Main Content */
.main-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 20px 20px 106px 20px;
}

/* App Header */
.app-header {
  /* display: flex; */
  gap: 1.5rem;
}

.app-icon-wrapper {
  width: 100%;
  display: flex;
  gap: 30px;
}

.app-icon {
  width: 70px;
  height: fit-content;
  border-radius: 12px;
  overflow: hidden;

  transition: transform 0.3s;
}

.app-icon:hover {
  transform: scale(1.05);
}

.app-icon img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.shrink-logo {
  width: 40px !important; /* Smaller size */
  height: 40px !important;
  border-radius: 5px;
}

/* Spinner effect */
.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #0b57cf;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.spinner-active::before {
  opacity: 1;
}

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

.sparkle-badge {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  background: #0b57cf;
  color: white;
  padding: 0.375rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sparkle-badge svg {
  width: 1rem;
  height: 1rem;
}

.app-info {
  flex: 1;
}

.app-title {
  margin-bottom: 0.25rem;
}

.app-title h1 {
  font-size: 34px;
  font-weight: 700;
}

.verified-icon {
  color: #22c55e;
  width: 1.25rem;
  height: 1.25rem;
}

.app-id {
  font-size: 0.875rem;
  color: #2959ab;
  font-weight: 500;
  margin-bottom: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.app-stats {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 30px;
}

.rating {
  flex-direction: column;
  align-items: center;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star-filled {
  color: #fbbf24;
  fill: #fbbf24;
  width: 1.25rem;
  height: 1.25rem;
}

.downloads {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.downloads .number {
  font-size: 14px;
  font-weight: 700;
}

.downloads .label {
  font-size: 0.875rem;
  color: #4b5563;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--primary-gradient);
  border-radius: 9999px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.verified-badge svg {
  width: 1rem;
  height: 1rem;
}

.playprotect {
  font-size: 12px;
  display: flex;
  align-items: center;
  line-height: 0;
  gap: 10px;
  margin-top: 10px;
}

/* Install Button */
.disable-btn {
  background-color: gray !important; /* Change color to gray */
  /* cursor: not-allowed;      Show disabled cursor */
  opacity: 0.6 !important; /* Make it look inactive */
}

.install-button-wrapper {
  padding-top: 1rem;
  margin-bottom: 22px;
}

.install-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 13px 2rem;
  border: none;
  background-color: #0b57cf;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.install-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.15);
}

.install-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.arrow-circle {
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle svg {
  width: 1rem;
  height: 1rem;
}

/* Screenshots */
.screenshots-section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 10px;
}

.section-title svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #0b57cf;
}

.screenshots-container {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.screenshots-container::-webkit-scrollbar {
  display: none;
}

.screenshot {
  flex: 0 0 220px;
  height: 440px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.screenshot:hover {
  transform: scale(1.05);
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.screenshot:hover .screenshot-overlay {
  opacity: 1;
}

/* About Section */
.about-section {
  margin: 2.5rem 0;
}

.about-description {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.m-0 {
  margin: 0;
  margin-bottom: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s;
}

.feature:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Additional Info */
.additional-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.additional-info h3 {
  font-size: 15px;
  text-align: center;
}

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.info-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
  color: #4b5563;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.border {
  padding: 1px;
  margin: 0 20px;
  height: 26px;
  background: #1c1c1c29;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-rect {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide-rect img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  margin-right: 5%;
}

.border-right {
  border-right: 1px solid rgba(128, 128, 128, 0.514);
}

.chart {
  width: 55%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

.chart .rate-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 30px;
  padding: 20px 0;
}
.chart .rate-box > * {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #444;
  font-size: 15px;
}
.rate-box .value {
  display: flex;
  align-items: center;
}
.rate-box .value:hover {
  color: #0b57cf;
}
.chart .value {
  font-size: 15px;
  cursor: pointer;
}
.rate-box .progress-bar {
  border-width: 1px;
  position: relative;
  background-color: #cfd8dc91;

  height: 10px;
  border-radius: 100px;
  width: 100%;
}
.rate-box .progress-bar .progress {
  background-color: #0b57cf;
  height: 100%;
  border-radius: 100px;
  transition: 300ms ease-in-out;
}

.global {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  gap: 8px;
}
.one .fas {
  color: #cfd8dc;
}

.two {
  background: linear-gradient(to right, #0b57cf 0%, transparent 0%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  transition: 0.5s ease-in-out all;
}

.global > span {
  font-size: 50px;
  font-weight: 500;
}

.rating-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 10%;
}
.rating-icons span {
  position: absolute;
  display: flex;
  font-size: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px;
}

.comments__tips {
  color: #444;
  font-size: 13px;
  margin: 20px 0 10px;
}

.comments__type {
  display: flex;
  flex-flow: wrap;
  margin: 40px 0 20px;
  gap: 20px;
}
.comments__type-item {
  align-items: center;
  border: 1px solid #dadce0;
  border-radius: 15.5px;
  color: #5f6368;
  display: flex;
  font-size: 13px;
  height: 31px;
  justify-content: center;
  padding: 0 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.comments__type-item img {
  width: 13px;
  margin-right: 10px;
}

.comments__type-active {
  background-color: #e6f3ef;
  border: 1px solid #e6f3ef;
  color: #028760;
}

.total-reviews {
  font-size: 14px !important;
  font-weight: 400 !important;
  margin-left: 7px;
}

.review {
  display: flex;
  border-radius: 15px;
  gap: 40px;
  justify-content: space-between;
}

.review-box {
  margin: 20px 0;
}

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

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.description__label {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 15px;
  gap: 15px;
}
.description__label-item {
  align-items: center;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  color: #5f6368;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  height: 30px;
  justify-content: center;
  padding: 0 12px;

  width: -moz-fit-content;
  width: fit-content;
}

.user-name {
  color: #222;
  font-size: 14.5px;
  /* letter-spacing: 1px; */
}

.user-img {
  height: 30px;
}

.user-info .user-img img {
  width: 30px;
  border-radius: 100%;
}

.rating-box {
  font-size: 12px;
  margin-top: 15px;
}

.allReview {
  width: fit-content;
  font-size: 15px;
  border-radius: 17px;
  color: #0b57cf;
  cursor: pointer;
}

.twoButton {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 50px;
}

.twoButtonDesign {
  font-size: 14px;
  border-radius: 10px;
  width: 100%;
  padding: 16px;
  text-align: center;
}

#countdown-download {
  font-size: 13px;
  font-weight: 600;
}

.open {
  background-color: #0b57cf;
  color: white;
  border: none;
  cursor: pointer;
}

#install {
  transition: opacity 0.5s ease-in-out;
}

#uninstall {
  opacity: 1;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  display: none;
}

#uninstall.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.data-safety {
  border: 1px solid rgba(102, 102, 102, 0.342);
  border-radius: 15px;
  padding: 10px 30px;
}

.data-text-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
}

.data-text-box span {
  font-size: 14px;
  color: #444;
}

.green {
  color: #0b57cf;
}
.review-text {
  font-size: 14px;
  margin-top: 10px;
}

.footer-link {
  color: #606468;
  font-size: 14px;
}
.bottom-bar-container {
  width: 428px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-bar {
  display: flex;
  justify-content: space-around;
  background: aliceblue;
  padding: 2px 0;
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  z-index: 9999;
  left: 0;
  /* margin-left: -30px;   */
}

.bottom-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  gap: 3px;
}

.bottom-boxes svg {
  margin: auto;
}

.shareTxt {
  font-size: 13px;
  line-height: 0;
  color: #0b57cf;
  font-weight: 500;
}

/* Core styles/functionality */
.tab {
  position: relative;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
  max-height: 15rem;
}

/* Visual styles */
.accordion {
  margin-top: 20px;
  overflow: hidden;
}
.tab__label,
.tab__close {
  display: flex;

  cursor: pointer;
}
.tab__label {
  justify-content: space-between;
  padding: 0 15px 0 0;
}
.tab__label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}
.tab__content p {
  margin: 0;
  /* padding: 1rem; */
  font-size: 14px;
}
.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.me-3 {
  margin-right: 12px;
}

.overlay {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: all 450ms cubic-bezier(0.32, 1, 0.23, 1) 0ms;
}

.social {
  position: fixed;
  bottom: 0;
  max-width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.22),
    0px 14px 56px rgba(0, 0, 0, 0.25);
  transform: translate(0, 100%);
  transition: all 450ms cubic-bezier(0.32, 1, 0.23, 1) 100ms;
}

.count {
  display: none !important;
}

.bottom-sheet-appnamebox {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 15px;
}

.link {
  font-size: 10px;
}

.bottom-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  padding: 10px 20px;
  border-bottom: 2px solid #0b57cf27;
}

.bottom-install {
  background-color: #0000ff;
  border: none;
  color: white;
  border-radius: 30px;
  font-size: 14px;
  padding: 10px 25px;
}

.btn-close {
  color: #666;
  transform: scale(0, 0);
  transition: all 450ms ease-in-out 0;
}

.overlay:target {
  display: block;
  position: fixed;
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.overlay:target .social {
  transform: translate(0, 0);
  z-index: 99999;
  border-radius: 22px;
}

.overlay:target .btn-close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  outline: none;
  transform: scale(1, 1);
}

.bottom-sheet-border {
  width: 40px;
  height: 3px;
  border-radius: 20px;
  background-color: #5f636838;
  padding: 1px;
  margin: auto;
  margin-top: 5px;
}

.swiper-wrapper {
  min-height: 224px;
}

@media screen and (min-width: 640px) {
  .overlay {
    padding: 0 24px;
    display: none !important;
  }

  .social {
    width: calc(100% - 48px);
  }

  .social ul {
    column-gap: 64px;
  }

  .social {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .rated18 {
    display: none;
  }

  .global {
    margin: auto;
  }
  .app-header {
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .additional-info {
    grid-template-columns: 1fr;
  }

  .app-title {
    justify-content: center;
  }

  .app-title h1 {
    font-size: 20px;
    font-weight: 700;
    /* text-align: center; */
  }
}

@media (max-width: 425px) {
  .app-icon-wrapper {
    gap: 20px;
  }
}
