/* RESET */

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

:root{
  --primary:#2A134C;
  --secondary:#DB8A35;
  --text:#4b5563;
  --bg:#f7f8fc;
  --border:#ececec;
}

/* BODY */

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

.container{
  width:100%;
  max-width:950px;
  margin:auto;
  padding:18px;
}

/* HERO */

.hero-banner img{
  width:100%;
  display:block;
}

/* =========================
   TABS
========================= */

.tabs{
  display:flex;
  max-width:950px;
  margin:auto;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.tab{
  flex:1;
  text-align:center;
  padding:16px 10px;
  background:#fff;
  color:var(--primary);
  font-weight:600;
  cursor:pointer;
  transition:.2s ease;
  font-size:14px;
  position:relative;
}

.tab:hover{
  background:#fafafa;
}

.tab.active{
  color:var(--primary);
}

.tab.active::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:var(--primary);
}

/* =========================
   APP LIST
========================= */

.list{
  max-width:950px;
  margin:auto;
  background:#fff;
}

.app-card{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:5px 14px;
  background:#fff;
  padding:16px 18px;
  transition:.2s ease;
}

.app-card:hover{
  background:#fcfcfc;
}

/* HORIZONTAL LINE */

.app-card::after{
  content:'';
  position:absolute;
  left:18px;
  right:18px;
  bottom:0;
  height:1px;
  background:var(--border);
}

.app-card:last-child::after{
  display:none;
}

/* IMAGE */

.thumb{
  flex-shrink:0;
}

.thumb img{
  width:94px;
  height:94px;
  border-radius:6px;
  object-fit:cover;
  display:block;
}

/* CONTENT */

.meta{
  flex:1;
  min-width:0;
}

.meta h5{
  font-size:15px;
  color:var(--primary);

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-weight:700;
}

/* META ROW */

.meta-row{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
 gap: 0px 2px;
  font-size:12px;
  color:#6b7280;
  overflow:hidden;
}

.meta-row div{
  display:flex;
  align-items:center;

  white-space:nowrap;
  flex-shrink:2;
}

.meta-row .rating{
  min-width:0;
  overflow:hidden;
}

.bonus{
  color:var(--secondary);
  font-weight:700;
}

/* ICONS */


.fs{
    display:flex;
    align-items:center;
    gap:0px 10px;
}


.stars{
  width:60px;
  height:auto;
  display:block;
}

/* WITHDRAW */

.withdraw{

  color:#16a34a;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}

/* DOWNLOAD BUTTON */

.dlbtn{
  flex-shrink:0;
  background:linear-gradient(135deg,var(--primary),#44207a);
  color:#fff;
  text-decoration:none;
  min-width:135px;
  height:42px;
  padding:0 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  white-space:nowrap;

  transition:all .25s ease;

  box-shadow:
    0 4px 10px rgba(68,32,122,.25),
    0 0 8px rgba(68,32,122,.15);
}

.dlbtn:hover{
  box-shadow:
    0 6px 16px rgba(68,32,122,.35),
    0 0 14px rgba(123,97,255,.35);
}

.dlbtn:active{
  transform:scale(.96);

  box-shadow:
    0 0 8px rgba(255,255,255,.9),
    0 0 16px rgba(123,97,255,.9),
    0 0 28px rgba(123,97,255,.7),
    0 0 40px rgba(123,97,255,.5);
}
/* HERO CONTENT */

.hero-content{
  padding:45px 0 10px;
}

.hero-content h1{
  font-size:42px;
  line-height:1.3;
  color:var(--primary);
  margin-bottom:20px;
}

.hero-content p{
  margin-bottom:18px;
  font-size:16px;
}

/* MAIN BUTTON */

.main-btn{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  padding:16px 28px;
  border-radius:14px;
  margin-top:10px;
  font-weight:600;
  transition:.25s ease;
}

.main-btn:hover{
  background:var(--secondary);
}

/* QUICK STATS */

.quick-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:18px;
  margin-top:40px;
}

.stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  text-align:center;
}

.stat h3{
  color:var(--primary);
  font-size:30px;
  margin-bottom:6px;
}

/* SECTION */

.section{
  margin-top:70px;
}

.section-title{
  font-size:34px;
  color:var(--primary);
  margin-bottom:22px;
}

/* TABLE */

.table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
}

.table th{
  background:var(--primary);
  color:#fff;
  padding:16px;
  text-align:left;
}

.table td{
  padding:16px;
  border:1px solid var(--border);
}

/* GRID */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:25px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
}

.card h3{
  color:var(--primary);
  margin-bottom:10px;
}

/* FAQ */

.faq{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  margin-bottom:16px;
}

.faq h4{
  color:var(--primary);
  margin-bottom:10px;
}

/* CTA */

.cta{
  background:linear-gradient(135deg,var(--primary),#3a1a68);
  color:#fff;
  border-radius:30px;
  padding:55px 30px;
  text-align:center;
}

.cta h2{
  font-size:36px;
  margin-bottom:14px;
}

.cta p{
  color:#e5e7eb;
}

.cta .main-btn{
  background:var(--secondary);
}

.cta .main-btn:hover{
  background:#c7771e;
}

/* TABLET */

@media(max-width:768px){

  .hero-content h1{
    font-size:32px;
  }

  .section-title{
    font-size:28px;
  }

}

/* MOBILE */

@media(max-width:600px){

  .tab{
    min-height:52px;
    font-size:.85rem;
    padding:14px 8px;
  }

  .app-card{
    gap:10px;
    padding:14px 12px;
  }

  .app-card::after{
    left:12px;
    right:12px;
  }

  .thumb img{
    width:74px;
    height:74px;
    border-radius:14px;
  }

  .meta h5{
    font-size:1rem;
  }

  .meta-row{
    
    font-size:.78rem;
    
  }

  .withdraw{
    font-size:.78rem;
  }

  .dlbtn{
    min-width:108px;
    height:46px;
    font-size:.8rem;
    padding:0 10px;
    border-radius:8px;
  }

  .hero-content h1{
    font-size:28px;
  }

}

/* EXTRA SMALL */

@media(max-width:420px){

  .meta-row{
    font-size:.68rem;

  }

  .withdraw{
    font-size:.62rem;
  }

  .dlbtn{
    min-width:92px;
    height:42px;
    font-size:.65rem;
    padding:0 8px;
  }

  .stars{
    width:58px;
  }

}
