    :root{
      --bg:#0b1020;
      --text:#e9eefc;
      --muted:rgba(233,238,252,.78);
      --border:rgba(255,255,255,.16);
      --card:rgba(255,255,255,.06);
      --radius:18px;
      --max: 980px;
    }
    *{ box-sizing:border-box; }
    html,body{ margin:0; padding:0; }
    body{
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: radial-gradient(900px 500px at 20% 0%, rgba(130,170,255,.18), transparent 60%),
                  radial-gradient(700px 500px at 90% 20%, rgba(255,120,200,.12), transparent 55%),
                  var(--bg);
      color: var(--text);
      line-height: 1.55;
      overflow-x: hidden;
    }

    .container{
      max-width: var(--max);
      margin: 0 auto;
      padding: 22px 14px 54px;
    }

    .card{
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px;
      overflow: hidden;
      backdrop-filter: blur(6px);
    }

    h1{
      font-size: clamp(22px, 3.3vw, 34px);
      margin: 6px 0 6px;
      line-height: 1.15;
    }
    p{ margin: 8px 0; color: var(--muted); }

    /* Word-like image wrap */
    img{
      display:block;
      max-width:100%;
      height:auto;
    }
    .wrap{
      width: 220px;       /* kleiner am Desktop */
      max-width: 38%;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.04);
    }
    .wrap-left{ float:left; margin: 4px 16px 10px 0; }
    .wrap-right{ float:right; margin: 4px 0 10px 16px; }

    /* Centered buttons */
    .store-buttons{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      margin-top: 18px;
    }

    .store-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width: 200px;
      padding: 14px 20px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.12);
      color: #fff;
      font-weight: 800;
      font-size: 16px;
      text-decoration:none;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease;
      user-select:none;
    }
    .store-btn:hover{ transform: translateY(-2px); background: rgba(255,255,255,.18); }
    .store-btn:active{ transform: translateY(0px); }

    .store-btn.howto{

		min-width: 414px;

    }
    .store-btn.primary{

		min-width: 414px;

	  background: rgba(120,170,255,.26);
      border-color: rgba(120,170,255,.34);
    }
    .store-btn.ios{
      background: rgba(80,160,255,.22);
      border-color: rgba(80,160,255,.30);
	}
	.store-btn img {
		width: 150px;
    }
    .store-btn.android{
      background: rgba(60,200,120,.22);
      border-color: rgba(60,200,120,.30);
    }
	    
    .hint{
      margin-top: 14px;
      text-align:center;
      color: var(--muted);
      font-size: 14px;
    }


    /* Mobile: floats aus, Bilder volle Breite */
    @media (max-width: 720px){
      .wrap, .wrap-left, .wrap-right{
        float:none !important;
        width:100% !important;
        max-width:100% !important;
        margin: 0 0 12px 0 !important;
      }
    }

    /* Mobile: buttons untereinander */
    @media (max-width: 600px){
      .store-buttons{ flex-direction: column; }
      .store-btn{ width: 100%; max-width: 320px; }
	  .store-btn.howto{
		min-width: 200px;
		  max-width: 320px;
	  }
      .store-btn.primary{
      	min-width: 200px;
		  max-width: 320px;
	  }
    }
