@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --site-one-color: #000000;
  --site-two-color: linear-gradient(
    90deg,
    #101010,
    #2b2b2b 25%,
    #444444 50%,
    #2b2b2b 75%,
    #101010
  );
  --site-there-color: #333;
  --black-color: black;
  --white-color: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Utility classes */
.font-roboto {
  font-family: "Roboto", sans-serif !important;
}

.font-wittgenstein {
  font-family: "Wittgenstein", serif !important;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--site-one-color);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100vw;
  height: 100%;
}

/* play store page */
.play-store-body {
  background-color: white;
}
.play-store-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.play-store-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.play-store-header .ps-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

/* Logo desktop only */
.play-store-header .play-store-logo img {
  height: 40px;
}

/* Search box */
.play-store-header .ps-search-item .ps-search-box {
  display: flex;
  align-items: center;
  background: #f1f3f4;
  border-radius: 8px;
  padding: 8px 12px;
  width: 350px;
}

.play-store-header .ps-search-item .ps-search-box i {
  font-size: 16px;
  color: #5f6368;
  margin-right: 8px;
}

.play-store-header .ps-search-item .in-search {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: #202124;
}

.play-store-header .ps-search-item .in-search::placeholder {
  color: #5f6368;
}

/* Circle icons */
.play-store-header .ps-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-store-header .ps-icons .circle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.play-store-header .ps-icons .circle-icon.gray {
  background: #e0e0e0;
  color: #444;
  font-size: 18px;
}

.play-store-header .ps-icons .circle-icon.purple {
  background: #6a1b9a;
}

/* Back button (hidden in desktop) */
.back-btn {
  display: none;
  font-size: 20px;
  color: #444;
  cursor: pointer;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .play-store-header .ps-header-nav {
    justify-content: flex-start;
    gap: 10px;
  }

  /* Logo hide on mobile */
  .play-store-logo {
    display: none;
  }

  /* Back button show */
  .back-btn {
    display: block;
  }

  /* Search bar full width */
  .play-store-header .ps-search-item {
    flex: 1;
  }

  .play-store-header .ps-search-item .ps-search-box {
    width: 100%;
  }

  /* Icons on right */
  .ps-icons {
    margin-left: auto;
  }
}

.app-details-section {
  padding: 100px 0 40px 0;
}
.app-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #006a4e; /* Play Store green shade */
}

.app-icon {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
}
.ratting-d-ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
}
.ratting-d-ul li {
  position: relative;
  padding: 2px 10px;
  font-size: 14px;
}
.ratting-d-ul li:nth-child(1):after {
  display: none;
}
.ratting-d-ul li .box-3 {
  border: 1px solid black;
}
.ratting-d-ul li::after {
  position: absolute;
  height: 50%;
  width: 1px;
  background-color: rgb(202, 202, 202);
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.screenshot-slider .item {
  text-align: center;
}

.screenshot-slider img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: auto;
}

.support-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.support-list a {
  color: #006a4e;
  text-decoration: none;
}

.support-list a:hover {
  text-decoration: underline;
}

/* Owl Nav buttons */
.screenshot-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* so only buttons clickable */
  padding: 4px;
}

.screenshot-slider .owl-nav button {
  background: white !important;
  color: #000 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  pointer-events: auto; /* enable clicks */
  transition: background 0.3s;
}

.screenshot-slider .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}
.about-app h4 {
  font-size: 1.3rem;
}

.about-app p {
  font-size: 15px;
  line-height: 1.6;
}

.about-app .card {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.about-app .card i {
  font-size: 18px;
}

.ratings-reviews .progress {
  height: 8px;
  background-color: #e9ecef;
}

.ratings-reviews .progress-bar {
  border-radius: 4px;
}

.reviews-list .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #006a4e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.ps-footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.ps-footer-links li {
  margin-bottom: 6px;
}

.ps-footer-links a {
  text-decoration: none;
  color: #006a4e;
  font-size: 14px;
}

.ps-footer-links a:hover {
  text-decoration: underline;
}

