body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #1c1c1e;
  color: #e0e0e0;
  line-height: 1.6;
}

h1, h2 {
  color: #ff004f;
  text-shadow: 0 0 10px #ff004f;
  text-align: center;
  margin-top: 60px;
}

section {
  padding: 60px 20px;
  max-width: 960px;
  margin: auto;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #6b0f1a, #ff004f);
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #ff004f;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff004f;
}

#hero {
  background: url('../images/winpe-desktop.png') center/cover no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 100px 20px;
}

#features ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

#features li {
  padding: 10px 0;
  font-size: 18px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  border: 2px solid #6b0f1a;
  box-shadow: 0 0 10px #ff004f55;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #888;
}
