:root {
  --brand: #6c5ce7;
  --brand-light: #f0edff;
  --forest-dark: #22513a;
  --forest-deep: #183a29;
}

body {
  background-color: rgb(234, 248, 216);
}

/* Navbar */
.brand-name {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

/* Utility classes replacing previously inlined styles */
.section-top {
  padding-top: 3rem;
}
.container-narrow {
  max-width: 820px;
}
.contact-block {
  margin-top: 0.8rem;
  line-height: 2;
}
.brand-text {
  color: var(--brand);
}

/* Shared privacy / datenschutz / impressum styles */
.privacy-hero {
  background: linear-gradient(135deg, var(--brand) 0%, #8b7fe8 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  color: #fff;
}
.privacy-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.privacy-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
}

.privacy-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2.5rem 2.8rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}
.privacy-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--brand);
  border-radius: 4px;
}
.privacy-card p,
.privacy-card li {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #555;
}
.privacy-card ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-top: 0.4rem;
}
.update-tag {
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.contact-box {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
}
.contact-box p {
  color: #444;
}
.contact-box a {
  color: var(--brand);
  font-weight: 600;
}

/* Landing page */
.landing-hero {
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--forest-deep) 100%);
  color: #fff;
  padding: 4rem 1.5rem 5rem;
}
.landing-hero .hero-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.landing-hero .brand-col {
  flex: 1 1 320px;
  text-align: center;
  min-width: 280px;
}
.landing-hero .shot-col {
  flex: 0 1 320px;
  text-align: center;
  min-width: 240px;
}
.landing-hero .logo {
  width: 160px;
  height: auto;
  display: inline-block;
  background: #fff;
  padding: 1rem;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.4rem;
}
.landing-hero h2 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.landing-hero p.tagline {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 360px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}
.landing-hero .screenshot {
  max-width: 100%;
  max-height: 560px;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.landing-card {
  background: transparent;
  padding: 2.5rem 2.8rem;
  margin-top: -3rem;
  margin-bottom: 3rem;
}
.landing-card p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #444;
}
.landing-card p + p {
  margin-top: 0.9rem;
}

.cta-wrap {
  text-align: center;
  margin-top: 0.4rem;
}
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.play-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #fff;
}
.play-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.play-badge .label-small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 2px;
}
.play-badge .label-big {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
