:root {
  --bg: #0b0b0b;
  --text: #eaeaea;
  --muted: #aaaaaa;
  --accent: #80CBC4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* HEADER */

.header {
  padding: 24px 32px;
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 32px;
  width: auto;
}

img {
  filter: drop-shadow(1px 1px 1px #ccc );
}

/* CONTAINER */

.container {
  max-width: 960px;
  margin: auto;
  padding: 48px 24px 120px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

/* FEATURES LIST */

.features-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  max-width: 520px;
}

.features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.5;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

/* PLAY STORE */

.store-link img {
  height: 44px;
  margin-top: 32px;
  opacity: 0.9;
}

/* HERO IMAGE */

.hero-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* SCREENSHOTS */

.screenshots {
  margin-top: 160px;
  text-align: center;
}

.screenshots h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.screenshot-grid img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 32px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .features-list {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   LEGAL PAGE – POLISHED
   ========================= */

.legal-content section {
  margin-bottom: 120px;
}

/* Hauptüberschriften */
.legal-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--accent); /* ← AKZENT */
}

/* Unterüberschriften */
.legal-content h2 {
  margin-top: 48px;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent); /* ← AKZENT */
}

/* Fließtext */
.legal-content p {
  max-width: 760px;
  line-height: 1.75;
  margin: 14px 0;
  color: #d0d0d0;
}

/* Hinweise / Nebentexte */
.legal-content .muted {
  color: var(--muted);
  font-size: 14px;
}

/* Links – NICHT blau */
.legal-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 203, 196, 0.3);
}

.legal-content a:hover {
  border-bottom-color: var(--accent);
}

/* Zurück-Link im Footer */
.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: var(--accent);
}

