   /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        
        body {
            background-color: #fff;
            color: #000;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 600px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Status bar */
        .status-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
            font-size: 14px;
        }
        
        .time {
            font-weight: 500;
        }
        
        .status-icons {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .network-icon {
            display: flex;
            align-items: flex-end;
            height: 12px;
            gap: 2px;
        }
        
        .network-bar {
            width: 4px;
            background-color: #000;
            border-radius: 1px;
        }
        
        .network-bar-1 {
            height: 4px;
        }
        
        .network-bar-2 {
            height: 8px;
        }
        
        .network-bar-3 {
            height: 12px;
        }
        
        .network-bar-4 {
            height: 8px;
        }
        
        .battery {
            width: 32px;
            height: 16px;
            border: 1px solid #000;
            border-radius: 2px;
            position: relative;
        }
        
        .battery-level {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 60%;
            background-color: #000;
        }
        
        .battery-cap {
            position: absolute;
            right: -2px;
            top: 50%;
            transform: translateY(-50%);
            height: 8px;
            width: 2px;
            background-color: #000;
        }
        
        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
        }
        
        .icon-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        
        .icon-button:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        /* App info */
        .app-info {
            padding: 0 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 16px;
        }
        
        .app-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #22c55e;
            font-weight: bold;
            font-size: 24px;
        }
        
        .app-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .playstore-link img {
  height: auto;
  max-height: 70px;
  max-width: 100%;
}
        
        .app-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .developer {
            color: #3b82f6;
        }
        
        /* App stats */
        .app-stats {
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            margin-top: 32px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 16px;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .stat-divider {
            height: 32px;
            width: 1px;
            background-color: #d1d5db;
            margin: 0 16px;
        }
        
        .rating {
            display: flex;
            align-items: center;
            font-weight: bold;
        }
        
        .star-icon {
            color: #3b82f6;
            margin-left: 4px;
        }
        
        .reviews {
            display: flex;
            align-items: center;
            color: #6b7280;
            font-size: 12px;
        }
        
        .info-icon {
            margin-left: 4px;
        }
        
        .age-rating {
            border: 1px solid #9ca3af;
            border-radius: 4px;
            padding: 0 4px;
            font-weight: bold;
        }
        
        .stat-label {
            color: #6b7280;
            font-size: 14px;
            margin-top: 4px;
        }
        
        /* Install button */
        .install-section {
            padding: 16px;
        }
        
        .install-buttons {
            display: flex;
        }
        
        .install-btn {
            flex: 1;
            background-color: #2563eb;
            color: white;
            border: none;
            border-radius: 9999px 0 0 9999px;
            height: 48px;
            font-size: 18px;
            cursor: pointer;
        }
        
        .install-dropdown {
            background-color: #2563eb;
            color: white;
            border: none;
            border-radius: 0 9999px 9999px 0;
            height: 48px;
            width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .install-note {
            text-align: center;
            color: #6b7280;
            margin-top: 8px;
        }
        
        /* Screenshots */
        .screenshots {
            padding: 0 16px;
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: none; /* Firefox */
        }
        
        .screenshots::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Edge */
        }
        
        .screenshot {
            display: inline-block;
            width: 100px;
            height: 180px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            margin-right: 8px;
            object-fit: cover;
        }
        
        /* About section */
        .about-section {
            padding: 16px;
            margin-top: 16px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: bold;
        }
        
        .app-description {
            color: #4b5563;
            margin-top: 8px;
            font-size: 14px;
    font-family: system-ui;
        }
        
        /* Category */
        .category-section {
            padding: 0 16px;
            margin-top: 24px;
        }
        
        .category-badge {
            display: inline-block;
            border: 1px solid #d1d5db;
            border-radius: 9999px;
            padding: 8px 24px;
            font-size: 16px;
        }
        
        /* Data safety */
        .data-safety {
            padding: 0 16px;
            margin-top: 32px;
        }
        
        /* Bottom navigation */
        .bottom-nav {
            margin-top: auto;
            border-top: 1px solid #e0e0e0;
            background-color: #f3f4f6;
        }
        
        .nav-items {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #000;
        }
        
        .nav-icon {
            width: 24px;
            height: 24px;
        }
        
        .nav-label {
            font-size: 14px;
            margin-top: 4px;
        }
        
        .nav-search {
            width: 48px;
            height: 48px;
            background-color: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
        }
        
        .nav-search-label {
            color: #2563eb;
        }
        
        .bottom-controls {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px;
        }
        
        .control-item {
            width: 32px;
            height: 32px;
            margin: 0 auto;
        }
        
        .control-square {
            background-color: #d1d5db;
            border-radius: 4px;
        }
        
        .control-circle {
            background-color: #9ca3af;
            border-radius: 50%;
        }
        
        
        .card {
      margin: 24px 16px;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 16px;
    }
    
    .info-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }
    
    .info-icon {
      margin-top: 4px;
    }
    
    .info-text p {
      font-size: 16px;
      color: #000;
      margin-bottom: 4px;
    }
    
    .link {
      color: #1a73e8;
      text-decoration: none;
    }
    
    .text-gray {
      color: #666;
    }
    
    .ratings-section {
      padding: 8px 16px;
    }
    
    .ratings-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }
    
    .ratings-title {
      font-size: 24px;
      font-weight: 500;
      color: #333;
    }
    
    .ratings-info {
      display: flex;
      align-items: center;
      margin-bottom: 4px;
      font-size: 14px;
      color: #666;
    }
    
    .ratings-summary {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 16px;
    }
    
    .rating-number {
      font-size: 48px;
      font-weight: 500;
      text-align: center;
    }
    
    .stars {
      display: flex;
      color: #ffc107;
      margin-top: 4px;
      text-align: center;
    }
    
    .half-star {
      position: relative;
    }
    
    .half-star-empty {
      position: absolute;
      left: 0;
      color: #e0e0e0;
    }
    
    .rating-count {
      color: #666;
      margin-top: 4px;
      text-align: center;
    }
    
    .rating-bars {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    
    .rating-bar-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .rating-label {
      width: 8px;
    }
    
    .rating-bar-bg {
      flex: 1;
      height: 12px;
      background-color: #eee;
      border-radius: 999px;
      overflow: hidden;
    }
    
    .rating-bar-fill {
      height: 100%;
      background-color: #1a73e8;
    }
    
    .review {
      padding: 8px 16px;
      margin-top: 16px;
    }
    
    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .reviewer-name {
      font-weight: 500;
    }
    
    .review-content {
      margin-left: 52px;
    }
    
    .review-date {
      margin-left: 8px;
      color: #666;
    }
    
        
        /* Responsive styles */
        @media (max-width: 480px) {
            .app-stats {
                flex-wrap: wrap;
            }
            
            .stat-item {
                flex: 1 0 25%;
                margin-bottom: 16px;
            
            }
            
            .stat-divider {
                display: inline;
            }
        }
        
        @media (max-width: 360px) {
            .app-title {
                font-size: 20px;
            }
            
            .screenshot {
                width: 80px;
                height: 150px;
            }
            
            .nav-label {
                font-size: 12px;
            }
        }

        .slide-btn {
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}
.slide-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}


.hidden {
  display: none;
}

#show-all-btn {
  margin-top: 16px;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#show-all-btn:hover {
  background-color: #0056b3;
}