/* styles.css */

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

header {
  background-color: #1f1f1f;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 3px solid #3aff6c;
}

header img {
  max-height: 80px;
  margin-bottom: 10px;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header .lead {
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 10px;
}

main {
  padding: 40px 20px;
  max-width: 1300px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  color: #3aff6c;
  margin-bottom: 10px;
}

section {
  margin-bottom: 50px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  background: #1f1f1f;
  border-left: 4px solid #3aff6c;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 30px;
}

.screenshot-block {
  background-color: #1c1c1c;
  border: 1px solid #3aff6c;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(58, 255, 108, 0.1);
  transition: transform 0.2s ease;
}

.screenshot-block:hover {
  transform: scale(1.01);
}

.screenshot-block img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.screenshot-block p {
  margin: 0;
  font-size: 1rem;
  color: #ddd;
}

.coming-soon {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #f0c14b;
  font-weight: bold;
  text-align: center;
}

footer {
  background-color: #1f1f1f;
  text-align: center;
  padding: 25px 20px;
  border-top: 3px solid #3aff6c;
  color: #777;
}

footer a {
  color: #3aff6c;
  text-decoration: none;
}

/* Center all content sections */
main section,
footer {
  text-align: center;
}

/* Center the text inside screenshot descriptions */
.screenshot-block p {
  text-align: center;
}

/* Center the images within each card */
.screenshot-block img {
  display: block;
  margin: 0 auto 15px auto;
}