.ps-footer hr {
  margin: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.ps-footer .footer-left a {
  color: #006a4e;
  text-decoration: none;
}

.ps-footer .footer-left a:hover {
  text-decoration: underline;
}

.play-store-button {
  background-color: #fff;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  justify-content: center;
}
.play-store-button img {
  width: 30px;
}

.apps-header img {
  display: none;
  width: 72px;
  height: 72px;
}
.apps-header p {
  line-height: 1;
  margin: 0;
}
.ratings-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.market-day{
  font-size: 32px;
}

.market-box{
  /* border: 2px solid rgb(255, 102, 0);
  border-radius: 10px; */
  padding: 10px;
}

.market-day-ul{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.market-day-ul li{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid gray;
 
}

.market-day-ul li span{
  font-size: 14px;
  line-height: 1;
}
.market-day-ul li .market-day-name{
  font-size: 28px;
  color: rgb(255, 102, 0);
  font-weight: 600;

}

.arrow-type-ul {
    font-size: 20px;
    font-weight: 600;
    font-family: 'bootstrap-icons';
    list-style-type: disclosure-closed;
}



.screenshot-slider .owl-nav button:hover {
    color: white !important;
}
.screenshot-slider .owl-nav button span {
  font-size: 26px  !important;
}




  .feat-sec{
    padding: 30px 0;
    background:
      radial-gradient(circle at 20% 10%, rgba(255,255,255,.06) 0 1px, transparent 1.2px) 0 0/26px 26px,
      radial-gradient(circle at 70% 35%, rgba(255,255,255,.05) 0 1px, transparent 1.2px) 0 0/30px 30px,
      linear-gradient(180deg, #0d1a27, #0b1521);
    color: #e6edf3;
  }


  /* Call bar */
  .feat-call{
    display:flex; align-items:center; justify-content:center; gap:.5rem;
    width:100%;
    padding:10px 14px;
    border-radius:10px;
    background:rgba(255,255,255,.06);
    color:#fff; text-decoration:none; font-weight:700;
    border:1px solid  rgba(255,255,255,.08);
    box-shadow: 0 6px 18px rgba(0,0,0,.25) inset, 0 6px 18px rgba(0,0,0,.15);
    margin-bottom: 12px;
  }
  .feat-call svg{ width:18px; height:18px }

  /* Grid */
  .feat-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:12px;
  }

  /* Card */
  .feat-card{
    position:relative;
    padding:16px 14px;
    border-radius:18px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
      #152535;
    border:1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    overflow:hidden;
  }
  .feat-card::after{
    content:"";
    position:absolute; inset:-1px;
    border-radius:inherit;
    background: radial-gradient(90% 70% at 20% 0%, rgba(255,255,255,.08), transparent 55%);
    pointer-events:none;
  }

  .feat-ico{
    width:44px; height:44px; border-radius:12px;
    display:grid; place-items:center;
    margin-bottom:10px; color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  }
  .feat-ico svg{ width:24px; height:24px }

  /* Icon colors */
  .feat-ico.trophy{ color: #ffc24b; }
  .feat-ico.shield{ color: #2bd17e; }
  .feat-ico.bolt{ color: #5aa9ff; }
  .feat-ico.users{ color: #ff6b6b; }

  .feat-card h3{
    margin:0 0 4px 0;
    font-size:16px; line-height:1.2; letter-spacing:.2px; color:#fff;
  }
  .feat-card p{
    margin:0; font-size:13px; line-height:1.35; color: var(--sub);
  }

 
 .footer-section {
    padding: 80px 0;
    background-color: black;
    color: white;
}.heading-3 {
    font-size: 1.75rem;
}
  @media (max-width: 360px){
    .feat-grid{ grid-template-columns: 1fr; }
  }



.social-icon ul {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.social-icon ul li {
  list-style: none;
}

.social-icon ul li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  /* line-height: 40px; */
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
  text-decoration: none;
}

.social-icon ul li a .icon {
  position: relative;
  color: #262626;
  transition: 0.5s;
  z-index: 3;
}

.social-icon ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-icon ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

.social-icon ul li a:hover:before {
  top: 0;
}

.social-icon ul li:nth-child(1) a:before {
  background: #3b5999;
}

.social-icon ul li:nth-child(2) a:before {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-icon ul li:nth-child(3) a:before {
  background: #0077b5;
}

.social-icon ul li:nth-child(4) a:before {
  background: #dd4b39;
}

.Copyright {
  font-size: 14px;
  color: var(--white-color);
  padding: 10px;
  text-align: center;
}
.Copyright p {
  margin: 0;
}

.navbar-nav {
  gap: 10px;
}
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.btn-52,
.btn-52 *,
.btn-52 :after,
.btn-52 :before,
.btn-52:after,
.btn-52:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-52 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: var(--black-color);
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-align: center;
}

.btn-52:disabled {
  cursor: default;
}

.btn-52:-moz-focusring {
  outline: auto;
}


.btn-52 [hidden] {
  display: none;
}

.btn-52 {
  border: 1px solid;
  border-radius: 999px;
  box-sizing: border-box;
  display: block;
  font-weight: 900;
  overflow: hidden;
  padding: 1rem 2.5rem;
  position: relative;
  text-transform: uppercase;
}

.btn-52 .original {
  background: #fff;
  color: var(--black-color);
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-52:hover .original {
  transform: translateY(100%);
}

.btn-52 .letters {
  display: inline-flex;
}

.btn-52 span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s, opacity 0.2s;
}

.btn-52:hover span {
  opacity: 1;
  transform: translateY(0);
}

.btn-52:hover span:nth-child(2) {
  transition-delay: 0.1s;
}

.btn-52:hover span:nth-child(3) {
  transition-delay: 0.2s;
}

.btn-52:hover span:nth-child(4) {
  transition-delay: 0.3s;
}

.btn-52:hover span:nth-child(5) {
  transition-delay: 0.4s;
}

.btn-52:hover span:nth-child(6) {
  transition-delay: 0.5s;
}

.btn-52:hover span:nth-child(7) {
  transition-delay: 0.6s;
}
.btn-52:hover span:nth-child(8) {
  transition-delay: 0.7s;
}
.btn-52:hover span:nth-child(9) {
  transition-delay: 0.8s;
  margin-left: 4px;
}
.btn-52:hover span:nth-child(10) {
  transition-delay: 0.9s;
}
.btn-52:hover span:nth-child(11) {
  transition-delay: 1s;
}
.btn-52:hover span:nth-child(12) {
  transition-delay: 1.1s;
}

.footer-menu-items ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.footer-menu-items ul a {
  color: var(--white-color);
  text-decoration: none;
}












@media (max-width: 992px) {.apps-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
  .ratting-d-ul li small,
  .ratting-d-ul li span {
    white-space: nowrap;
  }
  .app-icon {
    display: none;
  }
  .apps-header img {
    display: block;
  }
  .apps-header .apps-heade-content {
    width: calc(100% - 120px);
  }
  .app-title {
    color: #000;
    font-size: 2rem;
    line-height: 1;
  }

  .ratting-d-ul {
    overflow: hidden;
    overflow-x: scroll;
  }
  .ratting-d-ul::-webkit-scrollbar {
    display: none;
  }
  .ratting-d-ul li {
    padding: 6px 20px;
  }
    .market-day-ul li .market-day-name{
    font-size: 16px;
  }
  .market-day-ul li span{
    font-size: 12px;
  }
  .market-day-ul li{
    padding: 0;
    height: 100px;
  }
  .market-box,
  .marte-day-night-section .col-4{
    padding: 0;
  }
}

@media (max-width: 768px) {
  .app-title {
    font-size: 1.5rem;
  }
  .apps-header p {
    font-size: 14px;
    font-weight: 400;
  }
  .about-app p {
    font-size: 15px;
    line-height: 1.4;
    color: #5f6368;
  }
  .ratings-box{
    flex-direction: column;
    align-items: start;
  }

}
