    :root {
      --color-primary: #005ea8;
      --color-accent: #38bdf8;

      --bg-body: #e5edf5;
      --bg-surface: #ffffff;

      --text-main: #0f172a;
      --text-muted: #6b7280;

      --border-subtle: #e5e7eb;

      --app-icon-bg: #ffffff;
      --app-icon-border: #e5e7eb;

      --star-color: #f8c200;
      --badge-portal-bg: #e0f1ff;
      --badge-portal-text: #005ea8;
      --badge-ai-bg: #fef3c7;
      --badge-ai-text: #92400e;
      --badge-app-bg: #ecfdf3;
      --badge-app-text: #166534;

      --transition-fast: 0.18s ease-out;
    }

    /*
    .store-wrapper {
      width: 100%;
      min-height: 100vh;
      background: var(--bg-surface);
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: translateY(12px);
      animation: intro-wrapper 0.6s ease-out forwards;
    }
    */

    @keyframes intro-wrapper {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Toolbar */
    /*
    .toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
    }
    */

    /*
    .search-wrapper {
      flex: 1 1 220px;
      max-width: 420px;
      position: relative;
    }
    */

    /*
    .search-input {
      width: 100%;
      padding: 10px 36px 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--border-subtle);
      background: #ffffff;
      outline: none;
    }
    */

    /*
    .search-input:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 2px rgba(56,189,248,0.4);
    }
    */

    /*
    .search-icon {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      pointer-events: none;
    }
    */

    /*
    .toolbar-right {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
    }
    */

    .categories {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    /*
    .cat-label {
      font-size: 12px;
      color: var(--text-muted);
    }
    */

    /*
    .cat-pill {
      border-radius: 999px;
      padding: 4px 10px;
      border: 1px dashed var(--border-subtle);
      background: #ffffff;
      cursor: not-allowed;
      display: inline-flex;
      gap: 6px;
      align-items: center;
    }
    */

    /*
    .cat-badge {
      padding: 1px 6px;
      border-radius: 999px;
      background: #e0f1ff;
      color: #005ea8;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    */

    /*
    /* View toggle 
    .view-toggle {
      display: flex;
      gap: 6px;
      align-items: center;
    }
    */

    /*
    .view-btn {
      border-radius: 999px;
      border: 1px solid var(--border-subtle);
      background: #ffffff;
      padding: 6px 10px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--text-muted);
    }
    */

    .view-btn span.symbol {
      /*font-size: 13px;*/
    }

    /*
    .view-btn.active {
      border-color: var(--color-primary);
      background: #e0f1ff;
      color: var(--color-primary);
      font-weight: 600;
    }
    */

    /* GRID */
    /*
    .app-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      padding-bottom: 8px;
    }
    */

    /* Listenansicht: einspaltig */
    /*
    .app-grid.list-view {
      grid-template-columns: minmax(0, 1fr);
    }
    */

    /* Kompaktansicht: kleinere Kacheln */
    /*
    .app-grid.compact-view {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
    }
    */

    .app-grid.compact-view .app-card {
      padding: 14px 10px 40px; /* unten Platz für Button lassen */
      border-radius: 18px;
      gap: 6px;
    }

    /*
    .app-grid.compact-view .app-icon {
      width: 68px;
      height: 68px;
      border-radius: 18px;
    }
    */
    
    /*
    .app-grid.compact-view .app-icon img {
      padding: 8px;
    }
    */

    .app-grid.compact-view .app-name {
      /*font-size: 14px;*/
    }

    /*
    .app-grid.compact-view .app-tagline,
    .app-grid.compact-view .app-version {
      display: none;
    }
    */

    /*
    .app-grid.compact-view .stars {
      font-size: 13px;
      height: 18px;
    }
    */

    /* APP CARD */
    /*
    .app-card {
      position: relative;
      background: rgba(255,255,255,0.9);
      border-radius: 22px;
      padding: 22px 16px 46px;
      border: 1px solid var(--app-icon-border);
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 8px;
      transition: var(--transition-fast);
      opacity: 0;
      transform: translateY(10px);
      animation: card-in 0.45s ease-out forwards;
      touch-action: manipulation;
      overflow: hidden;
    }
    */

    /*
    .app-card:hover {
      transform: translateY(-4px) scale(1.01);
      border-color: var(--color-accent);
      box-shadow: 0 10px 28px rgba(0,94,168,0.25);
      background: #ffffff;
    }
    */

    /* Animation-Stagger */
    .app-grid .app-card:nth-child(1) { animation-delay: 0.06s; }
    .app-grid .app-card:nth-child(2) { animation-delay: 0.09s; }
    .app-grid .app-card:nth-child(3) { animation-delay: 0.12s; }
    .app-grid .app-card:nth-child(4) { animation-delay: 0.15s; }
    .app-grid .app-card:nth-child(5) { animation-delay: 0.18s; }
    .app-grid .app-card:nth-child(6) { animation-delay: 0.21s; }
    .app-grid .app-card:nth-child(7) { animation-delay: 0.24s; }
    .app-grid .app-card:nth-child(8) { animation-delay: 0.27s; }
    .app-grid .app-card:nth-child(9) { animation-delay: 0.30s; }
    .app-grid .app-card:nth-child(10){ animation-delay: 0.33s; }
    .app-grid .app-card:nth-child(11){ animation-delay: 0.36s; }
    .app-grid .app-card:nth-child(12){ animation-delay: 0.39s; }
    .app-grid .app-card:nth-child(13){ animation-delay: 0.42s; }
    .app-grid .app-card:nth-child(14){ animation-delay: 0.45s; }
    .app-grid .app-card:nth-child(15){ animation-delay: 0.48s; }
    .app-grid .app-card:nth-child(16){ animation-delay: 0.51s; }

    @keyframes card-in {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Badge-Row */
    .badge-row {
      position: absolute;
      top: 8px;
      left: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      pointer-events: none;
      z-index: 2;
    }

    /*
    .app-badge {
      padding: 2px 8px;
      border-radius: 999px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      border: 1px solid transparent;
    }
    */

    /*
    .badge-portal {
      background: var(--badge-portal-bg);
      color: var(--badge-portal-text);
      border-color: rgba(0,94,168,0.25);
    }
    */

    /*
    .badge-ai {
      background: var(--badge-ai-bg);
      color: var(--badge-ai-text);
      border-color: rgba(180,83,9,0.25);
    }
    */

    /*
    .badge-app {
      background: var(--badge-app-bg);
      color: var(--badge-app-text);
      border-color: rgba(22,101,52,0.25);
    }
    */
    
    /*
	  .badge-cloud {
	    background: #eef6ff;
	    color: #1d4ed8;
	    border-color: rgba(29,78,216,0.25);
	  }
	  */

    /* ICON */
    /*
    .app-icon {
      width: 90px;
      height: 90px;
      border-radius: 24px;
      background: var(--app-icon-bg);
      border: 1px solid var(--app-icon-border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 1;
    }
    */

    /*
    .app-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 12px;
    }
    */

    /*
    .app-icon-text {
      font-weight: 700;
      color: var(--color-primary);
    }
    */

    /* STERNE & Texte */
    .stars {
      color: var(--star-color);
      /*font-size: 15px;*/
      letter-spacing: 1px;
      margin-top: -2px;
      z-index: 1;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stars.empty {
      visibility: hidden;
    }

    /*
    .app-name {
      font-weight: 600;
      text-align: center;
      z-index: 1;
    }
    */

    /*
    .app-tagline {
      color: var(--text-muted);
      text-align: center;
      z-index: 1;
    }
    */

    .app-version {
      color: var(--text-muted);
      margin-top: 2px;
      z-index: 1;
    }

    /* App-starten-Button: unten rechts */
    /*
    .app-start-btn {
      position: absolute;
      right: 12px;
      bottom: 10px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid var(--color-primary);
      background: #e0f1ff;
      color: var(--color-primary);
      font-weight: 500;
      cursor: pointer;
      transition:
        background var(--transition-fast),
        color var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-fast);
    }
    */

    /*
    .app-start-btn:hover {
      background: var(--color-primary);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(0,94,168,0.35);
      transform: translateY(-1px);
    }
    */

    .app-start-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 6px rgba(0,94,168,0.2);
    }

    /* Coming-soon Overlay */
    .coming-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15,23,42,0.82);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #f9fafb;
      font-weight: 600;
      padding: 16px;
      opacity: 0;
      pointer-events: none;
      transform: scale(1.02);
      transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);
      z-index: 3;
    }

    .coming-overlay span {
      display: block;
      margin-top: 6px;
    }

    .coming-overlay.show {
      opacity: 1;
      pointer-events: auto;
      transform: scale(1);
    }

    /* LEGENDE */
    .legend {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /*
    .legend-title {
      font-weight: 600;
      color: var(--text-main);
    }
    */

    .legend-items {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      align-items: center;
    }

    /*
    .legend-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
    }
    */

    .legend-badge {
      cursor: help;
      position: relative;
    }

    .legend-badge::after {
      content: attr(data-tooltip);
      position: absolute;
      left: 50%;
      bottom: 130%;
      transform: translateX(-50%) translateY(4px);
      padding: 6px 8px;
      border-radius: 8px;
      line-height: 1.3;
      background: #0f172a;
      color: #f9fafb;
      white-space: nowrap;
      box-shadow: 0 8px 20px rgba(15,23,42,0.4);
      opacity: 0;
      pointer-events: none;
      transition:
        opacity 0.16s ease-out,
        transform 0.16s ease-out;
      z-index: 10;
    }

    .legend-badge::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 120%;
      transform: translateX(-50%);
      border-width: 5px;
      border-style: solid;
      border-color: #0f172a transparent transparent transparent;
      opacity: 0;
      transition: opacity 0.16s ease-out;
      z-index: 9;
    }

    .legend-badge:hover::after,
    .legend-badge:hover::before {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /*
    .legend-note {
      color: var(--text-muted);
    }
    */


    /* Touch / Mobile */
    @media (max-width: 768px) {
      .store-header, .store-content { padding: 14px 14px 16px; }
      .header-logo { height: 42px; }
      .store-title { font-size: 18px; }
      .store-section-title { font-size: 13px; }
      .app-grid { gap: 14px; }
      .app-card { padding: 18px 12px 44px; }
      .app-icon { width: 80px; height: 80px; }
      .toolbar { flex-direction: column; align-items: stretch; }
      .toolbar-right { justify-content: space-between; }
      .categories { justify-content: flex-start; }
      .coming-overlay { font-size: 16px; }
      .coming-overlay span { font-size: 20px; }
      .legend-items { align-items: flex-start; }
      .legend-item { align-items: flex-start; }
    }

    @media (min-width: 1600px) {
      .store-content {
        padding: 24px 32px 28px;
      }
      /*
      .app-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      }
      */
    }