/* space-grotesk-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/space-grotesk-v22-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/space-grotesk-v22-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* === GRUNDEINSTELLUNGEN (Wiederverwendet) === */
:root {
  --bg-color: #10101a;
  --primary-color: #ffffff;
  --accent-color: #00f2ff; /* Du könntest hier für jede App eine andere Akzentfarbe definieren! */
  --font-main: "Space Grotesk", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BODY & PARTIKEL-HINTERGRUND (Wiederverwendet) === */
body {
  background-color: var(--bg-color);
  color: var(--primary-color);
  font-family: var(--font-main);
  line-height: 1.6;
  /* KEIN display: flex, KEINE position */
}

#particles-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; /* Liegt auf Ebene 1 */
  pointer-events: none; /* Ist selbst für die Maus durchsichtig */
}

.app-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto; /* Zentriert sich selbst! */
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2; /* Liegt auf Ebene 2, ÜBER den Partikeln */
}
/* Header */
.back-link {
  display: block;
  margin-bottom: 2rem;
  color: var(--primary-color);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.back-link:hover {
  opacity: 1;
}

.app-header h1 {
  font-size: 3.5rem;
  color: var(--accent-color);
}
.app-subtitle {
  font-size: 1.3rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 1rem auto 0;
}

/* Main Content */
.app-main {
  margin: 4rem 0;
}

.app-mockup {
  max-width: 100%;
  width: 400px; /* Breite des Mockups anpassen */
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(0, 242, 255, 0.3);
}

.features {
  margin: 4rem 0;
}
.features h2,
.downloads h2 {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.features ul {
  list-style: none;
  display: inline-block; /* Zentriert die Liste */
  text-align: left; /* Text in der Liste wieder linksbündig */
  max-width: 500px;
}
.features li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.features strong {
  color: var(--accent-color);
}

/* Download Buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; /* Wichtig für mobile Ansicht */
}
.store-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.store-button:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 5px 20px rgba(0, 242, 255, 0.3);
  transform: translateY(-3px);
}

/* Footer */
.app-footer {
  margin-top: 4rem;
  opacity: 0.6;
}
.app-footer a {
  color: var(--primary-color);
}

/* === FIX FÜR MAUS-INTERAKTIVITÄT (Wiederverwendet) === */
.app-container,
.app-container header,
.app-container main,
.app-container section,
.app-container footer {
  pointer-events: none;
}
.app-container a,
.app-container p,
.app-container h1,
.app-container h2,
.app-container li {
  pointer-events: all;
}

.home-link {
  display: block; /* Sorgt für einen sauberen Zeilenumbruch */
  font-size: 3rem; /* <<< HIER IST DEINE SCHRIFTGRÖSSE */
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 2rem; /* Etwas Abstand zur Überschrift darunter */
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.home-link:hover {
  opacity: 1;
  text-decoration: none;
  filter: none;
}

.deletion-info {
  text-align: left;
  display: inline-block;
  max-width: 600px;
}

.deletion-info h3 {
  color: var(--accent-color);
  margin-top: 2rem;
}

.deletion-info ol {
  padding-left: 20px;
}

.deletion-info li {
  margin-bottom: 1rem;
  /* Dies ist der entscheidende Trick: */
  list-style-position: inside;
}
