    body {
      font-family: Arial, sans-serif;
      transition: background-color 0.3s, color 0.3s;      
    }

.app-card {
  border-radius: 20px;
  padding: 20px;
  margin: 0;
  width: 100%;
}

    .app-icon img {
      width: 70px;
      height: 70px;
      border-radius: 10px;
      object-fit: cover;
    }

    .app-info {
      margin-top: 5px;
      margin-left: 10px;
    }

    .install-btn {
      border: none;
      font-weight: bold;
      border-radius: 999px;
      padding: 10px 30px;
      width: 100%;
      transition: background-color 0.3s, color 0.3s;
    }

    .info-scroll {
      overflow-x: auto;
      white-space: nowrap;
    }

    .info-box {
      display: inline-block;
      text-align: center;
      min-width: 100px;
      margin-right: 2px;
    }

    .info-box .icon {
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .info-label {
      font-size: 0.85rem;
      transition: color 0.3s;
    }

.info-scroll {
  overflow-x: auto;
  white-space: nowrap;
}

.info-item {
  flex: 0 0 auto;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0px;
  position: relative;
}

.border-start1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1.5px;
  background-color: #ccc;
}

    /* 🌙 DARK MODE */
    @media (prefers-color-scheme: dark) {
      body {
        background-color: #121212;
        color: white;
      }
      .install-btn {
        background-color: #aab4f8;
        color: black;
      }
      .info-box .icon {
        color: white;
      }
      .info-label {
        color: #aaa;
      }
    }

    /* ☀️ LIGHT MODE */
    @media (prefers-color-scheme: light) {
      body {
        background-color: #ffffff;
        color: #000000;
      }
      .install-btn {
        background-color: #1c83ec;
        color: white;
      }
      .info-box .icon {
        color: #000000;      
      }
      .icon {
        font-weight: bold;  
      }
      .info-label {
        color: black;
      }
    }