    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #fafafa;
      color: #222;
      line-height: 1.6;
    }
    header {
      text-align: center;
      padding: 2rem 1rem 2rem;
    }
    header h1 {
      font-size: 2.2rem;
      margin-bottom: .1rem;
    }
    header p {
      margin-top: 10px;    
      margin-bottom: 5px;  
    }
    .app-section {
      max-width: 900px;
      margin: 1rem auto;
      background: #fff;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .app-title {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    .screenshots {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .screenshots img {
      width: 100%;
      border-radius: 15px;
      object-fit: cover;
    }
    .store-btn {
      display: inline-block;
      margin-top: 1rem;
    }
    .store-btn img {
      height: 50px;
    }
   footer {
    text-align: center;
    padding: 12px 0;
    background-color: #efefef;
    margin-top: 20px;
    font-size: 1.1em;
    color: #555;
    }

    footer a {
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }
    /* Standard hell */
    .store-btn img {
        content: url('assets/appstore_badge_de_dark.svg');
    }

    /* Dunkelmodus */
    @media (prefers-color-scheme: dark) {
        .store-btn img {
            content: url('assets/appstore_badge_de_light.svg');
        }
    }
