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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #333;
    overflow-x: hidden;
    
  }

::-webkit-scrollbar {
	width: 0;
	height: 0;
}

a {
    text-decoration: none;
}
.mobile-wrap {
    width: 100%;
    padding: 20px auto 20px auto;
	position: sticky;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	z-index: 999;
    top: 0 !important;
    margin: 0;
    background-color: #ffffff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}


/* APP TITLE */

.app-title {
    margin: 80px auto 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-title img {
    width: 118px;
    height:118px;
    border-radius: 10px;
}

.desc {
    margin: 0 0 0 20px;
}
.app-title h1 {
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-weight: 300;
    margin-top: 10px;
}

.info-text {
    color: #01875f;
    font-weight: 500;
    margin: 5px 0;
}
.sub-text {
    color: rgb(95, 99, 104);
    font-size: 14px;
}

.ratings {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    margin: 40px 0;
}

.ratings div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
}

.ratings div small {
    display: block; 
    margin-top: 0.2rem;
    font-size: .9rem; 
    color: #666; 
}

.green-bg {
    background-color: green;
    color: white;
    padding: 0 5px;
    border-radius: 2px;
}

.downloads {
    border-left: 2px solid #817f7f;
    border-right: 2px solid #817f7f;
    padding: 5px 15px;
    margin: 5px 0;
}

/* Existing Styles */
.install-button {
    font-size: 1rem;
    background-color: rgb(1, 135, 95);
    padding: 12px;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 10px;
    margin: 5px 0;
    position: relative;  /* Make sure the ::after pseudo-element is positioned relative to the button */
    overflow: hidden;   /* Hide the shiny effect from overflowing outside the button */
}

.install-button small {
    color: #fff;
}

.install-button img {
    width: 20px;
    margin-right: 5px;
}

.install-button a {
    color: #fff;
    text-decoration: none;  /* Remove underline from the link */
    position: relative;     /* Needed for positioning the shiny effect */
}

/* Shiny Effect */
.install-button::after {
    content: "";
    position: absolute;
    top: -180px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: scale(0) rotate(-45deg);
    transform: scale(0) rotate(-45deg); 
    animation: shiny-btn-anim 4s ease-in-out infinite;
}

@keyframes shiny-btn-anim {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    80% {
        opacity: 0.5;
        transform: scale(0) rotate(-45deg);
    }
    81% {
        opacity: 1;
        transform: scale(4) rotate(-45deg);
    }
    to {
        opacity: 0;
        transform: scale(50) rotate(-45deg);
    }
}


.webv {
    font-size: 17px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 10px 0;
}

.scrollable-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-top: 16px;
}

