:root {
  --primary-color: #d32f2f;
  --secondary-color: #ffcdd2;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --border-radius: 20px;
}

body {
  margin: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--text-color);
  text-align: center;
  line-height: 1.6;
}

header {
  background: var(--light-gray);
  padding: 2.5rem 1rem;
  box-shadow: var(--shadow);
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 22%;
  object-fit: cover;
  box-shadow: var(--shadow);
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

h1 {
  margin: 0;
  font-size: 2.8rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
}

main {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.download-section {
  margin-bottom: 3rem;
}

.download-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}

/* Stil für großen oberen Screenshot */
.screenshot-top-container {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 2rem auto;
  /* padding: 0 1rem;  */
}

.screenshot-top {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius) !important;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.screenshot-top:hover {
  transform: translateY(-5px);
}

/* Container für die beiden unteren Screenshots */
.screenshots-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 2rem;
  max-width: 590px;
  margin: 0 auto 2rem auto;
}

.screenshot {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.screenshot:hover {
  transform: translateY(-5px);
}

.description {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.description h2 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.appstore-button {
  display: inline-block;
  margin-top: 1rem;
}

.appstore-button img {
  width: 200px;
  transition: transform 0.3s ease;
}

.appstore-button img:hover {
  transform: scale(1.08);
}

footer {
  padding: 1.5rem;
  font-size: 1rem;
  color: #777;
  background: var(--light-gray);
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .screenshots-container {
    gap: 20px;
  }
  
  .screenshot-top-container,
  .screenshots-container {
    max-width: 100%;
  }
  
  h1 {
    font-size: 2.3rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .description {
    padding: 1.8rem;
  }
}

@media (max-width: 620px) {
  .screenshots-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .screenshot {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 85px;
    height: 85px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .download-section h2 {
    font-size: 1.8rem;
  }
  
  .description {
    padding: 1.5rem;
  }
}
