body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #000;
  padding: 20px;
}

.app-container {
  max-width: 400px;
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  margin-right: 10px;
}

.app-info h1 {
  font-size: 20px;
  margin: 0;
  color: #000; /* Changed from white to black */
}

.developer {
  margin: 0;
  color: #0a67fc;
}

.contains-ads {
  margin: 0;
  font-size: 12px;
  color: #555; /* Slightly darker than gray for better visibility */
}

.rating-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #000; /* Changed from #ccc to black */
  margin-bottom: 15px;
}

.rating strong {
  font-size: 18px;
  color: #000; /* Changed from white to black */
}

.size, .age-rating {
  display: flex;
  align-items: center;
}

.size img.icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.install-btn {
  display: block;           /* একে পুরো ব্লক বানায় */
  width: 100%;              /* match_parent এর মতো */
  background-color: #4285f4;
  color: white;
  font-size: 18px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;   /* padding নিয়েও width যেন ঠিক থাকে */
}


.install-msg {
  text-align: center;
  color: #555;
  font-size: 12px;
  margin: 8px 0 20px;
}

.screenshots {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 20px;
}

.screenshots img {
  height: 250px;
  border-radius: 10px;
}

.about-section h2,
.data-safety h2 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #000;
}

.tags span {
  display: inline-block;
  background-color: #eee;
  color: #000;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 10px;
  font-size: 12px;
}
