  body {
      background-color: #121212;
      color: #ffffff;
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 20px;
    }
    .container {
      max-width: 600px;
      margin: auto;
    }
    .section {
      margin-top: 30px;
    }
    .app-header, .whats-new-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .app-icon {
      width: 72px;
      height: 72px;
      border-radius: 16px;
    }
    .developer {
      color: #8ab4f8;
      text-decoration: none;
    }
    .badge, .details p, .about, .more-info, .game-info, .permissions {
      font-size: 0.95em;
      color: #ccc;
    }
    .actions {
    margin-top: 20px;
    text-align: center;
  }

  .install-button {
    display: inline-block;
    width: 90%;
    max-width: 400px;
    padding: 14px 0;
    background-color: #2196f3;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 28px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .install-button:hover {
    background-color: #1976d2;
  }

  @media (max-width: 480px) {
    .install-button {
      width: 95%;
    }
  }
    .stars span.active, .stars span:hover {
      color: #fdd835;
    }
    .collapsible {
      cursor: pointer;
    }
    .content {
      display: none;
    }
    .content.active {
      display: block;
    }
    ul {
      padding-left: 20px;
    }
    h3 {
      color: #fff;
    }
    .app-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 12px;
  }

  .stat-block {
    flex: 1 1 calc(25% - 12px);
    min-width: 80px;
    background-color: #1e1e1e;
    padding: 12px 6px;
    border-radius: 12px;
    text-align: center;
  }

  .stat-block .value {
    font-size: 1.1em;
    font-weight: bold;
    color: #90caf9;
    margin-bottom: 4px;
  }

  .stat-block .label {
    font-size: 0.85em;
    color: #ccc;
  }
    .screenshot-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 12px 0;
    margin-top: 24px;
  }

  .screenshot-scroll img {
    height: 300px;
    border-radius: 16px;
    flex-shrink: 0;
    scroll-snap-align: start;
    object-fit: cover;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }

  .screenshot-scroll img:hover {
    transform: scale(1.03);
  }

  /* Optional smooth scroll */
  .screenshot-scroll {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .screenshot-scroll::-webkit-scrollbar {
    display: none;
  }
  