body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
}
body, p {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.6;
  }
h1, h2, h3 {
  color: #cc0000;
}
h1 {
  font-size: 28px;
  margin-top: 0;
  text-align: center;
}
h2 {
  font-size: 22px;
  margin-top: 1.5em;
}
h3 {
  font-size: 18px;
  margin-top: 1em;
}
ul {
  padding-left: 20px;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
header {
	background: #000000;
}

header, h1 {
	font-family: 'Special Elite', cursive;
	font-size: 32px;
	text-transform: lowercase;
	letter-spacing: 1px;
}
.header-brand {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 15px;
	  margin-bottom: 10px;
	}
	.header-brand img {
	  max-width: 250px;
	  height: auto;
	}
	.app-name {
	  font-weight: bold;
	  color: #cc0000;
	}
	
.screenshots {
	  display: grid;
	  grid-template-columns: repeat(4, 1fr); /* force 4 columns */
	  gap: 20px;
	  margin: 30px 0;
	}
	
.screenshot {
	  width: 100%;
	  aspect-ratio: 9 / 16;
	  object-fit: cover;
	  border: 1px solid #ccc;
	  border-radius: 8px;
	  transition: transform 0.2s ease;
	}
	.screenshot:hover {
	  transform: scale(1.02);
	  cursor: pointer;
	}

@media (max-width: 1024px) {
	  .screenshots {
		grid-template-columns: repeat(2, 1fr);
	  }
	}
	
	@media (max-width: 600px) {
	  .screenshots {
		grid-template-columns: 1fr;
	  }
	}

.screenshot-placeholder {
  background-color: #ddd;
  width: 100%;
  padding-top: 177%; /* 9:16 portrait ratio */
  position: relative;
  border: 2px dashed #999;
  text-align: center;
  font-size: 14px;
  color: #555;
}
.screenshot-placeholder span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section {
  font-size: 16px;
  line-height: 1.6;
}