body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  background-color: #0e0e0e;
  color: #f0f0f0;
}

h1 {
  color: #00ffcc;
}

.header {
  min-height: 100vh; /* Высота на весь экран */
  background-image: url("images/zombie.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; /* Заполнение всего блока */
  background-color: #2b2b2b;

  display: flex;
  justify-content: flex-end; /* Текст справа */
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.header-content {
  position: relative;
  text-align: right;
  max-width: 700px;
  color: #ffffff;
  font-size: 3rem;
  margin: 2rem;
}

.download-btn {
  display: inline-block;
  background: #00ffcc;
  color:#000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 1rem 0;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #00ffcc55;
}

.download-btn:hover {
  background: #00e6b2;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 20px #00ffccaa;
  color: white;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
}

.screenshots img {
  width: 200px;
  height: 400px;
  object-fit: cover;
  background: #333;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffcc44;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.screenshots img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffccaa;
}

section {
  padding: 2rem;
  text-align: center;
}

.about {
  background: #32a897;
}

footer {
  background: #1a1a1a;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
}
