body{
  margin:0;
  font-family:sans-serif;
  background:#0b1120;
  color:#fff;
  padding:20px;
}

.container{
  max-width:900px;
  margin:auto;
}

.header{
  display:flex;
  gap:20px;
  align-items:center;
}

.appIcon{
  width:100px;
  height:100px;
  border-radius:20px;
}

h1{margin:0}

.store-buttons img{
  width:150px;
  margin-right:10px;
}

.section{
  margin-top:30px;
}

.screenshots{
  display:flex;
  gap:10px;
  overflow-x:auto;
}

.screenshots img{
  height:300px;
  border-radius:10px;
}

.screenshots img{
  background:#1e293b;
}

.viewer{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.viewer img{
  max-width:90%;
  max-height:90%;
  transition:0.3s;
  border-radius:10px;
}

.viewer .close{
  position:absolute;
  top:20px;
  right:25px;
  font-size:30px;
  cursor:pointer;
}

.viewer{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
  overflow:hidden;
}

.viewer img{
  max-width:90%;
  max-height:90%;
  transition:0.3s;
  cursor:grab;
  border-radius:10px;
}

.viewer .close{
  position:absolute;
  top:20px;
  right:25px;
  font-size:30px;
  cursor:pointer;
}

/* arrows */
.viewer .nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  cursor:pointer;
  padding:10px;
  user-select:none;
}

.viewer .prev{ left:20px; }
.viewer .next{ right:20px; }
.viewer{
  touch-action: none; /* 🔥 allow full control */
}
.viewer img{
  pointer-events:none; /* 🔥 IMPORTANT */
}


.developers{
  margin-top:30px;
}

.developers a{
  margin:5px;
  padding:10px 15px;
  border-radius:20px;
  border:none;
  cursor:pointer;
  background:#1e293b;
  color:#fff;
  text-decoration: none;
}

.developers a:hover{
  background:#38bdf8;
}

.section p{
  color:#cbd5e1;
  line-height:1.6;
  margin-bottom:10px;
}

.section h2{
  margin-bottom:10px;
}

.footer{
  margin-top:60px;
  background:#020617;
  padding:40px 20px;
  text-align:center;
}

.footer h3{
  margin-bottom:10px;
}

.footer p{
  color:#94a3b8;
}

.footer-links{
  margin:20px 0;
}

.footer-links a{
  margin:0 10px;
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

.footer-links a:hover{
  color:#38bdf8;
}

.footer-dev{
  margin-top:15px;
}

.footer-dev a{
  margin:0 8px;
  color:#38bdf8;
  text-decoration:none;
}

.footer-copy{
  margin-top:20px;
  font-size:14px;
  color:#64748b;
}








/* ===== RELATED APPS DARK UI ===== */

.related-apps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.related-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  background: #111827; /* dark card */
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.related-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.related-card:hover::before {
  opacity: 1;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* app icon */
.related-card img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* text container */
.related-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* app name */
.related-card h3 {
  margin: 0;
  font-size: 15px;
  color: #f9fafb;
  font-weight: 600;
}

/* description */
.related-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.4;
}

/* optional badge */
.related-card::after {
  content: "View";
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 11px;
  color: #6366f1;
  opacity: 0.7;
}



.related-card .rating {
  font-size: 12px;
  color: #facc15;
}


.rating {
  margin-left: 6px;
  font-size: 12px;
  color: #facc15;
}



.section h2 {
  color: #e5e7eb;
  font-size: 18px;
  margin-bottom: 10px;
}










.developers {
  padding: 10px;
}

.developers h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

/* container layout */
.developers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;

  padding-left: 0;
}

/* buttons */
.developers a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  /* background: #f1f5f9; */
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

/* hover */
.developers a:hover {
  /* background: #e2e8f0; */
}


.developers a {
    margin: 5px;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: #1e293b;
    color: #fff;
    text-decoration: none;
}

.developers a:hover {
    background: #38bdf8;
}









.screenshots {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory;
}

.screenshots::-webkit-scrollbar {
  height: 6px;
}

.screenshots::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.screenshot {
  height: 400px;
  border-radius: 14px;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

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












.viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.viewer img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.prev { left: 20px; }
.next { right: 20px; }










.breadcrumbs.minimal {
  font-size: 14px;
  margin: 10px 0;
}

.breadcrumbs.minimal a {
  color: #555;
  text-decoration: none;
  position: relative;
}

.breadcrumbs.minimal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #4f46e5;
  transition: 0.3s;
}

.breadcrumbs.minimal a:hover::after {
  width: 100%;
}

.breadcrumbs.minimal span {
  margin: 0 6px;
  color: #aaa;
}

.breadcrumbs.minimal .active {
  color: #636363;
  font-weight: 600;
}














.app-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.app-title .sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-top: 4px;
}






.wa-float-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:#25D366;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-radius:50px;
  font-size:14px;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  z-index:9999;
  transition:all 0.3s ease;
}

/* hover effect */
.wa-float-btn:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}

/* mobile optimization */
@media (max-width: 480px){
  .wa-float-btn span{
    display:none; /* show only icon on mobile */
  }
  .wa-float-btn{
    padding:12px;
    border-radius:50%;
  }
}







.desc-wrapper{
  position: relative;
  overflow: hidden;
  max-height: 350px; /* 👈 adjust */
  transition: max-height 0.4s ease;
}

/* gradient fade effect */
.desc-wrapper.collapsed::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0b101f);
}

/* expanded */
.desc-wrapper.expanded{
  max-height: fit-content;
}

.read-more-btn{
  margin-top:10px;
  background:none;
  border:none;
  color:#007bff;
  font-weight:600;
  cursor:pointer;
  padding:0;
}

.read-more-btn:hover{
  text-decoration: underline;
}