/* Grundlayout – Dark Mode */
body {
  background-color: #191b21;
  color: #eaeaea;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* Hauptinhalt zentriert */
main {
  max-width: 960px;
  width: 95%;
  padding: 2rem;
  text-align: center;
  position: relative;
  @media screen and (max-width: 1000px) {
      padding: 0;
  }
}

/* Obere kleine Links */
.top-links {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 10;
}

.top-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.top-links a:hover {
  color: #fff;
}

/* Hero-Bereich */
.hero {
  position: relative;
  margin-bottom: 2rem;
}

.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* Beschreibung */
.description {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 2.5rem auto;
  max-width: 100%;
  color: #cccccc;
}

/* Screenshots */
.screenshots {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.screenshots img {
  width: 45%;
  max-width: 400px;
  height: 250;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.screenshots img:hover {
  transform: scale(1.02);
}

/* Technischer Abschnitt */
.technical {
  margin-bottom: 2.5rem;
}

.technical h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tech-description {
  color: #bbbbbb;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.tech-description a {
  color: #4db8ff;
  text-decoration: none;
}

.tech-description a:hover {
  color: #90dfff;
}


/* Call-to-Action Links */
.links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  @media screen and (max-width: 45em) {
    display: grid;
  }
}

.links a {
  background-color: #333;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.links a:hover {
  background-color: #555;
}

.footer {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-top: 2rem;
}