.scrollable-gallery img {
    width: auto;
    height: 224px;
    border-radius: 8px;
    flex-shrink: 0;
    cursor: pointer;
}


 /* Custom Modal Styles */
 .custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.custom-modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
    overflow: hidden;
}
.custom-modal img {
    max-width: 100%;
    max-height: 100%;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description {
    margin: 30px 0;
}

.description p {
    margin: 10px;
    font-size: 15px;
    color: #666;
}

.description h4 {
    font-weight: 400;
    margin: 20px 0 0 0;
}

button {
    padding: 5px 10px;
    margin: 0 0 0 5px;
    border: 0.01px solid #c2bbbb;
    border-radius: 20px;
    
}

.details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #666;
    border: 1px solid #c2bbbb;
    border-radius: 10px;
    padding: 15px;
    line-height: 25px;
  }
  
  .detail-item {
    display: flex;
    align-items: flex-start;
  }
  
  .detail-item img {
    margin-right: 10px;
    width: 20px;
  }
  
  .detail-item span {
    display: inline-block;
  }

  .details a {
    text-decoration: none;
    color: #01875f;
  }

  .rating-container {
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rating-header {
    text-align: center;
}

.rating-header h1 {
    font-size: 2.5em;
    margin: 0;
}

.rating-header p {
    color: #888;
}

.stars {
    font-size: 1.5em;
    color: #ffbf00;
    margin-bottom: 10px;
}

.rating-bars {
    margin: 20px 0;
    width: 50%;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.rating-bar span {
    width: 20px;
    text-align: center;
}

.bar {
    flex: 1;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-left: 10px;
}

.fill {
    height: 100%;
    background: #4caf50;
    border-radius: 5px;
}



.review {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    display: flex;
    align-items: center;
}

.profile {
    color: #fff;
    width: 25px;
    height: 25px;
    padding: 3px;
    text-align: center;
    border: 1px solid #9f00fc;
    border-radius: 50%;
    background-color: #9f00fc;
}

.profile1 {
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;

}

.prof-des {
    margin-bottom: 15px;
}
.prof-des p {
    margin: 10px 0;
    color: #666;
}

.review h3 {
    margin: 0 10px;
    font-size: 1.2em;
}

.review p {
    margin: 5px 0;
}

.helpful {
    color: #888;
    font-size: 0.9em;
}

.w-star span {
    color: #01875f;
}

.green {
    margin-bottom: 60px;
}
.green h4 {
    color: #01875f;
    margin-bottom: 25px;
    padding: 10px 15px;
}

.green p {
    color: #666;
    line-height: 25px;
}


.icons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.icon-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icons {
    display: flex;
    align-items: stretch; 
    gap: 10px;
}

.icons img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}

.icons-text {
    color: #666;
    display: grid;
    grid-template-rows: max-content;
    height: fit-content;
    row-gap: 2px;
}
.icons-text span,
.icons-text p {
    align-items: center;
    display: inline-flex;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.icons-text span {
    font-size: 15px;
    font-weight: 400;
}
.icons-text p {
    font-size: 12px;
}


.games .space {
    margin-bottom: 20px;
}


.marginbtm {
    margin: 20px 0 60px 0 !important;
}

.flag {
    width: 17px;
    height: 15px;
    float: left;
}

.marginbtm span {
    padding-left: 20px;
    color: rgb(48, 49, 51);
}

.g-play-sec {
    margin-bottom: 100px;
}

.g-play-sec span,
.g-play-sec h4 {
    display: flex;
    line-height: 35px;
    color: #666;
}

.lastrow {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
}

.lastrow p {
    
    line-height: 48px;
    margin-right: 24px;
    font-size: 14px;
    color: #666;
}

 .lang {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}
 .lang img {
    width: 25px;
    height: 20px;
    margin-right: 10px;
}




@media only screen and (max-width: 430px) {
    body {
      max-width: 430px;
    }
    .head {
        max-width: 430px;
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        z-index: 999;
        top: 0 !important;
    }
    .head .btn {
        border-radius: .1rem;
        font-size: .24rem;
        color: #fff;
        height: 2rem;
        margin: 20px;
    }
    .scrollable-content {
        width: 100%;
        padding: 0 20px;
    }
    /*FOOTER*/
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px 0;
  }
  
  .bottom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-content: space-around;
    align-items: center;
    
  }
  
  .bottom-nav li {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: space-around;
    align-items: center;
  }
  
  .bottom-nav li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bottom-icons {
    width: 25px !important;
    height: 25px !important;
    margin-bottom: 5px;
  }

  }

  @media only screen and (min-width: 430px) {
    body {
        width: 430px !important;
        margin: 0 auto;
    }
    .head {
        max-width: 430px;
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        z-index: 999;
        top: 0 !important;
    }
    .head .btn {
        border-radius: .1rem;
        font-size: .24rem;
        color: #fff;
        height: 2rem;
        margin: 20px;
    }
    
    .mobile-wrap {
        margin: 0 auto;
    }
    .scrollable-content {
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    .bottom-nav {
        bottom: 0;
        display: flex;
        justify-content: center;
        position: fixed;
        z-index: 3;
        background-color: #fff;
    }

    .bottom-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-around;
        align-content: space-around;
        align-items: center;
      }
      .bottom-nav li {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-content: space-around;
        justify-content: space-around;
        align-items: center;
        padding: 5px 15px;
        width: 100%;
      }

      .bottom-nav li a {
        color: #333 !important;
        text-decoration: none;
        display: block;
        padding: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .bottom-icons {
        width: 25px !important;
        height: 25px !important;
        margin-bottom: 5px;
      }

      .mobile-wrap {
        margin: 0 auto;
    }
    .scrollable-content {
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

  }