body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	line-height: 1.6;
}

.app-icon img {
	width: 128px;
	height: 128px;
	object-fit: cover; /* Makes sure it fills the space without stretching */
}

.app-icon {
	width: 128px;
	height: 128px;
	margin: 20px auto;
	background: #f0f0f0;
	border-radius: 30px;
	overflow: hidden; /* This clips the inner content to the rounded shape */
	display: flex;
	align-items: center;
	justify-content: center;
	/* NEW LINE FOR BORDER */
	border: 5px solid #08002a;
}

.description {
	color: #666;
	margin: 20px auto;
	max-width: 600px;
}

.download-button {
	background: #007AFF;
	color: white;
	padding: 15px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	margin: 20px 0;
	transition: background 0.3s;
}

.download-button:hover {
	background: #0056b3;
}

.footer {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.footer a {
	color: #666;
	margin: 0 10px;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.screenshots {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.screenshots img {
  max-width: 200px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .screenshots img {
	width: 100%;
  }
}