body {
      background: linear-gradient(135deg, #101217 0%, #181c24 60%, #050608 100%);
      min-height: 100vh;
      margin: 0;
      font-family: 'Segoe UI', Arial, sans-serif;
      color: #d0d4db;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px; /* مسافة أمان على الموبايل */
    }

    .container {
      background: rgba(10, 12, 18, 0.98);
      border-radius: 22px;
      padding: 32px 24px;
      max-width: 520px;
      box-shadow: 0 8px 32px 0 rgba(0,0,0,0.45),
                  0 1.5px 8px 0 rgba(0,0,0,0.55);
      text-align: center;
      width: 100%;
    }

    img {
      max-width: 120px;
      width: 40%;
      height: auto;
      margin-bottom: 24px;
    }

    h1 {
      font-size: 2em;
      margin-bottom: 22px;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #17aad6 10%, #1e90ff 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 2px 4px 24px #000c;
    }

    p {
      font-size: 1.1em;
      margin-bottom: 28px;
      line-height: 1.7;
      color: #a7b0bb;
    }

    .continue-btn {
      display: inline-block;
      padding: 16px 32px;
      background: linear-gradient(90deg, #0a2233 0%, #1e90ff 100%);
      color: #fff;
      font-size: 1.1em;
      border: none;
      border-radius: 32px;
      cursor: pointer;
      text-decoration: none;
      font-weight: bold;
      letter-spacing: 1px;
      box-shadow: 0 4px 18px rgba(23,138,214,0.18);
      transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    }
    .continue-btn:hover {
      background: linear-gradient(90deg, #1e90ff 0%, #0a2233 100%);
      transform: scale(1.05);
      box-shadow: 0 8px 32px rgba(30,144,255,0.18);
    }

    .app-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 16px;
      margin: 16px 0;
      display: flex;
      align-items: center;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .app-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    }
    .app-icon {
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      margin-right: 16px;
    }
    .app-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .app-info {
      flex-grow: 1;
      text-align: left;
    }
    .app-name {
      font-size: 1.2em;
      margin: 0 0 8px 0;
      color: #fff;
    }
    .app-description {
      font-size: 0.9em;
      margin: 0;
      color: #a7b0bb;
    }
    li {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0;
  list-style: none;
}

li .tags span {
  background-color: #f0f0f0;
  color: #333;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
}

    /* Responsive rules */
    @media (max-width: 600px) {
      h1 { font-size: 1.4em; }
      p { font-size: 0.95em; }
      .continue-btn {
        width: 100%;
        font-size: 1em;
        padding: 14px;
      }
      .app-card {
        flex-direction: column;
        align-items: flex-start;
      }
      .app-icon {
        margin-bottom: 12px;
      }
    }
