*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Roboto', Arial, sans-serif;
  background:#fff;
}

/* HEADER */
.gp-header{
  height:64px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #e0e0e0;
}

/* LEFT */
.gp-left{
  display:flex;
  align-items:center;
  gap:40px;
}

.gp-logo-wrap{
  display:flex;
  align-items:center;
  gap:8px;
}

.gp-icon{
  width:42px;
  height:42px;
}

.gp-text{
  font-size:20px;
  font-weight:500;
  color:#5f6368;
}

/* NAV */
.gp-nav{
  display:flex;
  gap:28px;
}

.gp-nav a{
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  color:#5f6368;
  padding:20px 0;
  position:relative;
}

.gp-nav a.active{
  color:#1a73e8;
}

.gp-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:2px;
  background:#1a73e8;
  border-radius:2px;
}

/* RIGHT */
.gp-right{
  display:flex;
  align-items:center;
  gap:20px;
}

.gp-action{
  width:20px;
  height:20px;
  cursor:pointer;
}

.gp-profile{
  width:32px;
  height:32px;
  background:#00897b;
  color:#fff;
  font-size:14px;
  font-weight:500;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* MOBILE */
@media(max-width:768px){
  .gp-header{
    height:56px;
    padding:0 16px;
  }

  .gp-nav{
    display:none;
  }

  .gp-icon{
    width:38px;
    height:38px;
  }

  .gp-text{
    font-size:18px;
  }
}


.app-hero{
  display:flex;
  justify-content:space-between;
  padding:48px 80px;
  gap:60px;
}

.app-left{
  max-width:780px;
}

/* TITLE */
.app-title{
  font-size:54px;
  font-weight:500;
  line-height:1.2;
  color:#202124;
  margin-bottom:16px;
}

/* DEVELOPER */
.app-developer{
  display:inline-block;
  margin-bottom:28px;
  color:#01875f;
  font-weight:500;
  text-decoration:none;
}

/* META INFO */
.app-meta{
  display:flex;
  gap:40px;
  margin-bottom:28px;
}

.app-meta div{
  text-align:left;
}

.app-meta strong{
  display:block;
  font-size:12px;
  color:#202124;
}

.app-meta span{
  font-size:13px;
  color:#5f6368;
}

/* BUTTONS */
.app-actions{
  display:flex;
  gap:16px;
  margin-bottom:16px;
}

/* A TAG = BUTTON */
.btn-install,
.btn-play{
  display:inline-flex;              /* 👈 important */
  align-items:center;
  justify-content:center;
  text-decoration:none;             /* underline remove */
  color:#fff;                       /* text color fix */
}

/* INSTALL BUTTON */
.btn-install{
  background:#01875f;
  padding:12px 28px;
  border-radius:8px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
}

/* PLAY BUTTON */
.btn-play{
  background:#b75c56;
  padding:12px 28px;
  border-radius:8px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;

  /* animation */
  animation: blinkPulse 1.5s infinite;
}

/* Animation */
@keyframes blinkPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover polish (optional) */
.btn-install:hover,
.btn-play:hover{
  opacity:0.9;
}


/* NOTE */
.app-note{
  font-size:13px;
  color:#5f6368;
}

/* RIGHT ICON */
.app-right img{
  width:230px;
  height:230px;
  border-radius:24px;
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/* ================= MOBILE – GOOGLE PLAY STYLE ================= */
@media(max-width:900px){

  .app-hero{
    flex-direction:column;
    padding:20px 16px;
    gap:20px;
  }

  /* TOP ROW (ICON + TEXT) */
  .app-left{
    max-width:100%;
  }

  .app-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:12px;
  }

  .app-right{
    position:absolute;
    left:16px;
    top:92px;
  }

  .app-right img{
    width:72px;
    height:72px;
    border-radius:16px;
    box-shadow:0 6px 12px rgba(0,0,0,.18);
  }

  /* TITLE */
  .app-title{
    font-size:20px;
    font-weight:500;
    line-height:1.25;
    margin-left:88px;
    margin-bottom:4px;
  }

  /* DEVELOPER */
  .app-developer{
    font-size:14px;
    margin-left:88px;
    margin-bottom:12px;
  }

  /* META INFO */
  .app-meta{
    gap:32px;
    margin-left:88px;
    margin-bottom:16px;
  }

  .app-meta strong{
    font-size:14px;
  }

  .app-meta span{
    font-size:12px;
  }

  /* BUTTONS */
  .app-actions{
    flex-direction:column;
    gap:12px;
  }

  .btn-install,
  .btn-play{
    width:100%;
    padding:14px 0;
    font-size:15px;
    border-radius:10px;
  }

  /* NOTE */
  .app-note{
    margin-top:8px;
    font-size:12.5px;
  }
}


.gp-preview-support{
  display:flex;
  gap:32px;
  padding:32px 24px;
}

/* ================= SCREENSHOTS ================= */
.gp-screenshots{
  flex:1;
}

.shots-wrapper{
  display:flex;
  padding: 0 50px;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.shots-wrapper::-webkit-scrollbar{
  display:none;
}

.shot-card{
  min-width:140px;
  height: 100%;
  background:#3b66f5;
  border-radius:16px;
  padding:12px;
  color:#fff;
  scroll-snap-align:start;
  box-shadow:0 8px 16px rgba(0,0,0,.2);
}

.shot-card p{
  font-size:12px;
  font-weight:500;
  margin-bottom:8px;
}

.shot-card img{
  width:100%;
  height: 250px;
  border-radius:12px;
}

/* ================= APP SUPPORT ================= */
.app-support{
  width:260px;
}

.support-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.support-header h3{
  font-size:18px;
  font-weight:500;
  color:#202124;
}

.arrow{
  font-size:18px;
  color:#5f6368;
}

.support-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.support-item .icon{
  font-size:18px;
}

.support-item p{
  font-size:14px;
  color:#202124;
}

.support-item a{
  font-size:14px;
  color:#1a73e8;
  text-decoration:none;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .gp-preview-support{
    flex-direction:column;
  }

  .app-support{
    display:none; /* Google Play jaisa */
  }
}






.app-info {
  background: #ffffff;
  padding: 30px 15px;
  color: #222;
}

.container {
  max-width: 900px;
 padding-left: 50px;
}

h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.mt {
  margin-top: 35px;
}

.app-desc,
.data-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.app-points {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.app-points li {
  margin-bottom: 8px;
  font-size: 14px;
}

.download-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  margin-top: 10px;
  color: #555;
}

.tag {
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* DATA SAFETY BOX */
.safety-box {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-top: 15px;
  padding: 10px;
}

.safety-item {
  display: flex;
  gap: 15px;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
}

.safety-item:last-child {
  border-bottom: none;
}

.safety-item svg {
  width: 26px;
  height: 26px;
  fill: #5f6368;
  flex-shrink: 0;
}

.safety-item strong {
  font-size: 14px;
}

.safety-item p {
  font-size: 13px;
  margin: 4px 0 0;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  h2 {
    font-size: 20px;
  }

  .safety-item {
    align-items: flex-start;
  }

  .container {
padding-left: 10px;
  }
}



.reviews-section {
  background: #fff;
  padding: 30px 15px;
  margin-left: 50px;
  float: left;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.reviews-container {
  max-width: 900px;
  margin: auto;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.reviews-header h2 {
  font-size: 22px;
}

.verified {
  font-size: 13px;
  color: #666;
}

.rating-summary {
  display: flex;
  gap: 40px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.rating-left {
  min-width: 140px;
}

.rating-score {
  font-size: 48px;
  font-weight: bold;
}

.stars {
  color: #0f9d58;
  font-size: 18px;
}

.total-reviews {
  font-size: 13px;
  color: #666;
}

.rating-bars {
  flex: 1;
}

.bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bar span {
  font-size: 13px;
  width: 15px;
}

.progress {
  background: #e6e6e6;
  height: 8px;
  border-radius: 10px;
  flex: 1;
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  background: #0f9d58;
}

/* REVIEW CARD */
.review-card {
  /* border-top: 1px solid #eee; */
  padding: 25px 0;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-stars {
  font-size: 14px;
  color: #0f9d58;
}

.review-stars span {
  color: #666;
  font-size: 12px;
  margin-left: 8px;
}

.dots {
  margin-left: auto;
  font-size: 22px;
  color: #777;
  cursor: pointer;
}

.review-text {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
}

.helpful-btns button {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  margin-left: 8px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .rating-summary {
    gap: 20px;
  }

  .reviews-section{
    margin-left: 10px;
  }
  .rating-score {
    font-size: 40px;
  }
}


.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color:white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}
